Author Archive
Construct 2
by Noffenhausen on Feb.07, 2013, under Software Development
Very cool game development environment
Its as easy as 1, 2, 3… spaceblaster
brought to you by scirra.com
Indigo
by Noffenhausen on Feb.06, 2013, under Software Development
Comments Off :Software Development more...Form Follows Function
by Noffenhausen on Feb.06, 2013, under Software Development, Thoughts
Yes it does, and see great samples here using HTML5
Love the tree especially! http://fff.cmiscm.com
Windows 8
by Noffenhausen on Sep.04, 2012, under Available, Software Development
Install is smooth and easy. Not sure if I’m liking Metro yet as it still seems to think that I need skydrive the maps apps, even though I haven’t used them in 2 days. We’ll see if they ever shut down on their own.
Script Junkie
by Noffenhausen on May.24, 2012, under Software Development
Are you a Script Junkie? good way to keep up on jQuery and HTML5 as of late?
Which WSDL
by Noffenhausen on May.18, 2012, under Available, Software Development
Is this article timeless or what??? And still people don’t understand why document style binding is the way to go.
Which style of WSDL should I use?
qTip
by Noffenhausen on Feb.07, 2012, under Software Development
Very cool popup jQuery plugin. Check it out!
Glimmer
by Noffenhausen on Dec.01, 2011, under Software Development
Anyone ever use Glimmer?
Quick References for writing ASP.NET Web Pages with Razor syntax
by Noffenhausen 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 Noffenhausen 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();
}
}
Share Noffke.com goodness...