Questions tagged [controlling]

20 questions
6
votes
0 answers

GDB: Failed to set controlling terminal

I found some questions about this warning but all related to IDEs. This is for pure terminal GDB interaction. Using GDB tty command, I get the warning and further interaction with program is impossible. In terminal 1, I get its TTY for GDB t1~$…
Ions
  • 71
  • 1
  • 3
3
votes
1 answer

SQL Server: Query Performance Profit Calculation

I recently tuned some queries by adding an index and am now trying to asess if the overall situation on that table got better. I have captured some metrics from sys.dm_db_index_usage_stats. The first chart shows the difference between the number of…
Martin Guth
  • 255
  • 4
  • 14
1
vote
0 answers

controlling mouse in 4 types can't work with python

I tried four types of mouse controller to move my mouse in video game(like valorant), but they all didn't work. why? import time import win32api import pyautogui import pydirectinput import…
maomi
  • 11
  • 3
1
vote
0 answers

Using the controlling interface with NetLogo on windows

Can someone render assistance with invoking net logo on Windows. This works on Linux fine, but taking the example code from (https://github.com/NetLogo/NetLogo/wiki/Controlling-API) I get the following. It initially appears to be something with…
Robert
  • 11
  • 2
1
vote
0 answers

Controlling Kafka Consumer listener

Assume Kafka consumer has to consume 5 messages and these will be processed in A class & B class. 5 Messages --> KAFKA CONSUMER --> PROCESS A CLASS ---> PROCESS B Class My question is: Whether all 5 messages will be consumed immediately (one by…
1
vote
0 answers

how to correct for a variable that will differ per individual

We're trying to launch a study that looks at requirement of pressers, which vasoconstrict, for ICU patients with physical interventions to raise pressure, but some of these patients are under sedation, which vasodilate. If a patient in the ICU…
ehandren
  • 23
  • 3
1
vote
1 answer

Arduino servo motors and serial monitor suddenly "crash"

I have been trying to control my 2 servo motors trought serial monitor. When i enter number 1-5 to serial monitor it follows the command as told in code. I write in the numbers 1-5 a couple of times and servos suddenly stop and i cant enter anything…
in2d
  • 544
  • 9
  • 19
1
vote
1 answer

Send More command (Val) to Arduino?

My project is controlling LED light by using Visual basic Program made by me. I have a little problem in my project, how can I send more command to the arduino from my PC? For example, This is the Arduino code that i uploaded: {int ledPin = 13; //…
bossmo
  • 11
  • 3
0
votes
1 answer

SFMC AMPscript Understanding Controlling Expression Evaluation unclear

The below expression is not making sense to me. I'm having a hard time understand why it will result in "free shipping". Can someone elaborate on the explanation? %%[ var @statusTier, @amount, @freeShipping set @statusTier = "Bronze" set @amount =…
0
votes
1 answer

How can we stop increasing the size of parquet files when writting on disk ,by doing repartition

I am trying to merge small files less than 512 mb in a hdfs directory. After merging the files size on disk is more than input size. Is there any way to control the size efficiently. Df=spark.read.parquet("/./") Magic_number=(total size of input…
rupesh kumar
  • 85
  • 2
  • 8
0
votes
0 answers

Controlling Forms based on log in information

I'm been teaching myself Microsoft VBA for Applications and I reached a spot where I really need help getting over a hurdle. I have a login form that controls access by opening a specific form based on assigned roles. Everything works, but it allows…
0
votes
2 answers

How do I control output cell location in a google sheet using google script?

I am working on a script for a Google sheet and learning scripts from scratch. I've used the following script and changed the input column with success, but the output remains in column A. I want the output to go to column T and the row should…
0
votes
0 answers

R Stargazer package outlier control creates new lines

I am currently running multiple linear regressions in R and want to summarize them using the Stargazer package. In the regressions I am removing outliers of the respective variables (e.g. outliers of GDP growth, outliers of unemployment rate etc.),…
JPR
  • 13
  • 3
0
votes
1 answer

Controlling select change function on Unselect event

In my Java Script, I am using a select tag to select multiple values one after the other, My requirement is passing this newly selected value to a function. Everything works perfect with jQuery on Change function, but when I deselect the item from…
Gopikrishn
  • 35
  • 1
  • 16
0
votes
1 answer

How can I modify browser to control DOM of any loaded document?

I want to login in gmail account automatically. Then want to create a mail through contents of a text file. Then select Email addresses from Database one by one and send mail through GMail account and everything should be absolutely automatic. I…
1
2