Skip to content
Sign UpLog In
Profile icon

James Deakin

Hacker
@AlmightyDeaks
  • Portfolio website

    Cover page
    Made with HTML, CSS, JS
    Recent comments (0)
Repls
Community
AlmightyDeaks
AlmightyDeaks
published an Update
9 months ago
0
pwa blog websight template
pwa blog websight template my entry to the replit template jam
blog website template
My entry into the replit tempalte jam 2022
#templatejam
#template
#htmlcss
+1
AlmightyDeaks
AlmightyDeaks
published a Repl
10 months ago
0
pwa blog websight template
pwa blog websight template my entry to the replit template jam
AlmightyDeaks
AlmightyDeaks
My entry into the replit tempalte jam 20229 months ago
AlmightyDeaks
AlmightyDeaks
shared a Post
2 years ago
i am trying to make a 2d copy of Minecraft and i am using arrays to save the data, (i will move to a more elegant solution in the future but this shou
2d rendering
HTML, CSS, JS
Coder100
Coder100
Have you tried out 2d arrays? var savegrid = [ [1, 2, 3, 4, 5], [5, 6, 7, 8, 9], [...] ]; You can access them like this: savegrid each 'row' is the y and each 'column' is the x. Please do add var or let to variable declarations, and don't forget to add semicolons!2 years ago
JustCoding123
JustCoding123
This function should do it. If you want to expand the area change 11 to the length of savedgrid's first line. function getValue(x, y) { return savedgrid[x + y * 11] } 2 years ago
QuantumCodes
QuantumCodes
404 not found error.... wheres your repl? Generally: for a 9x9 grid and i have its value arranged like this: 789 456 123 Then u can create a formula. Example i have value 9, I could : X = (9%3), y = (9//3) X = 0, y = 3 If 2, X = 2%3, y=2//3 X = 2, y = 02 years ago
AlmightyDeaks
AlmightyDeaks
shared a Post
2 years ago
expected it to print the math.atan answer to the console result nothing appears in the log location the problem is in script.js line 42
2d shooter
HTML, CSS, JS
Coder100
Coder100
Capitalize Math, it has to look like this: console.log(Math.atan(...)); all math functions are part of the Math object, not exactly sure why (it isn't even a class?), but it is that way.2 years ago
ch1ck3n
ch1ck3n
math is not defined2 years ago
AlmightyDeaks
AlmightyDeaks
published a Repl
2 years ago
1
Login Demo using Repl.it database
Login Demo using Repl.it databasea demo of using the repl.it database to have a basic pasword system,
Kbence0720
Kbence0720
not working 2 years ago
AlmightyDeaks
AlmightyDeaks
shared a Post
2 years ago
Hi, I am trying to import a module to create a UUID but it just gives me an error. I am following this tutorial: https://www.devextent.com/npm-generat
Crypto-1
Node.js
OldWizard209
OldWizard209
Did you initiate npm(Node Package Manager). This will allow you to use packages. First you have to initialize npm. Write this in the shell. npm init Then install any package you want with in this case UUID: npm install uuid Then require it in your code: const { v4: uuidv4 } = require("uuid"); `2 years ago
AlmightyDeaks
AlmightyDeaks
published a Repl
2 years ago
0
Tetris
TetrisA little command-line Tetris clone written in Python. i also needed a background image so have a blue screen of death.
AlmightyDeaks
AlmightyDeaks
shared a Post
2 years ago
hi thanks for taking the time to come and try and help me with my problems. i am trying to make a calculator and am trying to get the UI inplace befor
Calculator
HTML, CSS, JS
AlmightyDeaks
AlmightyDeaks
shared a Post
2 years ago
I Am making a encryption system i can run it the first time and then it works, but after that it seems to remember the answer even when I run it again
ENIGMA MACHINE
Python
InvisibleOne
InvisibleOne
It's not doing that for me? What input were you using?2 years ago
AlmightyDeaks
AlmightyDeaks
shared a Post
2 years ago
hello Replit i am looking for some people to code with. i am quite good at python and am alwright at html, css and javascript. i also have no ideas
AlmightyDeaks
AlmightyDeaks
published a Repl
2 years ago
0
ETUVA V2
ETUVA V2my text based virtual acistant note: i needed a image so i added this random one
AlmightyDeaks
AlmightyDeaks
so cool 1 year ago
AlmightyDeaks
AlmightyDeaks
shared a Post
2 years ago
whenever i run the reple it crashes
TEXT ASSISTANT
HTML, CSS, JS
notGilbert
notGilbert
Javascript is a single-threaded language, which means infinite while loops will freeze the page. If you want to repeat forever use setInterval or requestAnimationFrame: function forever() { console.log('loop non blocking') requestAnimationFrame(forever); } forever(); read this short article2 years ago
AlmightyDeaks
AlmightyDeaks
shared a Post
2 years ago
WHEEL CLICKER I made this whilst learning JavaScript edit: recommended full screen at: https://wheel-clicker.000044.repl.co I will add saving in the
wheel clicker
HTML, CSS, JS
mickeymikie
mickeymikie
I have seen your work and I'll must say, You have done an amazing job. I tried to implement it in https://yesornowheel.info/ this site. Do check it and let me know if you think I need any improvement in it.1 year ago
AlmightyDeaks
AlmightyDeaks
shared a Post
2 years ago
so yeh the progect is the implement a hole qwerty keyboard into turtle and use it to write. EDIT: it starts way over to the left to fit more in
TURTLE PRINTING
Python (with Turtle)
AlmightyDeaks
AlmightyDeaks
shared a Post
2 years ago
i am looking for people to help with my Virtual assistant based in python, i would appreciate the help to join follow the link https://repl.it/teams/
ETUVA V2-1
Python
svensk007
svensk007
What happened to the team?2 years ago
svensk007
svensk007
@00044 If you want a GUI/UI I would use python Flask or something like that as it is similar to HTML5, CSS, and (website)JS2 years ago
svensk007
svensk007
This stuff is still pretty advanced for me but I might be able to help with something2 years ago