Snippet : Get ASCII Value For Every Characters

This snippet helps you to get the ASCII value for every characters.

How To Execute Shell Commands and Print Results in Java

Java Command Shell,bash script -eq, bash script -ne, best way to learn java, execute shell commands, execute shell commands java, get runtime, host runtime, java, java learning, oracle sql plsql, print results, tutorial,
There are many ways to execute shell commands and print results in java I guess, the famous and the most used way is Runtime.getRuntime().exec you can find a good explanation for that from here. Coming to the point i am using the same way but little different! I use BufferedReader,InputStreamReader for simplicity and I can't make it much advanced. On the main event I have created a String where you put your command with the second event it executes the command and prints the result before I start I would like to give some credits to luismcosta.

Snippet : Detect TOR in PHP

This snippet helps you to detect TOR network connection in PHP

Easy-Run : Add, Edit and Remove Computer Startup Items

Easy-Run is an effective utility that was particularly designed to supply you with an easy means that of managing the startup programs in your computer. With Easy-Run you can take away from the list any unwanted entries, edit existing things to change their name or path, furthermore as add new programs.

Snippet : Javascript onmouseover and onmouseout

This snippet helps you to make buttons etc.. I have been using this for Download Buttons.

Jarvis : an Artificial Intelligence Operating System

A group of Indian programmers has created an Artificial Intelligence Operating System called J.A.R.V.I.S, They say it all started with the Iron Man 3 release.


Snippet : Generate Random Password

This snippet helps you to Generate Random Password

How To Make A Port Scanner in PHP

Port scanners are created to find opened/closed ports in a host, you can get the same results in this Port Scanner coded in php by the way I wouldn't take all the credits to this because i am a php beginner so I had to make this from scratch also there are many more open source advanced Port Scanners. You can also easily add Ports if you need to.

Snippet : Base64 Encode and Base64 Decode in PHP

This snippet helps you to encode and decode your text with base64.
Base64 is a group of similar encoding schemes that represent binary data in an ASCII string format by translating it into a radix-64 representation. The Base64 term originates from a specific MIME content transfer encoding. - Wikipedia