
#extradirty
Sade Olutola

noise dept.

@theartofmadeline
TVSTRANGERTHINGS
Show & Tell

PR's Tumblrdome

oozey mess
todays bird
Lint Roller? I Barely Know Her
One Nice Bug Per Day
Not today Justin

Kiana Khansmith
d e v o n
Cosimo Galluzzi

blake kathryn
Mike Driver
seen from Brazil
seen from Saudi Arabia
seen from United States
seen from France
seen from United States
seen from United States

seen from Venezuela
seen from Uzbekistan
seen from Dominican Republic
seen from United Kingdom

seen from United States
seen from Russia
seen from Canada
seen from United States
seen from United States
seen from Malaysia
seen from United States

seen from Malaysia

seen from Ecuador

seen from United States
@0xmrk3d

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
Securcube-Whatsapp-Viewer - Whatsapp Viewer
Simple VBScript to download a file from a URL and execute it

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
PowerShell Remoting Cheatsheet
Linux commands for DOS and MS/Windows CMD shell users. Linux Information Portal includes informative tutorials and links to many Linux sites.
Bunch of comparison between DOS and Shell commands
SSH Tunnelling
Off late I had to access a windows machine through a linux machine. Set up a tunnel using putty thanks to the following link:
http://johan.driessen.se/posts/Setting-up-an-SSH-tunnel-to-access-Remote-Desktop-using-Putty-and-SSHD-on-Linux

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
Kali Linux: Default Screenshot save directory
In terminal type dconf-editor
Go to org > gnome > gnome-screenshot
Set the auto-save-directory
Reference:
http://askubuntu.com/questions/114429/default-save-directory-for-gnome-screenshot
How to write labor-saving shell scripts in Linux.
Good quick tutorial on Bash Shell Programming.
Bash: Difference between &&, || and ;
&&Β
lets you do something based on whether the previous command completed successfully
||
which is the logical orΒ
;
which is just a separator which doesn't care what happend to the command before
$ false || echo "Oops, fail" Oops fail
$ true || echo "Will not be printed" $ Β
$ true && echo "Things went well" Things went well
$ false ; echo "This will always run" This will always run
References:
http://stackoverflow.com/a/4510738
http://stackoverflow.com/questions/4510640/command-line-what-is-the-purpose-of
http://www.gnu.org/software/bash/manual/bashref.html#Lists
http://www.arachnoid.com/linux/shell_programming.html
This story about How to Create Keyboard Shortcuts on Kali Linux was happen about 1 or 2 month ago when I get my Kali Linux distribution from kali.org. I'm successfully installed it on my virtual box, but when I tried to press CTRL+ALT+T
Very simple tutorial on how to create a shortcut to open Terminal.
I have been trying lots of solutions to create shortcuts to run a bash file. Finally this one worked. Usually when you double-click run the file, it usually asks you what you want to do. Finally the solution worked.
Question:Β http://askubuntu.com/questions/398666/execute-sh-script-from-desktop-file Solution:Β http://askubuntu.com/a/398668

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
Pop-up Notifications
So I am planning to show some notifications when scripts complete. In order to get some notifications, we need to install libnotify-bin.
apt-get install libnotify-bin
And to show notifications:
notify-send 'Title of the message' 'Text of the message'
There is a bunch of icons which you can use located in the below path when using the -i command.
/usr/share/icons/gnome/32x32
References:
http://www.howtoinstall.co/en/ubuntu/trusty/main/libnotify-bin/
http://www.thegeekstuff.com/2010/12/ubuntu-notify-send/
http://askubuntu.com/questions/189231/where-are-the-stock-icon-names-defined-for-the-unity-panel-service-indicators-an