Top "Loops" questions

Loops are a type of control flow structure in programming in which a series of statements may be executed repeatedly until some condition is met.

While, Do While, For loops in Assembly Language (emu8086)

I want to convert simple loops in high-level languages into assembly language (for emu8086) say, I have this code: for(…

loops for-loop assembly while-loop x86-16
powerpoint loop a series of animation

I am currently working on a slide with an animation of sunrise to sunset as a background. Then there are …

loops animation powerpoint
Bash scripting, multiple conditions in while loop

I'm trying to get a simple while loop working in bash that uses two conditions, but after trying many different …

bash shell loops while-loop
bash script use cut command at variable and store result at another variable

I have a config.txt file with IP addresses as content like this 10.10.10.1:80 10.10.10.13:8080 10.10.10.11:443 10.10.10.12:80 I want to ping every ip address …

bash variables loops ping cut
Why does Lua have no "continue" statement?

I have been dealing a lot with Lua in the past few months, and I really like most of the …

loops lua language-design
How do I read a file line by line in VB Script?

I have the following to read a file line by line: wscript.echo "BEGIN" filePath = WScript.Arguments(0) filePath = "C:\Temp\…

loops vbscript readfile
How to have css3 animation to loop forever

I want to have the whole set of animation to play forever. When the last photo fades off, I want …

css loops animation keyframe forever
Equivalent VB keyword for 'break'

I just moved over to the Visual Basic team here at work. What is the equivalent keyword to break in …

vb.net loops vb6 exit
Numpy how to iterate over columns of array?

Suppose I have and m x n array. I want to pass each column of this array to a function …

python loops numpy
Are loops really faster in reverse?

I've heard this quite a few times. Are JavaScript loops really faster when counting backward? If so, why? I've seen …

javascript optimization loops for-loop while-loop