Noffke.com

Construct 2

by 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

Comments Off :, more...

Indigo

by on Feb.06, 2013, under Software Development

 

Free wireframing and prototyping tool from Infragistics.

 

Indigo

Comments Off : more...

Form Follows Function

by 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

Comments Off :, more...

Windows 8

by 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.

Comments Off :, more...

Script Junkie

by on May.24, 2012, under Software Development

 

Are you a Script Junkie?  good way to keep up on jQuery and HTML5 as of late?

Comments Off :, , , more...

Which WSDL

by 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?

Comments Off : more...

qTip

by on Feb.07, 2012, under Software Development

 

Very cool popup jQuery plugin.  Check it out!

2 Comments :, more...

Glimmer

by on Dec.01, 2011, under Software Development

 

Anyone ever use Glimmer?

Comments Off :, more...

Quick References for writing ASP.NET Web Pages with Razor syntax

by 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…

Comments Off :, , more...

Singleton

by 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();
}
}
1 Comment :, more...

Share Noffke.com goodness...