Skip to content
  • Home
  • About Me
  • Contact
Code Verse

Mission to unlock the mysteries of the Code verse

Category: Technology

HTML PHP Technology

Handling Multiple Images Upload – PHP Mysql

By Sathish | May 4, 2011 by Sathish

First you need to create File Upload form, Use the following html form, <form method=”post” action=”” enctype=”multipart/form-data”> Choose a file to upload : <input type=”hidden” name=”MAX_FILE_SIZE” value=”100000″><input name=”uploadedfile” type=”file”> </form> Use the following in the…

Screen SSH Technology Ubuntu

SSH and Screen – Useful Tips

By Sathish | May 4, 2011October 4, 2024 by Sathish

Screen is very useful in running processes despite losing connection to remote server connected with SSH. The detached process could be attached to the terminal and we could continue the work at later stage. This…

C++ Log4cxx Netbeans PThread Technology

Apache log4cxx framework – Example using Pthreads – Part Two

By Sathish | October 11, 2010 by Sathish

This blog post is continued from Apache log4cxx framework – Part One This post comprises of a simple Configuration file and how it can be incorporated to a c++ code file for using the log4cxx…

Mysqli PHP Technology

Php Mysqli extension

By Sathish | October 11, 2010 by Sathish

The MySql Improved Extension, a.k.a mysqli is faster more improved version of existing mysql. It is available in PHP 5 or later versions. The source code of mysqli is available at ext/mysqli. For further information…

C++ Log4cxx Netbeans Technology

Apache log4cxx framework – Part One

By Sathish | October 11, 2010 by Sathish

I happened to work with Apache log4cxx, a logging framework for c++. This framework offers lot of capabilities from simply outputting a log message to console, writing to log files, socket streaming and database logging. Best…

C#.NET Encryption Technology TripleDES

How to TripleDES encrypt decrypt data? – Part Two

By Sathish | April 23, 2010 by Sathish

This post has reference to part one of this Article. Inside our “TripleDESCrypt“ class, lets implement another method to read the MD5 HashKey generated from the Secret Key from the User. This method will load…

C#.NET Encryption MD5 Technology TripleDES

How to TripleDES encrypt decrypt data? – Part One

By Sathish | April 23, 2010 by Sathish

In this post, a simple demonstration of how TripleDES Encryption algorithm can be implemented using System.Security.Cryptography namespace in .NET will be explained. First of all, we need to create a XML file where we will…

C#.NET Encryption RSA Technology

How to RSA Encrypt Decrypt Data (C#) ?

By Sathish | April 19, 2010 by Sathish

This post has reference to part one of this Article. Inside our “Crypt” class, lets include two more methods. public string EncryptData(string data2Encrypt){      ParameterSetup();      StreamReader reader = new StreamReader(publicPath);      string publicOnlyKeyXML = reader.ReadToEnd();      rsa.FromXmlString(publicOnlyKeyXML);      reader.Close();…

C#.NET Encryption RSA Technology

How to Generate RSA Encryption keys (C#) ?

By Sathish | April 19, 2010 by Sathish

In this post, Simple Demonstration of RSA Encryption Algorithm will be explained. Here, we are going to make use of the System.Security.Cryptography namespace. Now, Lets create two XML files, PrivateKey.xml and PublicKey.xml. In these files…

C#.NET Technology

How to convert Image format programmatically (.NET) ?

By Sathish | March 26, 2010 by Sathish

To convert an Image from one format to another, use the following Method.Here, the known formats include, Bmp, Emf, Exif, Gif, Icon, Jpeg, Png, Tiff, Wmf etc. First, include the following Namespaces; using System.IO.Path;using System.Drawing.Imaging;…

Posts navigation

Older posts
© 2025 Code Verse | WordPress Theme Design by Superb