blisteringlunatic

Stories kicked by blisteringlunatic

The Open Source Projects on ASP.NET MVC - Kazi Manzur Rashid's Blog(weblogs.asp.net)

submitted by jantujantu(1045) 3 years, 2 months ago

Last night the forehead four head has released the 1st chapter of their upcoming Wrox book along with a sample project NerdDinner and I think this is the best application to check if anyone is trying to lean the new ASP.NET MVC framework. And this is the list of currently available Open Source Projects developed in ASP.NET MVC. I am ordering it based ... read more...

add a comment |category: |Views: 371

tags: another

6 SEO Tips For ASP.NET URL’s(blogfodder.co.uk)

submitted by leen3oleen3o(365) 3 years, 2 months ago

If you are building a new ASP.NET application, SEO has become a big factor in how you plan the structure / code of the site. But quite an important part of the site which are often overlooked are the URL’s, and a lot of people do the basics which I’ll show below but there are a few common things people tend to miss or never thought could be a problem... read more...

1 comment |category: |Views: 656

tags: another

6 Things Developers Should Know By 2010(blog.saviantllc.com)

submitted by davidsdavids(480) 3 years, 2 months ago

A list of 6 things I think asp.net developers should know by 2010 read more...

1 comment |category: |Views: 1480

tags: another

12+ open source projects for .NET you probably didn’t know about.(blog.webdistortion.com)

submitted by squiggssquiggs(585) 3 years, 2 months ago

Here’s a few of the better .NET open source projects which are making a difference to .NET developers worldwide, and it just shows that the open source .NET community is alive and well. read more...

1 comment |category: |Views: 1932

tags: another

Exponentially Improve Performance to Start ASP.net 2.0, 3.0, 3.5 Debug(it.toolbox.com)

submitted by dotnetdudedotnetdude(220) 3 years, 2 months ago

Stop the waiting when debugging your ASP.Net Web Applications! Here's a complete RAM Disk solution to save your sanity. read more...

1 comment |category: |Views: 569

tags: another

Back to Basics: Interfaces(codebetter.com)

submitted by karlkarl(265) 3 years, 2 months ago

When it comes to object-oriented programming there are few concepts as basic and important as interfaces. Only recently though, and at a snails pace, have .NET developers started to take advantage of the simple benefits interfaces have to offer. This interest stems from the core role interfaces play in some pretty hot topics, including: dependency injection, unit testing and mocking (to name a few). read more...

1 comment |category: |Views: 667

tags: another

jQuery $document.ready() and ASP.NET Ajax asynchronous postback(blog.dreamlabsolutions.com)

submitted by arnoldmatuszarnoldmatusz(600) 3 years, 3 months ago

Combine ASP.NET Ajax and jQuery and make $document.ready execute even after an asynchronous postback took place. read more...

add a comment |category: |Views: 585

tags: another

A cool puzzle game for programmers, written in Silverlight(robozzle.com)

submitted by igoroigoro(815) 3 years, 3 months ago

The goal of the game is to program a robot to pick up stars. The puzzles are submitted by other users, and ranked by difficulty based on votes. read more...

3 comments |category: |Views: 567

tags: another

Ruby inspired C# Extension Methods for natural DateTime operations(codeplex.com)

submitted by spavkovspavkov(1708) 3 years, 3 months ago

FluentDateTime is a open source library of Ruby inspired C# Extension Methods for easier and more natural DateTime handling and operations in .NET that allows you to write code like this: DateTime.Now + 1.Week() + 3.Days + 14.Minutes(); 3.Days().Ago(); 5.Days().After(new DateTime(2000, 1, 1)); DateTime.Now.NextDay(); DateTime.Now.WeekAfter(); DateTime.Now.Midnight(); DateTime.Now.SetTime(11, 55, 0); read more...

add a comment |category: |Views: 556

tags: another

Spiff Up Your ASP.NET MVC Form With jQuery(codethinked.com)

submitted by joe.feserjoe.feser(115) 3 years, 3 months ago

Since many people who are being introduced to ASP.NET MVC are being simultaneously introduced to jQuery I felt like I’d give you a quick introduction to a few jQuery plug-ins that will help you make better forms. But most importantly make your forms better without you really having to do too much to them. read more...

add a comment |category: |Views: 306

tags: another

Subtext 2.1 – A great .NET Open Source Blogging Platform(codezest.com)

submitted by daveschinkeldaveschinkel(1720) 3 years, 3 months ago

If you are looking for a free .NET based open source blogging application, Subtext may be for you or your company. It’s a mature and established blogging framework founded by MS employee Phil Haack. My site is using Subtext and I’ve been very happy with it as compared to solutions such as Telligent Community Server which are not free and are quite heavy and complicated just for running a simple blog for you or your company. Here is the rundown of its current benefits as I’ve experienced: read more...

add a comment |category: |Views: 206

tags: another

8 ways to be a better programmer in 6 minutes.(secretgeek.net)

submitted by Tr3vTr3v(376) 3 years, 3 months ago

It's always nice to read a post where you already follow some of the suggestions but find the odd useful nugget, I dislike seeing literals in my source code and the hint about making them stand out with nasty color coding is something I'll be giving a go! read more...

5 comments |category: |Views: 1306

tags: another

ASP.NET MVC Validation - The Definitive Guide (in my eyes)(goneale.wordpress.com)

submitted by gonealegoneale(1055) 3 years, 3 months ago

After trying a ton of techniques, I bring you the tried & tested definitive guide to ASP.NET MVC validation utilising both CLIENT (jQuery validator plugin) and SERVER validation ready to go with strong object model validation AND compatible with LINQ 2 SQL. What more could one want?! read more...

add a comment |category: |Views: 439

tags: another

"Quality Doesn't Matter That Much" -- Jeff and Joel (blog.objectmentor.com)

submitted by joejoejoejoejoejoejoejoe(1140) 3 years, 3 months ago

I was riding my exercise bike, listening to Stack Overflow #38 when I heard Jeff Atwood and Joel Spolsky say "Quality just doesn't matter that much." I nearly fell off my bike. read more...

1 comment |category: |Views: 548

tags: another

Cheap way of speeding up Visual Studio I/O(nesteruk.org)

submitted by dmitridmitri(408) 3 years, 3 months ago

Visual Studio loves file I/O. It really, really does, and it cares very little about caching and the like. What this means is that, when you open a solution file, it always reads it from disk. Which means that the speed of operation when generating lots of files (e.g., via T4 transformations) is typically atrocious. The fact that file I/O in VS does not appear to be multithreaded is another hindrance. In short, it’s a mess. read more...

add a comment |category: |Views: 991

tags: another

Action, Func, Predicate - what's going on?(blogs.vertigo.com)

submitted by brandewinderbrandewinder(530) 3 years, 3 months ago

This post covers Action<T>, Func<T>, Predicate<T> and shows them in action. These delegates are generalization (abstractions?) over some common method signatures and you might find them very handy. Besides making LINQ possible, they should help you stop writing your own custom delegates and replace them with these generic ones. read more...

1 comment |category: |Views: 1757

tags: another