python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
TCP response breaks after 1460bytes
Response from one linux server to another linux server breaks after 1460 bytes , checked on server (MTU is default 1500).
but why it is happening to few requests only because all responses are more th...
TheMonk
Votes: 0
Answers: 0
In Python, where does the Break command go in a infinite While Loop?
I stole this code from an answer given 2 years ago by someone else with regard to error handling, where the program is looking for an int but getting a non-int value.
My IDE (PyCharm 2021.3.3) on 64 B...
Vince Snetterton
Votes: 0
Answers: 1
Python Code not executing next line of code in a while Statement
I'm trying to build a calculator, and when a result is given it's not entering the next "if" statement
Here is my code:
How can I make sure after I get an answer it goes to the next line of...
cdvooo
Votes: 0
Answers: 1
Delete specific columns
I have
F <- structure(c(0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0), .Dim = c(3L,
5L))
How can I remove from F the columns that have less than 2 consecutive zero?
Thx!
bcsfh
Votes: 0
Answers: 3