0
pwa blog websight template my entry to the replit template jam
blog website template
My entry into the replit tempalte jam 20220
pwa blog websight template my entry to the replit template jam
12
1
0
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
HTML, CSS, JS
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 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 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
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
HTML, CSS, JS
1
Login Demo using Repl.it databasea demo of using the repl.it database to have a basic pasword system,
29
1
1
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
Node.js
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
0
TetrisA little command-line Tetris clone written in Python.
i also needed a background image so have a blue screen of death.
1
0
0
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
HTML, CSS, JS
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
Python
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
0
ETUVA V2my text based virtual acistant
note:
i needed a image so i added this random one
8
1
0
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
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
HTML, CSS, JS
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
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
Python (with Turtle)
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/
Python