Questions tagged [simultaneous]

occurring, existing, or operating at the same time processes; concurrent processes

371 questions
0
votes
2 answers

Running the same jar file many times simultaneously

I would like to run a jar file saved on my local disk multiple times. The jar file should run many times in an given instance. All the jar file(Same file) should run together. Is there a way i can Achieve it? Do i have to write a code, that would…
Spaniard89
  • 2,359
  • 4
  • 34
  • 55
0
votes
1 answer

MATLAB Code for solving desired 'n' number of simultaneous equations of the type Ax = b

Problem in MATLAB Code for solving desired 'n' number of simultaneous equations of the type Ax = b provided that the solving involves the method of upper triangular matrix and the values of A and b are evolved into Aprime and bprime along with the x…
0
votes
2 answers

AS3 limit of Soundchannel?

i'm developing an bullet hell arena shooter game,the game will have lots of enemies and bullets so it needs a lot of sound effects play at the same time. I only use one soundChannel to handle all sound effects, and the problem is...sometimes,certain…
hipon
  • 31
  • 1
  • 3
0
votes
1 answer

UITableView auto-scrolls simultaneously according to another UITableView

Is it possible to make the effect that : when I scroll an UITableView, another UITableView auto-scrolls simultaneously according to the UITableView I am moving. NS: Can't combine the two UITableViews in one UITableView for some reasons... Thanks. I…
Johnny
  • 633
  • 3
  • 9
  • 21
-1
votes
2 answers

Is there a simple solution for concurrent requests in PHP?

My script sometimes receives 2 identical requests at the same time (difference in milliseconds) from an external system. The script, upon incoming request, makes a request to the external system, checks for the existence of an entry there, and if…
skywind
  • 892
  • 6
  • 22
  • 44
-1
votes
1 answer

Why telegram-bot on Python with Webhooks can't process messages from many users simultaneously unlike a bot with Long Polling?

I use aiogram. Logic of my bot is very simple - he receive messages from user and send echo-message after 10 seconds. This is a test bot, but in general, I want to make a bot for buying movies with very big database of users. So, my bot must be able…
Tomas Angelo
  • 63
  • 1
  • 6
-1
votes
1 answer

Python3 - Fail to actuate output device properly based on input from object detection process

First of all, I attach some of the general specifications of my project at the end of this post. The main objective of my project is to detect the use of face mask via camera vision and then actuate certain actions accordingly. For example, if it…
-1
votes
1 answer

Solving 16 equations simultaneously to solve 16 variables using the 'solve' command in MATLAB

I have been trying to get a solution to 16 variables with 16 equations (linear) with the solve command. Below I am pasting my code syms x11 x12 x13 x14 x21 x22 x23 x24 x31 x32 x33 x34 x41 x42 x43 x44; %defining symbolic variables x=[x11 x12 x13…
ankitm511
  • 1
  • 1
  • 2
-1
votes
1 answer

Run another python file from a python program?

I want a peice of code which would run another python file. I would like to be able to run the 2 files simultaneously. print('Hello World') run ('this file') #obviously not real code print('Hello World Agian') #continue with program i really…
-1
votes
3 answers

How to run function A as long as function B is executing in C# (Console App)

Edit: As per suggestions in the comments, I will list out the actual functions of both A and B and what I am trying to achieve. I am trying to create a loading animation in a C# Console Application. Function A repeatedly (hence why while true) draws…
Leo Feng
  • 59
  • 8
-1
votes
1 answer

Linux: Howto setup one application to use different sound card?

I have 3 sound cards - one integrated (A) and 2 on USB (B,C). I want play default system sounds over integrated card (A), while application 1 over B card and application 2 over C card. Say, Firefox on B and Chrome on C, all other on default…
McKanty
  • 21
  • 5
-1
votes
1 answer

How to solve simultaneous equations through processing

I'm only new to processing and it's confusing me far more than Java or Javascript ever did! I have to solve simultaneous equations for a college assignment. (It's a class where they don't really explain to us what they're doing in the code.) I know…
Jessie
  • 47
  • 7
-1
votes
2 answers

Fitting y = a + exp(bt) to two points

I would like to fit y = a + exp(bt) to the points (1,1) and (2,5). So I take the natural logarithm of the equation and apply it to both points: ln(y1) = ln(a) + bt1 ln(y2) = ln(a) + bt2 With (1,1) = (t1, y1) and (2,5) = (t2, y2) so that: ln(1) =…
-1
votes
1 answer

Simultaneous while loops ? PYTHON

Currently the code below works, but I should have a disease factor and a population number trigger to go along with it. Basically the juvenile and seniles can be affected by disease, but only once the total population reaches a 'trigger point' set…
Ollie
  • 107
  • 1
  • 1
  • 9
-1
votes
2 answers

Make the input wait for mouse or keyboard - Assembly Language

I fixed my program, but now the loop seems to be stuck. Whenever I press u or d, it is stuck, but the mouse part works :) ; You may customize this and other start-up templates; ; The location of this template is…
corruptdna
  • 47
  • 2
  • 7
1 2 3
24
25