Three Goblin Art

Janaina Medeiros
Xuebing Du
No title available
trying on a metaphor
let's talk about Bridgerton tea, my ask is open
h
No title available
he wasn't even looking at me and he found me

if i look back, i am lost
ojovivo
Sade Olutola

blake kathryn
Stranger Things
d e v o n
occasionally subtle
we're not kids anymore.
Acquired Stardust
Cosmic Funnies

⁂

seen from Netherlands

seen from Malaysia

seen from Türkiye

seen from Italy

seen from Malaysia

seen from Spain

seen from Netherlands

seen from United States

seen from Malaysia
seen from Germany

seen from United States

seen from United States

seen from Canada

seen from Spain

seen from Türkiye
seen from Uruguay

seen from Sri Lanka
seen from Germany

seen from Malaysia

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