For those that know me, know that I have embarked on procuring a 2010 Chevy Camaro 2SS. With 426hp of V8, zero to 60 in 4.7 second power under the hood, I figure I always wanted one, so why not.
Turns out, that they are not the easiest thing on the face of the planet to get your hands on, especially when you are being sort of particular and loading it up with all the options. So I figure I would keep track of the ordering process in case anyone else looking for one wants to watch.
BTW. The http://www.camaro5.com site has tons of specs and images, good stuff.
They say it will be September before it is delivered. I hope not, but we'll see.
1100, Preliminary order accepted <------------- I am here
2000, Order accepted by GM
2500, Order preferenced
3000, Order accepted by production control
3100, Order available to sequence
3300, Order scheduled for production
3400, Order broadcast
3800, Order produced
4000, Available to ship
4150, Original invoice to the dealer
4200, Shipped by the plant
4800, Bayed with the carrier
5000, Delivered to the dealer
Tuesday, May 26, 2009
Wednesday, April 08, 2009
Moving from MVC Beta to MVC 1.0
During this sprint, one of our clients upgraded from the MVC Beta to MVC 1.0 and I wanted to share what Joe wikied into the team wiki because it might be useful to the rest of us. :)
To upgrade to 1.0 release, you will need to uninstall ASP.NET MVC BETA. You can do this by going to "Add/Remove Programs" under "Control Panel" and find MVC Beta and remove it. Once you have done that, you can download ASP.NET MVC 1.0 from this link.
To upgrade to 1.0 release, you will need to uninstall ASP.NET MVC BETA. You can do this by going to "Add/Remove Programs" under "Control Panel" and find MVC Beta and remove it. Once you have done that, you can download ASP.NET MVC 1.0 from this link.
Once the install is done, do a get latest from TFS.
You can find the Release Notes from ASP.NET team:
There are some changes in 1.0 release compared to the BETA version we have been using up until 3/31/2009. Begining April 1st, all of our ASP.NET MVC project in TFS will be based on 1.0 release. Here are some of the highlights of the upgrade:
- Views no longer need code-behind by default
- Visual Studio experience improvements:
- New contextual commands like "Add Controller", "Add View", etc
- Able to create partial view (ascx) as a view using the new contextual command
- Basic scaffolding for strongly type views (list, edit, etc)
- Ability to add custom scaffolding templates
- Page title is now setable in the ViewPage instead of just in Master.Page
- Strongly typed HTML (AJAX) Helper
- Smarter and less verbose binding for POST forms, including with complex objects
- CSRF Protection
- New file handling methods (for upload/download files)
- Updated jQuery lib to 1.3.2
You can read a more detailed overview in ScottGu's blog here.
For our site(s), I had to manually do certain several things:
- Remove all the code behinds and update the ascxs and aspxs to bind correctly
- Update our jQuery references
- Change HTML helper call to DropDownList since the upgrade changed the API parameters
- Change all <"button"> to <%=Html.Button ... %> since behaves like if button type is not specified correctly
- Change every UpdateModel method call to "TryUpdateModel" to utilize non-exception invalid data handling and modify our controllers to display error message correctly
- Add CSRF validation attribute to all POST action methods in all of our controllers
- Add CSRF tag within all of our forms to work with CSRF attributes in our controllers
- Change Delete action method to POST instead of GET to enhance security
Labels:
development,
MVC
Friday, March 20, 2009
Calculating Business Days in a Scheduling System
We just had a little coding competition in the office to solve "how best to code a scheduling object calculator" and Johannes did a great job recapping the issues and the alternative paths to a solution and showing which really is the best way to go.
Happy reading!
Happy reading!
Subscribe to:
Posts (Atom)

