sXorbitant

460 posts

sXorbitant banner
sXorbitant

sXorbitant

@sXorbitant

Hunting bugs || On my way to the Cloud. Non-interest paying protocols only. https://t.co/Q73bQqY7un

Global village Katılım Ağustos 2024
38 Takip Edilen31 Takipçiler
Sabitlenmiş Tweet
sXorbitant
sXorbitant@sXorbitant·
In Ethereum storage slots, the addresses/locations are stored in big-endian format, which means: Numbers are stored from left to right Leading zeros are used to pad the slot address to the full 32 bytes (64 hex digits) A thread...
English
1
0
0
349
sXorbitant
sXorbitant@sXorbitant·
Thumb rule: If you're to automate something, first know how to do it manually.
English
0
0
0
0
sXorbitant
sXorbitant@sXorbitant·
Don't fall into the trap that until you spend 12 hours straight every day you can't become great at anything you do. Work hard and smart. Prioritize your health over any other thing.
English
0
0
0
4
sXorbitant
sXorbitant@sXorbitant·
As a DevOps, how many times do you run "git pull"?
English
0
0
0
2
sXorbitant
sXorbitant@sXorbitant·
grep is to the terminal as Ctrl+f is to GUI
English
0
0
0
6
sXorbitant
sXorbitant@sXorbitant·
Go, C, Rust are faster than Python, Ruby, JavaScript because: - Machine (computer) reads those languages directly and execute them. Python, Ruby, JavaScript code are first interpreted by a program (think of CPython for Python) before machine can understand execute them.
English
0
0
0
13
sXorbitant
sXorbitant@sXorbitant·
When using the terminal: Take care when you use the > operator to write to a file. cat > csv.txt .... It overwrites any existing content.
English
0
0
0
4
sXorbitant
sXorbitant@sXorbitant·
Shell script simply means a file that can be interpreted and run by a Shell program
English
0
0
0
3
sXorbitant
sXorbitant@sXorbitant·
When your terminal commands start throwing errors and not working: If you use Linux: - Go to your home directory - Find your .bashrc file and open it - Go to your terminal and write - echo $PATH - to see your current PATH - Remove the export to that PATH in .bashrc file & save
English
0
0
0
348
sXorbitant
sXorbitant@sXorbitant·
Find out programs taking the most memory on your computer Run "top" in the terminal.
English
0
0
0
19
sXorbitant
sXorbitant@sXorbitant·
I used to wonder how DevOps run a script from the terminal. If you're wondering how they do it, go learn about "shebang". It shouldn't take you more than 30 minutes.
English
0
0
0
8
sXorbitant
sXorbitant@sXorbitant·
You want to know what the he'll does does flags (-a, -r, -d etc) mean in command line? Run this in your terminal: man ls
English
0
0
0
10