Posts by Alyxson Marques • 19 points
5 posts
-
0
votes0
answers26
viewsQ: Segmentation Fault in ! (Isalpha(string)) (C)
My program is returning Segmentation fault when I enter a value that is not alpha, rather than falling into loop do{ name = get_string("Digite seu nome -> "); } while(!(isalpha(name))); The…
casked Alyxson Marques 19 -
0
votes2
answers33
viewsA: how to delete the. bat file I am using
You can delete files using the command del nome_do_arquivo
batanswered Alyxson Marques 19 -
0
votes3
answers129
viewsA: Catch internal IP via Python (Router)
After a time of study I came to a final resolution: ip = os.popen("ip route get 8.8.8.8 | awk '{printf $3}'").read().strip() Works for Linux, wired and Wi-Fi.…
-
-1
votes3
answers129
viewsQ: Catch internal IP via Python (Router)
I’m a long time doing research on this, and I wanted to know how to get the local ip (obviously) of my router in python in a Linux environment, I searched it in Google several times and always came…
-
0
votes0
answers42
viewsQ: Search in text GIANT
I have here with me, a giant text, AMAZING, is a txt of approximately 30 GIGABYTES, it is compressed in 7z I want to ask for your help, to know how I can do research within it, like a cat | grep,…