Category Archives: Technology

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(); }

Google Voice Quality

Google voice is still my second choice. When I used it a few days ago to call my wife for a second, she kept saying “huh?”, “what?”, “I can’t hear you”. After saying it three times, she got it. Then she told me that I sounded terrible. There may not really be an advantage to… Read More »

Google Voice Now Open to Everyone in the US

Source: PC World Google’s telephony management application Google Voice is now open to all U.S. residents, as the company on Tuesday removed the requirement for prospective users to receive an invitation in order to sign up for the service. Google Voice Now Open to Everyone in the US Already, there are 1 million people with… Read More »