Aqua Utopia|海の底で記憶を紡ぐ
h
YOU ARE THE REASON

izzy's playlists!

let's talk about Bridgerton tea, my ask is open

Discoholic 🪩
he wasn't even looking at me and he found me
we're not kids anymore.
Game of Thrones Daily
Stranger Things

PR's Tumblrdome
almost home

Kiana Khansmith
Sweet Seals For You, Always
$LAYYYTER
Monterey Bay Aquarium

⁂
hello vonnie
I'd rather be in outer space 🛸
seen from United States
seen from Ecuador

seen from Singapore

seen from Malaysia

seen from Singapore
seen from Canada
seen from United States
seen from United States
seen from Chile
seen from United States

seen from United States
seen from Singapore
seen from Türkiye
seen from Ecuador

seen from United States
seen from Brazil
seen from United States

seen from Morocco
seen from United States

seen from South Africa
@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