Skip to content
Sign UpLog In
Profile icon

Some guy

@ANDREWVOSS
#1 Rust fan
  • os-1

    Cover page
    Made with Nix (beta)

    A 32-bit toy OS for x86 and x86_64

    Recent comments (0)
  • conway

    Cover page
    Made with Rust
    Recent comments (0)
  • Binary Tree

    Cover page
    Made with Rust

    Creates, inverts and prints a binary tree

    Recent comments (0)
Repls
Community
ANDREWVOSS
ANDREWVOSS
published an Update
1 year ago
1
Assembly (nasm)
Assembly (nasm)
Nasm language template
Language template for x86 assembly with nasm
ANDREWVOSS
ANDREWVOSS
published a Repl
1 year ago
0
Binary Tree
Binary TreeCreates, inverts and prints a binary tree
ANDREWVOSS
ANDREWVOSS
shared a Post
1 year ago
A simple implementation of Conway's Game of life, written entirely in Rust. The game is randomly seeded, so it will play out differently every time yo
conway
Rust
ANDREWVOSS
ANDREWVOSS
shared a Post
2 years ago
A simple algorithm to represent 128-bit floating-point values in scientific notation.
scientific notation
C++
ANDREWVOSS
ANDREWVOSS
shared a Post
2 years ago
A header file with code for creating a console menu. The header contains 3 classes 1 of them is a struct but whatever MenuItem An item that can be add
console menu
C++
DynamicSquid
DynamicSquid
Nice! But try to use const references instead :) AddMenu(Menu m) // bad AddMenu(Menu const& m) // good `2 years ago
CoderGautamYT
CoderGautamYT
Cool :D2 years ago
ANDREWVOSS
ANDREWVOSS
shared a Post
2 years ago
#html
#Css
#javascript
+2
A simple GUI calculator made in CSS and scripted with JS (also there was some HTML too I guess).
calculator
HTML, CSS, JS
ldand
ldand
Love the design and GUI layout. > Feature Suggestion: Make it to where you can use your number keys to type in numbers and not just having to click, github.com/microsoft/calculator for an example.2 years ago
Bunnytoes
Bunnytoes
I like the design2 years ago
ANDREWVOSS
ANDREWVOSS
published a Repl
2 years ago
5
calculator
calculatorA calculator written in HTML, CSS, and JavaScript
ANDREWVOSS
ANDREWVOSS
shared a Post
2 years ago
Whenever I try to use the preview on one of my HTML repls, I just get this: Screenshot 2021-05-28 1.07.38 PM Any ideas why this happens?
javascript ide
HTML, CSS, JS
OldWizard209
OldWizard209
It is because you are getting this error: SyntaxError: Identifier 'proxy' has already been declared at /script.js:29:5 Remove this from line 29: let proxy = URL.createObjectURL(new Blob([` self.MonacoEnvironment = { baseUrl: "https://unpkg.com/[email protected]/min/" }; importScripts("https://unpkg.com/[email protected]/min/vs/base/worker/workerMain.js"); `],{ type: "text/javascript" })); It should work hopefully EDIT: nvm, it works: image2 years ago
Coder100
Coder100
yes sometimes that happens try forking the repl, and hard refreshing. also try opening in a new tab.2 years ago
ruiwenge2
ruiwenge2
i think you just have to wait2 years ago
ANDREWVOSS
ANDREWVOSS
shared a Post
2 years ago
An IDE that edits, runs, and downloads browser JavaScript, powered my Monaco, the same editor used by Replit and VSCode! Just open in a new tab and ge
javascript ide
HTML, CSS, JS
codingjlu
codingjlu
I would definitely upvote this if you made the editor yourself (instead of using monaco). Features would be: Syntax highlighting Suggestions/Live errors IDK what else...2 years ago
RayhanADev
RayhanADev
Pretty kewl, although there doesn't seem to be many features :>? Maybe try adding something on top of this to make it better :D!2 years ago
ANDREWVOSS
ANDREWVOSS
published a Repl
2 years ago
1
javascript ide
javascript ideAn online browser JS IDE powered by Monaco, the same editor that powers VSCode and Replit!
TipToed
TipToed
How to run bro 1 year ago
ANDREWVOSS
ANDREWVOSS
shared a Post
2 years ago
I wanted to make a web server in Rust using the Rocket framework, but it can only be used in the nightly version of the rustc compiler. Is there a way
xfinnbar
xfinnbar
Run the rust nightly compiler on your local machine, then upload the binary to a bash repl. Inside start.sh, run the binary.2 years ago
ANDREWVOSS
ANDREWVOSS
published a Repl
2 years ago
0
reaction test
reaction testTest your reaction time
WWWtheW
WWWtheW
59 ms thats dang fast2 years ago
VarunMallapally
VarunMallapally
What?! I got 1 millisecond, and then 8-10 ms 3 times in a row2 years ago
ANDREWVOSS
ANDREWVOSS
shared a Post
2 years ago
I created a simple-to-use website for people to test your reactions. To use it, just go to the website. To start, hit the spacebar. The screen will tu
reaction test
HTML, CSS, JS
DonoldJTrump
DonoldJTrump
i got: image2 years ago
xfinnbar
xfinnbar
image2 years ago
mollthecoder
mollthecoder
image2 years ago
ANDREWVOSS
ANDREWVOSS
shared a Post
2 years ago
This post is a follow-up to my previous post. Basically, it shows off how dynamic programming can be used to calculate absurdly large numbers in a rel
big numbers
C++
ch1ck3n
ch1ck3n
O(2^n) 0x = 0. so it takes so time.2 years ago
ANDREWVOSS
ANDREWVOSS
shared a Post
2 years ago
This program demonstrates the speed of dynamic programming. For more info on dynamic programming, check out MrEconomical's great tutorial. Anyways, le
fibonacci
C++
DynamicSquid
DynamicSquid
dynamic squids2 years ago
ANDREWVOSS
ANDREWVOSS
shared a Post
2 years ago
The title says it all. This is an improved version of my C++ 2d game starter, with: A new rect class Collision detection built in Code comments to exp
C++ 2d Game Starter
C++
ANDREWVOSS
ANDREWVOSS
shared a Post
2 years ago
An easy-to-use game starter with builtin classes for basic graphics and some code for basic movement and controls. Also has conditional compilation, s
C++ 2d Game Starter
C++
DynamicSquid
DynamicSquid
Nice! I like how there's almost no flickering :) How did you clear the screen?2 years ago
ANDREWVOSS
ANDREWVOSS
published a Repl
2 years ago
4
C++ 2d Game Starter
C++ 2d Game StarterAn easy-to-remix game starter for C++
acedbz
acedbz
That's fun my guy!2 years ago
ANDREWVOSS
ANDREWVOSS
shared a Post
2 years ago
Little portfolio website I made in under 2 hours. Give me some constructive criticism if you have any. (I know the CSS is bad, please tell me why it's
ANDREWVOSS
HTML, CSS, JS
TsunamiOrSumth
TsunamiOrSumth
its good, maybe change the font to something not default anyways heres some constructive criticism constructivecriticism 2 years ago
ch1ck3n
ch1ck3n
use a better font2 years ago
ANDREWVOSS
ANDREWVOSS
published a Repl
2 years ago
0
hex display
hex displayIt works like xxd