Category Archives: Technology

File Storage and Sharing on Google!

Google docs, as if it weren’t cool and convenient enough, now allows you to upload any file format and store it on your Google account. This means mp3’s, movie files, text files, pictures, etc. You can sort files by directory, drag and drop them to different directories, and even share them. What’s great about the… Read More »

Privacy in your Email.

If you are seeking email privacy then you need to look into GPG and PGP encryption. These both provide very solid email encryption that is protected against even the most sophisticated cracking attempts. It is likely that anything is crackable if “they” really want to crack it, but this is the strongest encryption known as… Read More »

Ubuntu 10.04

If you are looking for a more unique and customizable experience on your computer then you should check out Ubuntu 10.04, the latest Ubuntu release. If you don’t know, Ubuntu is the most popular “flavor” of Linux and can replace the Windows operating system at a cost of $0. Yes, it’s free. Benefits: – Runs… Read More »

C# Database Connections and Queries

Create connection string:SqlConnection conn = new SqlConnection(“Data Source=DATASOURCE\\\\SQLEXPRESS;Initial Catalog=DATABASE_NAME;Integrated Security=True”); try { conn.Open(); SqlCommand sql = new SqlCommand(“SELECT * FROM tableName”, conn); SqlDataReader reader = sql.ExecuteReader(); while (reader.Read()) { this.TARGET_ID.InnerHtml += reader[“column”] ; } } catch (SqlException sqle) { sqle.Message.ToString(); }