Howto Stress CPU
Use 3 cpu core
stress --cpu 3

Origami Around
🪼

pixel skylines
YOU ARE THE REASON
occasionally subtle
let's talk about Bridgerton tea, my ask is open

izzy's playlists!
Monterey Bay Aquarium
The Stonewall Inn
noise dept.
No title available

No title available

❣ Chile in a Photography ❣
macklin celebrini has autism
Today's Document

roma★
tumblr dot com
Noah Kahan
KIROKAZE
almost home

seen from Hungary
seen from Laos
seen from Nigeria
seen from Netherlands
seen from United States
seen from United States

seen from United States
seen from United States
seen from United States

seen from Australia
seen from United States
seen from United States

seen from United States
seen from United States
seen from United States
seen from United States

seen from United States

seen from United States
seen from United States
seen from Belgium
@kelebex
Howto Stress CPU
Use 3 cpu core
stress --cpu 3
Bash Profile Generator
Bash profile generator
Web server in one line of bash
while true; do { echo -e 'HTTP/1.1 200 OK\r\n'; cat index.html; } | nc -l 8080; done
Source: http://razvantudorica.com/08/web-server-in-one-line-of-bash/
Getting sudo
by Kain
Installing unsigned packages with puppet [APT]
file { '/etc/apt/apt.conf.d/99auth': owner => root, group => root, content => 'APT::Get::AllowUnauthenticated yes;', mode =>644; }
Grep Context Line Control
-A NUM, --after-context=NUM Print NUM lines of trailing context after matching lines. Places a line containing a group separator (--) between contiguous groups of matches. With the -o or --only-matching option, this has no effect and a warning is given.
-B NUM, --before-context=NUM Print NUM lines of leading context before matching lines. Places a line containing a group separator (--) between contiguous groups of matches. With the -o or --only-matching option, this has no effect and a warning is given.
-C NUM, -NUM, --context=NUM Print NUM lines of output context. Places a line containing a group separator (--) between contiguous groups of matches. With the -o or --only-matching option, this has no effect and a warning is given.
Vi Find and replace
:%s/foo/bar/g
Find each occurrence of 'foo' (in all lines), and replace it with 'bar'.
:s/foo/bar/g
Find each occurrence of 'foo' (in the current line only), and replace it with 'bar'.
Git clone a repo without history
It can be used for quick clone
git clone --depth 1 repo.git
Flush Python Standart Output
import sys sys.stdout.flush()
Open a port with netcat
Open port 1234
nc -l 1234
Connect port 1234
nc localhost 1234
MySQL Show Open Connection
show processlist; show processlist/G;
Show Table Columns
DESCRIBE table_name;
(mysql and oracle)
Cacti change admin password
UPDATE cacti.user_auth SET password = MD5('changeme'), must_change_password = 'on' WHERE username = 'admin';
Linux Merge 2 different directories
rysnc -av directory1 directory2
listen port with ngrep
ngrep -d any port 25
Emacs add to bookmark
C-x r a
Disable pyc
#pythontip export PYTHONDONTWRITEBYTECODE=1 in your .bashrc or zshrc to disable *.pyc file generation.