occurring, existing, or operating at the same time processes; concurrent processes
Questions tagged [simultaneous]
371 questions
0
votes
2 answers
PHP session upload progress and simultaneous uploads
The PHP documentation doesn't explain what happens when there are two files being uploaded at the same time within the same session (two uploads running in two tabs of a browser).
Is there any way to track the progress of both uploads?
Is the first…

fabiocsg
- 28
- 3
0
votes
2 answers
iOS. Make UIPinchGestureRecognizer dominant over UITapGestureRecognizer?
it means user can't pan and pinch simultaneously and pinch gesture stops pan one.
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {
…

user2083364
- 744
- 1
- 7
- 20
0
votes
3 answers
how to icmp ping thousands of IP addresses simultaneously every second?
I'm looking for solution, how to be able to ping some 5000 (up to 10000) IP addresses on a local network each 1 second and immediatelly, when any icmp packet timeouts, it will write output to a file with the unix epoch time of the lost packet and IP…

user2616411
- 1
- 1
- 3
0
votes
1 answer
Play mp3 files with AVAudioPlayer with PlayAndRecord category?
Hi I have a setup that records audio (with AVAudioSessionCategoryPlayAndRecord category), now I want to playback and MP3 file as usual with AVAudioPlayer instance, but no any sound can be hear.
AVAudioPlayer do not throw any error, nor in its…

Geri Borbás
- 15,810
- 18
- 109
- 172
0
votes
0 answers
iOS simultaneous translation and scaling issue (CAAnimation)
I have a method which translates a view and optionally scales it while translating. I am using animation groups and adding the required animations as needed. Here are the animation cases working perfectly.
Translation (x or y axis or both)…
0
votes
2 answers
jquery animate rotate simultaneos
I'm trying to animate an object and rotate simultaneosly.
I'm using http://code.google.com/p/jqueryrotate/
The rotate transition doesn't work.
$("#square")
.animate({top: "300px",left:"200px"},{duration:1800,queue: false})
.rotate({…

hanskait
- 45
- 1
- 9
0
votes
1 answer
How to download a few files simultaneusly from ftp in Python
I'm a newbie in Python programming.
My question is, how to download a few files at the same time. Not file by file but simultaneously from one directory on ftp. Now I use this script but I don't know how I can rebuild this code:
filenames = []
…

plliderman
- 29
- 1
- 1
0
votes
4 answers
Is is possible to simultaneously use Arduino serial monitor while receiving data from Processing?
I am attempting to send some data from Processing to my Arduino over the serial connection so that the Arduino can control an LED strip. Could I view the serial monitor while this transfer was taking place?
It is irking me that I cannot use any…

martin122089
- 115
- 2
- 12
0
votes
2 answers
Visual Basic: How do I run 2 loops simultaneously?
I am having problems with my code.
I am trying the have blinking icons either side of an option on a menu screen to signify the selection the user has currently. The problem is that I want to be able to simultaneously blink the cursor and read the…

user2216719
- 1
- 2
0
votes
1 answer
How do I print to screen while accepting input that doesnt get deleted and echoed
I have found the following code:
import threading
from time import sleep
import os
class test:
def __init__(self):
self.running = True
def foo(self):
while(self.running):
os.system( [ 'clear', 'cls' ][ os.name ==…
0
votes
1 answer
Start two events simultaneously using .trigger and/or .animate
I have the following... jsFiddle
CSS
#box_1 {
position:absolute;
height:50px;
width:50px;
background-color:red;
top:10px;
left:10px;
text-align:center;
color:#FFFFFF;
}
#box_2 {
position:absolute;
…

Flickdraw
- 673
- 7
- 14
- 25
0
votes
1 answer
I need two simultaneous events to happen when user clicks link
When a use clicks on the slideshow's thumbnail (which could be some way down the page) I want the main slideshow image to change AND for the page to scroll to the top (where the actual main image slideshow is happening).
Below are the two script…

user2051970
- 1
- 1
0
votes
1 answer
How to test for non-parametric silmultaneous inference in R
I would like to perform non-parametric testing for a dataframe. I have three groups A,B,C. I´d like to now the statistical significance between groups A/B, B/C and A/C.
How can I do that non-parametrically?
When applying Kruskal-Wallis-Test, I get…

Doc
- 358
- 1
- 4
- 24
0
votes
1 answer
filtering simultaneously data entries on pivot table/excel
I need to create a pivot table in excel to show which xml pages contain which variables.
The pages look something like:
|Datagroup|Variable|Value|XmlPageName|
|ABC | VarX| 22| pageA1|
|ABC | VarY| 33| pageA1|
|ABC |…

dola
- 201
- 4
- 9
0
votes
2 answers
How can I run two Threads at the same time? Qt C++
My task is to simulate a bottler process.
There is a person who is in charged of putting "bottles" in a queue. For example his speed is 1 bottle per second. I did this with a thread. But the problem is that there must be a second thread, this will…

stbamb
- 179
- 2
- 2
- 13