Halloween Trick-or-Treaters and Party 2010

(download)

Posted
 

Eric Stolz was almost Marty in Back to the Future?

Crazy to think that Michael J. Fox got his big movie break because Eric Stoltz wasn't funny enough.

Watch this Clip

The “Back to the Future” films have given us glimpses of times and places that could have been, from a comical 2015 populated with flying cars and hovering skateboards to an alternate 1955 where Michael J. Fox invented rock ‘n’ roll. But how might history have turned out if the first “Back to the Future” movie had starred Eric Stoltz, as its filmmakers originally planned? In this clip from the “Back to the Future” 25th Anniversary DVD collection, the director Robert Zemeckis, his co-screenwriter, Bob Gale, and executive producer Steven Spielberg discuss how they made the heavy if cinematically momentous decision to replace Mr. Stoltz with Mr. Fox, and show early footage that was shot with Mr. Stoltz in the role of Marty McFly.

Posted
 

Great usability feature in GMail when you forget to add your attachments

Screenshot2010-10-11at2

There is nothing worse than sending an email and forgetting the attachments because then you have send another one with the attachments along with an apology of sending a second email.

Gmail fixes this by scanning your message when you hit the Send button and you get this nice little reminder.
Posted
 

Get In, Get Out, Get On With Your Life #wp7

Microsoft is building up some PR steam for the Windows Phone 7 launch. I have to admit the new phones are looking good. It will be interesting to see how big the hype will grow and how long it will last. 

Posted
 

Another iPhone 4 defect, because I bought a nice case? Good thing Apple sent me that cheap piece of plastic called a bumper case.

Media_httpstaticbusin_bfowa

Ryan Block of Gdgt reports some third party iPhone 4 cases can lead to the glass back of the phone being cracked.

How? If the iPhone 4 is slipped into a case small bits can get caught between the case and the phone. These "particulate matter" can cause small scratches which can eventually become big cracks, says Block.

via Business Insider

 

Posted
 

What the real Mark Zuckerberg sounds like

If you watched the Facebook movie over the week and came away thinking that Mark Zuckerberg is a heartless badass robot then you should listen to this short phone interview with Robert Scoble about the new features Facebook released today.

He is usually not good in interviews but he sounds pretty comfortable here. He almost sounds like a guy that you could have a fun conversation in a bar with as long as you're talking about technology. Hey, when I'm in a bar that's the only thing I like to talk about, just ask the wife.

He's also not too bad in today's press conference talking about the new features.

Watch live streaming video from facebookinnovations at livestream.com

He still may be a badass when it comes to business and technology and maybe he used to be a little heartless as a college freshman but we can at least be sure he isn't a robot.

Posted
 

Mono 2.8 is out with C# 4.0 and ASP.NET MVC 2

This looks like a really good update for Mono.  With C# 4.0 and ASP.NET MVC 2 is brings mono closer to parity with the current ASP.NET stack. It's also really impressive how fast Mono and MonoTouch updates are being released lately.

"The highlights of this release include:

  • C# 4.0
  • Defaults to the 4.0 profile
  • New Generational Garbage Collector
    • Use mono --gc=sgen or mono-sgen to use Mono with the new GC
  • New Frameworks from Mono MIT X11 and Microsoft MS-PL/Apache2:
    • ASP.NET 4.0
    • Parallel Framework: including PLINQ.
    • System.XAML
    • System.Dynamic
    • Managed Extensibility Framework
    • ASP.NET MVC 2
    • System.Data.Services.Client (OData client framework)
    • WCF Routing
    • .NET 4.0's CodeContracts
  • Performance:
    • Large performance improvements
    • LLVM support has graduated to stable
      • Use mono-llvm command to run your server loads with the LLVM backend
  • Version 2.0 of the embedding API
  • Removed the 1.1 profile and various deprecated libraries.
  • OpenBSD support integrated
  • Mono no longer depends on GLIB
  • Threadpool exception behavior .NET 2.0
For the full details, check our detailed Mono 2.8 Release Notes"

via Miguel de Icaza's web log

Posted
 

Getting a 404 Error with an ASP.NET MVC 2 App on Windows Server 2008 with IIS 7.5?

I setup a new Windows Server 2008 VM for development today and I ran into a interesting problem. After setting up the server with IIS I tried to test an MVC 2 app.  I kept getting a 404 error which means that the web server is looking for a default document or expects directory browser to be turned on. Either one of these does not work with a MVC app because and MVC app is supposed to work with the web server to control the URL routes.  

This problem makes it appear that IIS doesn't know anything about ASP.NET MVC even though you know that it has been installed.

The solution is to run the ASP.NET IIS registration tool to update the .NET 4.0 script maps between IIS and ASP.NET.

Run this command as an Administrator:

%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -ir

Here are some details about about the registration tool from MSDN:

When multiple versions of the .NET Framework are executing side-by-side on a single computer, the ASP.NET ISAPI version mapped to an ASP.NET application determines which version of the common language runtime (CLR) is used for the application. The ASP.NET IIS Registration Tool (Aspnet_regiis.exe) allows an administrator or installation program to easily update the script maps for an ASP.NET application to point to the ASP.NET ISAPI version that is associated with the tool. The tool can also be used to display the status of all installed versions of ASP. NET, register the ASP.NET version that is coupled with the tool, create client-script directories, and perform other configuration operations.   

via MSDN
Posted