Skip to content
Sign UpLog In
Profile icon

Error

@ErrorbotTHE2nd
A young and maturing programmer who is currently in 8th grade
GitHub
YouTube
  • Youtube To MP3

    Cover page
    Made with Node.js

    Convert Youtube Videos into Audio files for your listening uses!

    Recent comments (0)
  • Test FAQ Search Engine

    Cover page
    Made with HTML, CSS, JS
    Recent comments (0)
Repls
Community
ErrorbotTHE2nd
ErrorbotTHE2nd
published a Repl
6 months ago
0
Youtube To MP3
Youtube To MP3Convert Youtube Videos into Audio files for your listening uses!
ErrorbotTHE2nd
ErrorbotTHE2nd
published a Repl
1 year ago
0
import() dose not work
ErrorbotTHE2nd
ErrorbotTHE2nd
shared a Post
2 years ago
Question Why is npm saying: npm ERR! 403 403 Forbidden - PUT https://registry.npmjs.org/rbx-file-handler - Forbidden npm ERR! 403 In most cases, you o
Roblox File Handler
Node.js
Yimmee
Yimmee
(comment, not a reply) Idk a lot about npm but ive heard of publish, aaaaand also i think replit is blocking you from using it2 years ago
ErrorbotTHE2nd
ErrorbotTHE2nd
shared a Post
2 years ago
Classes/BasePart.js /** mainly from https://developer.roblox.com/en-us/api-reference/class/BasePart @module BasePart */ const RoEnums = require('.
Roblox File Handler
Node.js
ErrorbotTHE2nd
ErrorbotTHE2nd
shared a Post
2 years ago
So I have a class inside called CFrame.js, and in that file, I've imported a class called Vecter3.js as seen before the class I declared. const Vector
Roblox File Handler
Node.js
Coder100
Coder100
yes, yes you should, i think replit has a bug where there are 2 analyzers, and they both suggest the same thing at the same time2 years ago
ErrorbotTHE2nd
ErrorbotTHE2nd
shared a Post
2 years ago
For Some Reson the SpeechRecognition API does not work in replit, it only works in a new tab. Code: let sttRec = new webkitSpeechRecognition() || ne
Speech To Text To Speech (Node)
Node.js
ErrorbotTHE2nd
ErrorbotTHE2nd
shared a Post
2 years ago
So I Just converted my HTML Repl to a Node.js Repl and changed the HTML file to an EJS file and now my script.js File won't load! Everything renders l
Speech To Text To Speech (Node)
Node.js
OmN3xin
OmN3xin
your static folder("views") is the path in which you start all your paths; In your main.ejs file, change your scripts src into /Home/script.js since you path starts at your static folder("views"), then adds this path onto it :)2 years ago
ErrorbotTHE2nd
ErrorbotTHE2nd
shared a Post
2 years ago
When I try to load my ejs file it loads but the script.js file does not. I Use Express to load and I load it like this: app.get("/", (req, res, next
Speech To Text To Speech (Node)
Node.js
ErrorbotTHE2nd
ErrorbotTHE2nd
shared a Post
2 years ago
when ever i try to use attr() in css, it dose not work! Html Dropdown Link 1 Link 2 Link 3 css: .dropdown { positi
test discord bot maker
HTML, CSS, JS
Coder100
Coder100
no spaces --buttonBackgroundColor: attr(data-buttonBg-color); `2 years ago
ErrorbotTHE2nd
ErrorbotTHE2nd
shared a Post
2 years ago
so i have some code that crates an animation for the disclamerDiv class, @keyframes fade { from {opacity: 1;} to {opacity: 0;} } .disclamerDiv {
test discord bot maker
HTML, CSS, JS
Coder100
Coder100
https://css-tricks.com/controlling-css-animations-transitions-javascript/ yeet2 years ago
Coder100
Coder100
this is invalide syntax: image you need to do: disclamerDiv.style.animationIterationCount = "none"; `2 years ago
Coder100
Coder100
make sure you are setting the removal in the .disclaimerDiv an not that2 years ago
ErrorbotTHE2nd
ErrorbotTHE2nd
shared a Post
2 years ago
in my code i have loadTable("A&QTest.csv", "csv", "header") in my preload function but for some reason the file won't load?!?! A Gif of a repl.it in
Test FAQ Search Engine
HTML, CSS, JS
LukeWright
LukeWright
im assuming that you are getting an infinate load because your file path is incorrect. instead of: function preload() { qaTable = loadTable("A&QTest.csv", "csv", "header"); } try: function preload() { qaTable = loadTable("Q&ATest.csv", "csv", "header"); } `2 years ago
ErrorbotTHE2nd
ErrorbotTHE2nd
shared a Post
2 years ago
So if you took a first glance at this question, it might not make any sense! So ill explain it. Explanation Short I can't really explain it in a sho
Coder100
Coder100
Short explanation me wants recursion Solution function recurse() { array.forEach((value, i) => { // checks if the current value (value) is an array and options.checkCap is equal to or greater than 2 if (Array.isArray(value) == true && options.checkCap >= 2) { recurse(); // this copied your code! } // checks if there is a "checkType" var in the options object and if there was, check if the value is a 0 or "==" if (options.checkType === "==" || options.checkType ==2 years ago
CSharpIsGud
CSharpIsGud
You worded this confusingly but I think what you are describing and want is recursion.2 years ago
ErrorbotTHE2nd
ErrorbotTHE2nd
shared a Post
2 years ago
I have looked at many videos over the past day or 2, to find out make a 404 error page/ or any error page, how but everything I found, did not work!!
Roblox Tools
Node.js
ErrorbotTHE2nd
ErrorbotTHE2nd
Hay Guys, My question is now answered! Can one of you guy make a Big answer so a can mark it answered? Make sure you like the people how help with this like @Coder100 , @k9chelsea2 , @AnthonyMouse , etc. I also have an old question that no one has answered yet. HERE2 years ago
ErrorbotTHE2nd
ErrorbotTHE2nd
I added a link to an old question the no one answered here2 years ago
AnthonyMouse
AnthonyMouse
there is some extension to express that lets you set a view engine like EJS but idk how to implement.2 years ago
ErrorbotTHE2nd
ErrorbotTHE2nd
shared a Post
2 years ago
Question Whenever I try to upload a folder to my repl it disappears! Why does that happen and how do you fix it? Steps to reproduce Upload a Folder
Why do folders disapping- (For A Question)
Node.js
RYANTADIPARTHI
RYANTADIPARTHI
It should work. It's a repl.it problem. You might want to report this to bugs. click here2 years ago
ErrorbotTHE2nd
ErrorbotTHE2nd
I Updated my question 2 years ago
Coder100
Coder100
Sometimes uploading folders are glitchy. Usually if this happens, just upload file by file. report to bugs2 years ago