Denny.NET

I can haz ASP.NET goodness?

About the author

Denny Ferrassoli
Developer at Casting Networks. MCP / .NET
E-mail me Send mail
Add to Technorati Favorites

Recent posts

Recent comments

Authors

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2008

My "Web 3.0" Elevator Pitch

I ran across an interesting post on LinkedIn today. A user posted a question: "What will web 3.0 be?"

There were a variety of answers, many pointing towards the semantic web but a few suggesting the mobile web, user interaction, and a marketing gimmick amongst others.

So I took a 5 minute timeout and jotted down my "elevator pitch" of what I think will make up the next "version."

The semantic web or "artificial intelligence" that computers will use to turn data into context-aware relationships of information. Including the organization and portability of that information towards user-centric mediums.

Check out Wikipedia's entry: http://en.wikipedia.org/wiki/Web_3

What are your eleavator pitches?

Digg It!DZone It!StumbleUponTechnoratiRedditDel.icio.usNewsVineFurlBlinkList

Currently rated 4.0 by 1 people

  • Currently 4/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Categories: General
Posted by Denny on Monday, May 26, 2008 10:06 PM
Permalink | Comments (0) | Post RSSRSS comment feed

Debug on LocalHost with Fiddler

If you do a lot of debugging with Fiddler you probably know it doesn't capture any data when you run your website on your loopback address (http://127.0.0.1 or http://localhost). Well there's a simple way to get around this as outlined in this blog post. Enjoy!
Digg It!DZone It!StumbleUponTechnoratiRedditDel.icio.usNewsVineFurlBlinkList

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,
Categories: ASP.NET | General
Posted by Denny on Thursday, May 22, 2008 1:03 PM
Permalink | Comments (0) | Post RSSRSS comment feed

On Again, Off Again, and Finally Google

My site has been up and down, on and off, stiff and flimsy throughout the week. I am not the sys admin of the year so running on my own virtual server has been a workout. My pains really started with Plesk, a control panel for hosting multiple websites. It's a great tool when it works and it can configure the few things I'm not familiar with with a few clicks. However when it doesn't work then I have to manually go in and tweak things myself. Like my DNS and Mail for example. For whatever reason my DNS settings for dennydotnet.com would not be created, maybe it dislikes my name :) Anyways...

Today I decided to finally fix my Mail problems after a friend enlightened me with knowledge of Google Apps. "Google Apps.. and Mail, huh?" Yep! You can create your email account on Google Apps, add a few DNS records to your domain and voila! Google now handles your e-mail, faster and more reliably. You also have access to your email via GMail and you can of course enable POP/IMAP to access it via your favorite mail program. Best of all you get to use your domain name "@dennydotnet.com" not the "@gmail.com" name and you have total control of email as well as "lists."

Allowing the Goog to handle my mail is great because I can now disable and uninstall my mail server software. This, in turn, gives me back more memory and hard disk space as well as less headaches when my email isn't going through :)

Thanks Goog!

[Update 05/08/08]: Everything went well with Google Apps and I went around my site and changed my email settings to reflect the new Google Apps email. At first I couldn't figure out which host or port to send to but after some research I was able to make the necessary changes. Below is an example of the SmtpClient code needed to send mail via Gmail.

[code:c#]
SmtpClient smtp = new SmtpClient();
smtp.Credentials = new NetworkCredential( "addr@mydomain.com", "****************" );
smtp.Host = "smtp.gmail.com";
smtp.Port = 587;
smtp.EnableSsl = true;
[/code]

Digg It!DZone It!StumbleUponTechnoratiRedditDel.icio.usNewsVineFurlBlinkList

Currently rated 4.0 by 1 people

  • Currently 4/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:
Categories: Blog | General
Posted by Denny on Tuesday, May 06, 2008 11:02 PM
Permalink | Comments (2) | Post RSSRSS comment feed