Skip to content
Open navbar menu
Sign UpLog In
Profile icon

arugula

@JacobMcPherson1
https://replit.com/talk/share/REMADE-FORTNITE-IN-JS/132410
  • Flicker

    Cover page
    Made with C#

    A console game made in C#

    Recent comments (5)
    QuinnCallen
    QuinnCallen
    2 years ago

    this was very fun! maybe make the maps bigger so it is easier to see?

    JustinChoiWZ
    JustinChoiWZ
    2 years ago

    This is HARD

  • forknite

    Cover page
    Made with HTML, CSS, JS
    Recent comments (2)
    ViyonGamercoder
    ViyonGamercoder
    2 years ago

    XD

    GLADsSupport
    GLADsSupport
    2 years ago

    need ur help , dm me - GLADIATOR#0001

  • VERY VERY SCARY DONT RUn

    Cover page
    Made with Python
    Recent comments (0)
  • Asteroid og

    Cover page
    Made with Python

    My programming language!

    Recent comments (0)
Repls
Community
JacobMcPherson1
JacobMcPherson1
published an Update
3 days ago
1
Asteroid
AsteroidBasic programming language with support for, ~ IO ~ arithmetic operations ~ variables (including lists and list methods like push and pop) ~ basic conditionals (if/elif/else) ~ while loops ~ loop command (infinite loop) ~ functions Semicolons are required (they make things easier to parse). Leave any feedback in the comments.
Asteroid ( added functions and the elif keyword )
like the title says, I added support for functions (no return keyword yet), and also an elif (you still cannot have multiple conditions i.e. 1 == 1 and 2 == 2 but that will be added aswell). Leave feedback in the comments please!
#python
#programminglanguage
JacobMcPherson1
JacobMcPherson1
published a Repl
4 days ago
1
Asteroid
AsteroidBasic programming language with support for, ~ IO ~ arithmetic operations ~ variables (including lists and list methods like push and pop) ~ basic conditionals (if/elif/else) ~ while loops ~ loop command (infinite loop) ~ functions Semicolons are required (they make things easier to parse). Leave any feedback in the comments.
DRLC
DRLC
I LIKE GIVE UPDOOT 4 days ago
JacobMcPherson1
JacobMcPherson1
type "main.ast" to run the main file 4 days ago
JacobMcPherson1
JacobMcPherson1
published a Repl
11 days ago
1
ip grabber
ip grabbersend your unique url that is auto-generated by the website to someone to grab their ip, you can clear the database of logged ips by clicking the "clear" button. Thanks and enjoy!
JacobMcPherson1
JacobMcPherson1
published a Repl
15 days ago
1
recursive descent calculator
recursive descent calculatorvery simple language with support for variables (declared like "var_name = some number or equation"), arithmetic operations (using +, -, *, and /), printing ("print(1+1)"), and basic conditionals (syntax looks like: "if 1 == 1: print(1+1)" or "if numone != numtwo: print some value or set some variable here"), only has an else statement as of now, and im currently interpreting the code as its parsed instead of making an AST out of the code and then interpreting that so with the current structure of the lang, its not going much further than it is currently (though i will refactor the code some other time in a different project)
JacobMcPherson1
JacobMcPherson1
published a Repl
26 days ago
2
conways game of life
conways game of lifeconways game of life with a map editor type "preset" for preset map, type editor for a map editor. you control the editor using the arrow keys, you place a cell using "p", you delete a cell using "d", and you run the game using "f".
DRLC
DRLC
literally like how food disappears in somalia family.\ you should l klil yourlef now26 days ago
JacobMcPherson1
JacobMcPherson1
published a Repl
29 days ago
1
tic tac toe ai
tic tac toe aiunbeatable tic tac toe ai made using python
JacobMcPherson1
JacobMcPherson1
published an Update
30 days ago
4
unbeatable tic tac toe
unbeatable tic tac toeunbeatable tic tac toe ai, made using a minimax algorithm
unbeatable tic tac toe
unbeatable tic tac toe ai, made using a minimax algorithm
JacobMcPherson1
JacobMcPherson1
published a Repl
1 month ago
4
unbeatable tic tac toe
unbeatable tic tac toeunbeatable tic tac toe ai, made using a minimax algorithm
DRLC
DRLC
this is why AI will take over the world and make us it's slaves. GOOD GAME!! YIPEE30 days ago
JacobMcPherson1
JacobMcPherson1
unbeatable tic tac toe ai, made using a minimax algorithm30 days ago
JacobMcPherson1
JacobMcPherson1
published a Repl
1 month ago
1
path finder
path finderuses the heuristic to find the best move ill try to improve it so it can find the best path around obstacles
JacobMcPherson1
JacobMcPherson1
published a Repl
1 month ago
1
invert binary tree
invert binary treeinverts a binary tree
JacobMcPherson1
JacobMcPherson1
published a Repl
1 month ago
1
convert simple equation to an AST
convert simple equation to an ASTformats a simple equation into an abstract syntax tree (this has no operator precedence so if anyone could help put me in the right direction on how to implement that it would be greatly appreciated)
JacobMcPherson1
JacobMcPherson1
published a Repl
2 months ago
1
quick sort
quick sortrust implementation of quick sort
JacobMcPherson1
JacobMcPherson1
published a Repl
2 months ago
1
rough pi estimation
rough pi estimationsemi accurate estimation of pi (just started learning rust so pls forgive if code is bad)
JacobMcPherson1
JacobMcPherson1
published a Repl
2 months ago
22
Money collector
Money collectorCollect 5 dollars to win! your time score is placed on a global leaderboard @ = your character $ = money (touch to collect) = walls (you die if you touch them) have fun!
Rxverrt
Rxverrt
![image](https://storage.googleapis.com/replit/images/1682528048829_107a4d84789294b659dd3a1018a5bd49.png)1 month ago
ty1414
ty1414
![image](https://storage.googleapis.com/replit/images/1684344547260_2e45b58ce1a48eb95c60f28ac866ca0c.png)17 days ago
JacobMcPherson1
JacobMcPherson1
published a Repl
2 months ago
1
python sorting
python sortingsorts a list of numbers ig
JacobMcPherson1
JacobMcPherson1
shared a Post
2 years ago
how do i get the first 11 characters off a string in javascript
samfierycreeper
samfierycreeper
@JacobMcPherson1, you can substring() let myRandomVariable = "Hello World!!!" let otherVariable = myRandomVariable.substring(0, 5) console.log(otherVariable) <-- prints the string "Hello" Substring is a used for exactly what you're trying to do. substring(characteryouwanttostartwith, characteryouwanttoendwith)2 years ago
ch1ck3n
ch1ck3n
str.substring(11);2 years ago
JacobMcPherson1
JacobMcPherson1
shared a Post
2 years ago
Just a little pyramid generator I made so I could practice my D skills
nixxed d
Blank Repl
JacobMcPherson1
JacobMcPherson1
shared a Post
2 years ago
If I generate a big pyramid this weird question mark thing replaces some of the blocks (�). Why is this happening?
Pyramid in Ruby
Ruby
ruiwenge2
ruiwenge2
I don’t know what it is but I do know the question mark appears sometimes to me as well2 years ago
JacobMcPherson1
JacobMcPherson1
shared a Post
2 years ago
How would I access the visitor's var in my index.html file?
LuckyMutedCoin
Ruby
CodingCactus
CodingCactus
you should use erb files, not html ones A little example: main.rb get "/" do @randnum = rand(1..10) erb :index end public/index.erb If you need some explanation, let me know!2 years ago
JacobMcPherson1
JacobMcPherson1
shared a Post
2 years ago
Just a simple login system I made to help me learn Ruby
simple login system using the ruby replitdb client
Ruby
Bunnytoes
Bunnytoes
good job2 years ago