python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Confused with `bash -c` command - does not work with global variables
I have two shell commands, actually the same snippet, when pasted them in the terminal:
This works:
while true; do \
sleep 1; \
ping -c 1 'www.google.com'; echo $?; \
if [ $? -eq 0 ]; then break; fi; ...
Santiago
Votes: 0
Answers: 1
Trigger javascript to run in 15 minutes
How do I get a script to run in my browser with a timer of at least 15 minutes? Right now I'm running into an issue where standard browsers throttle time once a page becomes inactive, which is throwin...
econobro
Votes: 0
Answers: 0
Google Apps Scripts for Creating a Folder Structure
I'm a total newb when it comes to thins like this and I'm trying to do pretty much the same thing. I've found Google Apps Scripts (yay for me :-) and now I'm actually trying to get this working the f...
BKomorowski
Votes: 0
Answers: 0
How to limit the number of Jobs running in PowerShell
I have few folders in which my script runs and triggers job for each folder. Imagine if I have 10 subfolders inside the main folder and I want to limit the number of jobs running to at a time to be 5....
Sam
Votes: 0
Answers: 1