Howto Stress CPU
Use 3 cpu core
stress --cpu 3
DEAR READER
will byers stan first human second

Discoholic 🪩
sheepfilms
todays bird

titsay
Xuebing Du
Keni
Stranger Things
Acquired Stardust
h

★
Not today Justin


tannertan36
Monterey Bay Aquarium

Origami Around
tumblr dot com
Three Goblin Art
seen from United States

seen from Finland

seen from Malaysia

seen from United States

seen from Malaysia
seen from Spain

seen from United States
seen from Australia
seen from Venezuela
seen from United Kingdom
seen from United States

seen from United States
seen from United States

seen from Finland
seen from Czechia
seen from United Kingdom

seen from India

seen from United Kingdom

seen from United States
seen from United Kingdom
@kelebex
Howto Stress CPU
Use 3 cpu core
stress --cpu 3

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
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; }

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
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

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
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

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Emacs add to bookmark
C-x r a
Disable pyc
#pythontip export PYTHONDONTWRITEBYTECODE=1 in your .bashrc or zshrc to disable *.pyc file generation.