DotNetKick.com is an open-source project. Please report any bugs and let us know your great suggestions. Currently running svn revision 620 (rss)

Kick Spy!, Kick Zeitgeist and Kick Widgets

momo Subscribe to this feed
momo
Profile Kicked Submitted Comments Tags Friends Kicked By Friends Submitted By Friends

Stories kicked by momo
2
kicks
submitted by phatboyslim 1 month, 14 days ago

hanselman.com — Remember last week when I mentioned the Microsoft Web Platform Installer? It's an bootstrapper that gets you setup for free web development, all in a single application. It'll setup IIS7, get you Visual Studio, SQL Server, .NET, etc. Cool. And there was much rejoicing (except XP folks, sorry.) read more...

Add a comment add a comment | category: | Views: 7
tags: | tag it

3
kicks
submitted by Klaus Klaus 1 month, 17 days ago

tellingmachine.com — Walter and I gave a presentation at the WonderWorld 2008 conference in Las Vegas last week. To get many people exited about our talk, we asked customers what they think the coolest thing on the planet is. They thought first that this is a trick question, but we didn't keep them in the dark for too long. The coolest thing on the planet is: PowerShell read more...

Add a comment add a comment | category: | Views: 9
tags: | tag it

14
kicks
published 3 months, 17 days ago, submitted by EtienneTremblay EtienneTremblay 3 months, 18 days ago

blog.lavablast.com — BlogEngine.net 1.3/1.4 supports user roles. But we can't seem to be able to make it mandatory for users to sign in to see blog posts. That's not something you usually want on a public blog, but maybe for a corporate blog. read more...

Add a comment add a comment | category: | Views: 72
tags: , | tag it

3
kicks
submitted by Klaus Klaus 3 months, 18 days ago

tellingmachine.com — PowerShell provides the += operator to add one hash table to another hash table. By default this operation will result in an error, if both hash tables have at least one key that is common in both collections. In some cases you may want to have a more granular control. For example, you don't want to get an error, if not only the key, but also the value is common in both collections. read more...

Add a comment add a comment | category: | Views: 7
tags: | tag it

2
kicks
submitted by charlesj 3 months, 18 days ago

joshuamcharles.com — Though this is called a console for an ASP.NET MVC application, the author shows how to compile the Ruby.Console project to interact with any Class Library. read more...

Add a comment add a comment | category: | Views: 1
| tag it

4
kicks
submitted by ideoma ideoma 3 months, 18 days ago

devx.com — Nice and step by step article about WPF development read more...

tags: | tag it

10
kicks
published 3 months, 18 days ago, submitted by zigamorph zigamorph 3 months, 18 days ago

coderjournal.com — A couple days ago I came across a breaking change in ASP.NET MVC PR4 that wasn’t reported. The breaking change is that defaults from routes are no longer used as defaults for parameters in the action method, if no appropriate parameter is found in the request. So I decided to take this obvious disapointment and turn it in to something I have been thinking about for a long time, but never really had the motivation to impliment. In .NET you are allowed to add attributes to anything that can be defined via reflection, including classes, interfaces, structures, and even return types and parameters of methods. read more...

Add a comment add a comment | category: | Views: 103
tags: | tag it

23
kicks
published 3 months, 24 days ago, submitted by charlesj 3 months, 25 days ago

joshuamcharles.com — My big project for the summer has been the creation of a content management system for my job. Due to deployment restrictions, I was forced to use the .NET platform for development. After hearing rumors of .NET running Rails via IronRuby, I jumped at the chance to write a Rails application that could be deployed to IIS on Windows. However, after getting a prototype running, I discovered that this would be infeasible for the time table I was looking at. IronRuby simply would not be ready on time. My second choice, then, was the new ASP.NET MVC framework. read more...

Add a comment add a comment | category: | Views: 426
tags: | tag it

17
kicks
published 4 months, 2 days ago, submitted by Vort3X 4 months, 3 days ago

objectreference.net — Recently I’ve been having problems as the site has gotten more popular I’ve had comments and even posts disappearing randomly, sometimes re-appearing you might have experienced this yourself either on my site or in your own so after divulging into the code to see what was happening found something I thought was shocking. When you add a comment, or Rating, Approving and Remove Comments this is what BlogEngine DbBlogProvider actually does... read more...

Add a comment add a comment | category: | Views: 236
tags: | tag it

4
kicks
submitted by Klaus Klaus 4 months, 6 days ago

tellingmachine.com — Every now and then I need to investigate bugs that get exposed because countable "things" are less or more than expected. In my special case I was dealing with an application that manages subscription handles to memory registers of programmable logic controllers (PLC). These programs are called Data Access Servers. Occasionally we get calls form customers reporting that the number of handles is less, or sometimes more than expected. The first step to debug this situation is to find out, which handles are missing or which ones are duplicates. This blog post describes how PowerShell's Compare-Object cmdlet makes this task, which used to be a pain in the "peep" now a piece of cake. read more...

Add a comment add a comment | category: | Views: 4
tags: | tag it

35
kicks
published 4 months, 6 days ago, submitted by GOEran GOEran 4 months, 6 days ago

blog.goeran.no — jQuery plugins for the ASP.NET MVC framework read more...

Add a comment 1 comment | category: | Views: 510
tags: , , , , | tag it

13
kicks
published 4 months, 6 days ago, submitted by dengar007 dengar007 4 months, 6 days ago

codethinked.com — Part 4 in a multi-part series on learning Ruby using IronRuby and C#. Justin continues his series using familiar C# code to explain Ruby programming concepts. In this post, he goes over additional functionality of loops and ranges. read more...

Add a comment add a comment | category: | Views: 118
tags: , , , | tag it

18
kicks
published 4 months, 6 days ago, submitted by Lord 4 months, 6 days ago

ayende.com — A few hours ago I completed a code review of an application using NHibernate. This is not the first time I am doing such a thing, of course, and I noticed that there are quite a few areas where I tend to have comments in such code reviews. The following is based on several such code bases that I went through, and contains a partial list of things that you need to watch for. read more...

Add a comment add a comment | category: | Views: 296
tags: , , | tag it

19
kicks
published 4 months, 6 days ago, submitted by shaharyr 4 months, 7 days ago

dev102.com — Sometimes we are using the same patterns of code over and over again. Those of us who are lazy (but smart) will create their own code snippets, if you are not familiar with this subject, read about how to create code snippets easily. But what if we need to create lots of classes with the same pattern? Code snippets may not be enough because they lack of some functionality which is needed to achieve our goal. read more...

Add a comment add a comment | category: | Views: 275
tags: | tag it

13
kicks
published 4 months, 7 days ago, submitted by dengar007 dengar007 4 months, 7 days ago

codethinked.com — Part 3 in a multi-part series on learning Ruby using IronRuby and C#. Justin continues his series using familiar C# code to explain Ruby programming concepts. In this post, he goes over static methods (class methods in Ruby), parameters, conditionals and loops. read more...

Add a comment add a comment | category: | Views: 88
tags: , , , | tag it

20
kicks
published 4 months, 7 days ago, submitted by Jemm Jemm 4 months, 7 days ago

haacked.com — One principle to follow when writing a unit test is that a unit test should ideally not cross boundaries. read more...

Add a comment add a comment | category: | Views: 180
tags: , , | tag it

 

Sponsored Link: www.carlist.ie

Search:

Ads via The Lounge