Open Websites and Emails from a Windows Phone 7 Silverlight App

First,  make sure to reference the Microsoft.Phone.Tasks Library

In your XAML you can add a HyperlinkButton with a click even like this:

<HyperlinkButton x:Name="Email" Content="email@domain.com" Click="Email_Click"/>

Then use the EmailComposeTask class to bring up the mail client.

private void Email_Click(object sender, RoutedEventArgs e)
{
EmailComposeTask email = new EmailComposeTask();
email.To = "email@domain.com";
email.Subject = "Thanks";
email.Show();
}

In a similar manner, you instantiate WebBrowserTask to bring up the browser with the provided link

private void MyBlog_Click(object sender, RoutedEventArgs e)
{
WebBrowserTask web = new WebBrowserTask();
web.URL = "http://chrisrios.com";
web.Show();
}

Continue reading “Open Websites and Emails from a Windows Phone 7 Silverlight App”

Upgrade to socket 1156 or 1364?

What do you think is the better upgrade is there is any difference?

1156 Update ~633
Motherboard: ~190 EVGA P55 SLI 132-LF-E655-KR LGA1156 Intel P55 ATX Intel Motherboard – Retail

CPU: ~280  Intel Core i7-860 Lynnfield 2.8GHz LGA 1156 95W Quad-Core Processor Model BX80605I7860 – Retail

RAM ~163: CORSAIR DOMINATOR 4GB (2 x 2GB) 240-Pin DDR3 SDRAM DDR3 1600 (PC3 12800) Desktop Memory Model CMP4GX3M2C1600C7 – Retail

1366 Update ~700

Motherboard: ~240  EVGA 141-BL-E757-TR LGA 1366 Intel X58 ATX X58 SLI LE Intel Motherboard – Retail

CPU :~295 Intel Core i7-930 2.8GHz LGA 1366 Quad-Core Desktop Processor Model BX80601930 – Retail

RAM :~163  CORSAIR DOMINATOR 4GB (2 x 2GB) 240-Pin DDR3 SDRAM DDR3 1600 (PC3 12800) Desktop Memory Model CMP4GX3M2C1600C7 – Retail

Continue reading “Upgrade to socket 1156 or 1364?”

Killing Floor Guide

Searching for guides for Killing Floor, I realized there was not a single one in gamefaqs.com. So, I decided that I should create one with a little help from the guys from the clan. I am going to start it by creating a thread on our forums taking suggestions on what to add or edit.

I am planning on covering mostly strategies on how to handle enemies and finding good spots in the core maps. Hopefully, my guide will provide some more exposure to the clan and we can find more recruits. Killing Floor is an awesome game, but it is way underrated. It is only $20 bucks on Steam, and it is pretty much everything I wanted Left 4 Dead to be. I got 3 servers running on my media center that you can check out here. You can get an awesome ping in these, especially if you are in the South. Feel free to ping me if you want to join our ventrilo server.

Copyright 2009 Christian Rios

All trademarks and copyrights contained in this document are owned by their
respective trademark and copyright holders.

$$$$$ UPDATE 08/31/2009 $$$$$

After working on it for a while, the guide finally got publish on gamefaqs.com. So, you can check it out here. Now that it was accepted, I will be adding more content to it. I will add an actual FAQ, and enemies quotes among another things.