Posts by Gustavo10Destroyer • 41 points
4 posts
-
0
votes0
answers16
viewsQ: How to get user input before they press Enter
Guys, I wanted to know how to get the raw user input, before it presses Enter, well what I want to do is, using Threads I listen to a TCP client, when it sends data, I wanted it to overwrite the…
-
1
votes2
answers71
viewsQ: Is it possible to overload Javascript mathematical operators for objects?
I wanted to know how we can overload the subtraction operator, so that when the object is subtracted by another equal object, it returns a new object, with everything subtracted Example: var player…
-
1
votes1
answer19
viewsQ: Continuous Audio Transmission (Web Radio)
I wanted to make a Web radio on Node.JS + HTML + Javascript only that there are many problems, well, it was supposed to be like a Shoutcast/Icecast server only on Node.JS, and I tried, but it sends…
-
1
votes2
answers47
viewsA: Problem when I try to import my own modules into Lua (not found)
Error because you tried to require the function instead of the module, you should do as below: local Module = require("CopyOfmain") local calculadora = Module.calculadora print(calculadora.somar(1,…