Glimmer
by Noffer on Dec.01, 2011, under Software Development
Anyone ever use Glimmer?
Quick References for writing ASP.NET Web Pages with Razor syntax
by Noffer on Nov.27, 2011, under Software Development
There’s a lot of good books out there on MVC, but what about a reference? You tell me the best, so far, here’s my hitlist of reference resources…
- ASP.NET MVC 3: Implicit and Explicit code nuggets with Razor - all of the series from Scott Guthrie are nice
- Understanding the ASP.NET MVC Execution Process – asp.net references/tutorials linked from the main mvc content
- ASP.NET Razor Pages / API Quick References – some more good content at asp.net
- MSDN ASP.NET Web Pages Reference
Singleton
by Noffer on Nov.08, 2011, under Software Development
Saw a new twist on the Singleton pattern. Here it is…
class ThreadSafeSingleton
{
// typical pattern: private constructor and property to return the instance
private ThreadSafeSingleton() { }
public static ThreadSafeSingleton Instance
{
get { return Nested.instance; }
}
// using this pattern helps make a simple, fast thread-safe singleton that doesn't use a lock
private class Nested
{
static Nested() { }
internal static readonly ThreadSafeSingleton instance = new ThreadSafeSingleton();
}
}
My First Android App
by Noffer on Oct.31, 2011, under Software Development
Well, Here’s my first Andorid App. Not in the Market yet, but its stable for 2.2 and 2.3 phones…
Mortgage Calculator … Its on a Skydrive folder that will open in a new window.
HTML5
by Noffer on Oct.31, 2011, under Software Development
What is HTML 5?
In a nut shell, its a set of new html tags, CSS enhancements and Script APIs
Want to learn about it? Try here… w3schools
Want to check for compatibility? Check Here.
Want to fine tune your user experience? Use Modernizr
Android Application Development
by Noffer on Oct.30, 2011, under Software Development
So, I’ve been looking into what it takes to develop Applications for Android Devices. Here’s a quick list of links that I have needed along the way.
- Get Eclipse setup … Download
- Get the Android SDK … Download Here
- Review Android Fundamentals … Here or wherever you prefer
- Check out other applications, here or the Marketplace… AppBrain
- Read some cool articles… Mobiforge is a good site
- Want to make money? Try here… Admob
- Now that your app is ready to roll, get an account on the Android Marketplace (costs $25)
Nice Agile Blog
by Noffer on Jul.08, 2011, under Software Development, Thoughts
Check out this guy. He’s got some great, simple, straight forward articles and super nice videos too!!
Agile and TFS
by Noffer on Jun.27, 2011, under Software Development
Looking for a bit more integration of Agile methodologies into your Microsoft development environment? Read this…

ASP.NET Offline Notification Page
by Noffer on May.10, 2011, under Software Development
When using updateable websites, one on the nice features of .Net Development in Visual Studio is the helper page during the publishing process. The auto-generated page is app_offline.htm. So, if you are updating a production site and want to do te publish process manually, or want to script out your own process, just drop a page of that name in your root and you are all set. When you are done, just delete the page. Guess there is a little magic left at Microsoft. btw… what about the Skype purchase?
