How Java Works

How Java Works
In Java programming language, all source code is written first in plain text files ending with the .java extension. Those source files are then compiled into .class files by the java compiler. A .class file doesn't contain code that is native to your...

C# - Operators and Expressions

C# - Operators and Expressions
Operators are used to process the data. Expressions are created by combining the operators with variables and constants. For example: int number1, number2, sum; number1 = 10; number2 = 20; sum = number1 + number2;  In the last statement, two...

Data Types and Variables

Data Types and Variables
  A data type specifies whether or not a variable can store a number, a single character or text. Variables are names given to the memory location for storing data. Data Types are used to specify the types of values related to variable...

How To Use TinyURL API In VB.NET

How To Use TinyURL API In VB.NET
TinyURL is a URL shortening service a web service that provides short URLs for redirection of long URLs. This can be achieved very easily in PHP, I posted a PHP snippet about this you could reach it from here. Last year I created a TinyURL shortener...

Thinkspace Seeks To Launch Software Development To High Schools Worldwide

Thinkspace Seeks To Launch Software Development To High Schools Worldwide
Thinkspace is an organization created by sixteen year old James Anderson, Thinkspace seeks to "inspire the next generation of app developers" through coding zones worldwide. Thinkspace was formally launched by James Anderson this month(september) with...

How To Make Awesome Collages

How To Make Awesome Collages
Collagerator helps you to make stunning photograph collages by using your photograph collections. This software comes in handy for those of you that simply cannot stop taking photographs of everything around you. Collagerator can offer you with an easy...

Snippet : Using Regular Expressions in Java

Snippet : Using Regular Expressions in Java
This snippet helps you to use Regular Expression(Regex) in Java...

Snippet : Get ASCII Value For Every Characters

Snippet : Get ASCII Value For Every Characters
This snippet helps you to get the ASCII value for every character...

How To Execute Shell Commands and Print Results in Java

How To Execute Shell Commands and Print Results in Java
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...

Snippet : Detect TOR in PHP

Snippet : Detect TOR in PHP
This snippet helps you to detect TOR network connection in P...

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

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...

Snippet : Javascript onmouseover and onmouseout

Snippet : Javascript onmouseover and onmouseout
This snippet helps you to make buttons etc.. I have been using this for Download Button...

Jarvis : an Artificial Intelligence Operating System

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

Snippet : Generate Random Password
This snippet helps you to Generate Random Passwor...

How To Make A Port Scanner in PHP

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...

Snippet : Base64 Encode and Base64 Decode in PHP

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...

Snippet : TinyURL API in PHP

Snippet : TinyURL API in PHP
This snippet helps you to shorten your URLs with TinyURL API(Function with usage) <?php function TinyURL($url){     return file_get_contents('http://tinyurl.com/api-create.php?url='.$url); } echo TinyURL('http://www.ultimateprogrammingtutorials.info'); ?> You...

Snippet : HTTP Redirection In PHP

Snippet : HTTP Redirection In PHP
This snippet helps you to redirect to another website/webpage. <?php     header('Location: http://www.example.com'); ?> Replace http://www.example.com with your website URL/webpage U...

Snippet : Detect HTTP User Agent in PHP

Snippet : Detect HTTP User Agent in PHP
The code below helps you to detect the HTTP user agent I mean the browser version. <?php                $useragent = $_SERVER['HTTP_USER_AGENT'];     echo "<b>User Agent </b>: ".$useragent; ?> Return User...

Down For Everyone Or Just Me in VB.NET

Down For Everyone Or Just Me in VB.NET
Down for everyone or just me is a website that can check whether your website is down or up. Required components One Button One TextBox Coding : Add these codes to Button click_event & don't forget to add the namespace Imports System.Net. ...
Page 1 of 53123456789...53Next »