Is their a tool that can execute a batch or ps script post transferring from a remote machine?
anyone else having issues with digitalocean control panel?
I have a very general question, Where can I learn typescript from ?? any recommended courses ?? I learned JS from free code camp, learned how to use frameworks in JS, does t...
var bills = [50.23, 19.12, 34.01, 100.11, 12.15, 9.90, 29.11, 12.99, 10.00, 99.22, 102.20, 100.10, 6.77, 2.22 ]; var totals = bills.map(function (element) { elemen...
but is their a way to learn these ? some short acronym?
function sum(arr, n) { if (n <= 0) { return 0; } else { return sum(arr, n-1) + arr[n-1]; } } sum([2, 3, 4, 5], 3) Output: 9 How? In iteration 1: if is not sati...
this is my first project actually, Goal is to make webapp/webpage with a touch slide UI which will log files in two sets, those two sets will be fed to ML and in the end ll ...
javasript var x = 1; while (x < 20) { if (x % 3 === 0 && x % 5 === 0) { console.log("JuliaJames"); } else if (x % 3 === 0) { console.log("Julia"); } else if (x ...
anyone using arch here?? I am having issues with systemd my problem is quite special too arch wiki has specifically mentioned it in der.
my graphics seems dead (prolly) lspci or lshw or additional softwares tool isnt showing any detail too, so is it really dead or m missing something?
app.use(express.static(__dirname + '/public')); can some explain me this? m i suppose to change __dirname or /public?
hello, Can anyone tell me which framework would be good for my web app?? goal is to create a image swiping UI
do really have to use *fs* module to read and write files in a local folder? cant this be done without node?
is it necessary to assign a valuse to a variable? or i can just create a global variable and use it inside a loop without assigning it anything? ''' var x; // Declared a vari...
Suppose we have to go from one page to the other by clicking some link, do we have to create a seperate HTML file for the landing page? also there are color differences bwtwee...
when a button is pressed an image loads up but how can I log the name of an image in txt file to a local folder ? and how can I set a fixed resolution to all the images I am ...
How would I know what loop to use in a situation? when to use if / if else / while / for loop? Like what will be the conditions, so that I ll know that i have to use that one...
public foler is the folder in which all my static files are?
when assembling a custom pc, if i go with a low end cpu like 9th gen i3 and some high end rtx gpu card, would that be of any use?? like in gaming and training sets?
is it compulsory to remember all the operators precedence ?