Noffke.com

Glimmer

by on Dec.01, 2011, under Software Development

Anyone ever use Glimmer?

Leave a Comment :, 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…

Leave a Comment :, , 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...

My First Android App

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

3 Comments :, more...

HTML5

by 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

3 Comments :, more...

Android Application Development

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

    Check out other applications, here or the Marketplace… AppBrain
    Want to make money? Try here… Admob
2 Comments :, more...

Nice Agile Blog

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

2 Comments :, more...

Agile and TFS

by on Jun.27, 2011, under Software Development

Looking for a bit more integration of Agile methodologies into your Microsoft development environment? Read this…

Leave a Comment :, , more...

Sold the boat

by on Jun.27, 2011, under Thoughts

So long buddy, sad to see you leave, but he had cash in hand :)

Leave a Comment more...

ASP.NET Offline Notification Page

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

1 Comment :, more...

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!