Google I/O 2011: Smart App Design

Google I/O 2011: Smart App Design

6:23 AM  /  Unknown  /  0 Comments

 I am going to hook Jarvis into this. Just wait until the API piece of Jarvis is done. He will really shine....

Jarvis virtual assistant - William Arends C# & .NET

Jarvis virtual assistant - William Arends C# & .NET

12:57 PM  /  Unknown  /  2 Comments

...

C# Extract HTML Image URLs From Source

C# Extract HTML Image URLs From Source

3:58 PM  /  Unknown  /  0 Comments

I made a web request and stored the web page's mark up in a string. Then passed it into this method that I found here. This will return a list of Uri objects. (List). Simple and awesome code. ]+?)[ '""][^>]*?>"; MatchCollection matchesImgSrc = Regex.Matches(htmlSource,...

Speech Recognition Concepts.. Best Title I Got!

Speech Recognition Concepts.. Best Title I Got!

3:03 PM  /  Unknown  /  1 Comments

I found a really interesting QA article today while trying to figure out how to get C# speech recognition to guess what the user meant to input. Then correct the input, if needed.My goal is to improve the programs natural language processing capabilities. I am trying to create an Iron Man's Jarvis interface type program. I have it working...

Sql Server Error: @schedule_uid is not a parameter for procedure sp_add_jobschedule.

Sql Server Error: @schedule_uid is not a parameter for procedure sp_add_jobschedule.

2:20 PM  /  Unknown  /  0 Comments

@schedule_uid is not a parameter for procedure sp_add_jobschedule. Recently had to resolve an issue with this error when sending in a SQL script. We right clicked a server job and when to: Script Job As > CREATE TO > New Query Editor Window  in SQL Server 2008. The script was going to be ran on SQL Server 2005...

C# WPF - Dynamically Loading Images Asynchronously Into a StackPanel From a List of Image URL's

C# WPF - Dynamically Loading Images Asynchronously Into a StackPanel From a List of Image URL's

10:49 AM  /  Unknown  /  0 Comments

         Recently, I needed to be able to load images from URLs into a WPF window without locking up the UI thread. After looking at multiple websites that posted how to do this or something similar, I wanted to share the solution I came up with after doing research on this topic. What this does...

12:37 PM  /  Unknown  /  0 Comments

Diving Into Android Development Tonight    I have downloaded Andorid SDK bundle, ADT Plugin, and Java. This is a new laptop and I forgot to install java after I got it. I will outline my steps here and offer any tips or tricks I find along the way. I have experience writing in Java, so this will assume...