How to Convert Byte Array to String in C#

How to Convert Byte Array to String in C#
In .NET, a byte is just a number from 0 to 255 (the numbers that can be represented by eight bits). So, a byte array is just an array of the numbers from 0 to255. At a lower level, an array is a contiguous block of memory, and a byte array is just...

Convert Strings to Upper Case in JavaScript

Convert Strings to Upper Case in JavaScript
This will teach you the way to convert strings to upper case in javascript. we will use these if we've a text field needs to capitalized all inputted text or simply the 1st letter of the word. Source : <!DOCTYPE html> <html> <head> <script...

How To Make Videos Responsive with CSS

How To Make Videos Responsive with CSS
A responsive website means It will respond to your browser sizes or I can browser stretches. The basic idea of it is to give optimal viewing experience to visitors, nowadays you will rarely see a unresponsive website. If you remember a Jquery snippet...

How To Make a Line Break/New Line in Java

How To Make a Line Break/New Line in Java
Line Break or New Line : I hope you understand what it is, in HTML you use <br> tag to make a new line so in Java if you want to make a new line it's not that hard but it has several methods depends on the platform. Coming to the point, most...

How To Read A Text File Hosted Online To A String

How To Read A Text File Hosted Online To A String
  So I got a email asking how to do this, I haven't done this before so went through some Google searches and found how to do this. It was pretty easy. I'll just share the code here maybe it'll be useful for someone. You need these namespaces...

How To Draw A Circle Form In C#

How To Draw A Circle Form In C#
  I have seen some controls/components that can change the form into circle.. today I came up with something very simple umm well, it’s done with drawing. You’ll need to add the namespace : using System.Drawing;. We’ll do the drawing in form_load...

How To Check If Directory Exists In VB.NET And C#

How To Check If Directory Exists In VB.NET And C#
I have had some hard times in solving this problem not these days but sometime ago when I started programming so I think this would be helpful for anyone who has started programming.. Here's the code to check if the directory exists in VB.NET : Try ...

How To Keep JFrame Always On Top

How To Keep JFrame Always On Top
Always On Top : It’s something that keeps the window on top, you might have seen in some programs they have a menu strip item called Always On Top when you enable it, it will keep the window on top most. You might have seen in Visual Basic or Visual...

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

Snippet : Detect TOR in PHP

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

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

Snippet : Generate Random Password

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

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

How To Read And Write Registry In C#

How To Read And Write Registry In C#
We will see how to read and write registry in c# today . For people who don't know about registry if i tell it on my own words registry is like a registrar(the person who registers marriage) it registers all the software's that you install so it's...