Howto Stress CPU
Use 3 cpu core
stress --cpu 3
Lint Roller? I Barely Know Her
I'd rather be in outer space 🛸
PUT YOUR BEARD IN MY MOUTH
d e v o n
2025 on Tumblr: Trends That Defined the Year

blake kathryn
RMH
trying on a metaphor

No title available
styofa doing anything
Misplaced Lens Cap
tumblr dot com
Monterey Bay Aquarium
KIROKAZE
Mike Driver
dirt enthusiast

shark vs the universe

No title available

titsay
NASA
seen from Netherlands

seen from Malaysia

seen from Belgium

seen from India

seen from United States
seen from United States

seen from Canada

seen from United States
seen from Poland

seen from United Kingdom
seen from Philippines
seen from United States

seen from United States
seen from Indonesia
seen from United States

seen from United States
seen from Hong Kong SAR China
seen from Germany

seen from Malaysia
seen from United States
@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.