How to use 5GHz wifi in linux?

|
princegaut 2022-08-15 18:29:46
how to use 5GHz wifi in linux?
ryder_099 2022-08-15 18:38:08
princegaut 2022-08-15 18:29:46
how to use 5GHz wifi in linux?

You connect to wifi like you do.

alexmb7 2022-08-15 18:50:07

One of my friends participated in a nuclear air burst test in Nevada. He was flying an instrumented T-33 jet at about 40,000 feet, some miles away. He wrote: “I was flying the plane … I had put a patch over my left eye and was to be looking down, with my head down, into the cockpit. I can remember that I was holding my breath as I heard 5, 4, 3, 2, and 1! Then, everything went white. I mean it was so bright that you could not see the floor of the plane. Then a very odd thing happened, I could actually see through the floor of the cockpit and see the ground below us! Yes, I could see the ground THROUGH the floor of the plane.

princegaut 2022-08-15 18:53:32
ryder_099 2022-08-15 18:38:08
You connect to wifi like you do.

ok. I thought it had to be some complex commands xd thanks

princegaut 2022-08-15 18:53:48
alexmb7 2022-08-15 18:50:07

One of my friends participated in a nuclear air burst test in Nevada. He was flying an instrumented T-33 jet at about 40,000 feet, some miles away. He wrote: “I was flying the plane … I had put a patch over my left eye and was to be looking down, with my head down, into the cockpit. I can remember that I was holding my breath as I heard 5, 4, 3, 2, and 1! Then, everything went white. I mean it was so bright that you could not see the floor of the plane. Then a very odd thing happened, I could actually see through the floor of the cockpit and see the ground below us! Yes, I could see the ground THROUGH the floor of the plane.

whats nuclear air burst test?

ryder_099 2022-08-15 18:58:14
Something you don’t want to be even remotely close to. And do NOT look directly at it.
alexmb7 2022-08-15 19:13:39
princegaut 2022-08-15 18:53:48
whats nuclear air burst test?

i think how nuclear bomb behaves in air
i dunno
the main point of the text was he was seeing thru the ground of the plane

princegaut 2022-08-15 19:16:42
alexmb7 2022-08-15 19:13:39
i think how nuclear bomb behaves in air
i dunno
the main point of the text was he was seeing thru the ground of the plane

how is this be possible?

alexmb7 2022-08-15 19:16:55
mighty powers
alexmb7 2022-08-15 19:16:56
and
princegaut 2022-08-15 19:17:04
was ground made up of mirror and something?
alexmb7 2022-08-15 19:17:08
not seeing thru things, is too old and outdated imo
alexmb7 2022-08-15 19:17:13
no
alexmb7 2022-08-15 19:17:22
it was a bomb powers
alexmb7 2022-08-15 19:17:27
there was abomb test
princegaut 2022-08-15 19:17:35
ok ok I got it
omidxrz 2022-08-15 19:20:17
i want to parse bash command with a python script
something like this:
cat file.txt | script.py
omidxrz 2022-08-15 19:20:30
omidxrz 2022-08-15 19:20:17
i want to parse bash command with a python script
something like this:
cat file.txt | script.py

how can i do this?

securearth 2022-08-15 19:33:40
omidxrz 2022-08-15 19:20:30
how can i do this?

The python script needs to be designed in way such that it can accept input through STDIN

securearth 2022-08-15 19:33:45
Then that format would work
omidxrz 2022-08-15 19:54:47
securearth 2022-08-15 19:33:40
The python script needs to be designed in way such that it can accept input through STDIN

i know but how?

omidxrz 2022-08-15 19:55:20
https://www.digitalocean.com/community/tutorials/read-stdin-python

How to Read from stdin in Python | DigitalOceanDigitalocean
Technical tutorials, Q&A, events — This is an inclusive place where developers can find or lend support and discover new ways to contribute to the community.
securearth 2022-08-15 19:55:50
Declare somevar = sys.stdin
omidxrz 2022-08-15 19:55:58
thankss
securearth 2022-08-15 19:56:12
And then you can use the readline() method of stdin
securearth 2022-08-15 19:56:30
By somevar.readline()
securearth 2022-08-15 19:57:08
omidxrz 2022-08-15 19:20:17
i want to parse bash command with a python script
something like this:
cat file.txt | script.py

As you read from cat output.txt, it spans multiple lines

securearth 2022-08-15 19:57:25
So use this readline function in a while or for loop
securearth 2022-08-15 19:57:36
The loop should continue till all the lines have processed
omidxrz 2022-08-15 20:13:14
import sys
data = sys.stdin.readlines()
omidxrz 2022-08-15 20:14:08
its work but i its just wait for my stdin but i want do this :
omidxrz 2022-08-15 20:14:40
if stdin is exist:
print stdin
if not exist :
print stdin not exist
OxHellfire 2022-08-15 20:15:51
omidxrz 2022-08-15 19:20:17
i want to parse bash command with a python script
something like this:
cat file.txt | script.py

linux_group-1393745.jpg

OxHellfire 2022-08-15 20:15:57
like this
arxmondal 2022-08-15 21:00:18
linux_group-1393749.jpg
Why is this happening? ( This is a fresh installation of Ubuntu 22.04 lts ) Help Please 🥺
|