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

Stories recently tagged with 'software' Subscribe to this feed
1
kicks
submitted by hughesdo 9 days ago

dink.no-ip.info — RadPop is a free Caller ID monitor for on your windows computer. Apparently no one dug a Web Monitor so I found a more practical use for a very cool pop-up. I have added Caller ID monitoring to the RadPop application. There are plenty of additionally things I can think to add to this application but the really cool thing was I deployed this with one click deploy. So if anyone did install my application once they rerun the application the new revision will be installed automatically. read more...

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

1
kicks
submitted by Ravi.silicus 3 months, 13 days ago

silicusblogs.com — Who should be involved, how far you should go and when do you have to do Prototyping in a Software Development Project? read more...

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

1
kicks
submitted by Ravi.silicus 3 months, 13 days ago

silicusblogs.com — Tips and Techniques in User Interface Prototyping during Software Development read more...

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

1
kicks
submitted by Ravi.silicus 3 months, 13 days ago

silicusblogs.com — Tools and Technologies that can be used in Usability Engineering, prototyping during Software Development read more...

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

1
kicks
submitted by Ravi.silicus 3 months, 13 days ago

silicusblogs.com — This article addresses the needs of prototyping in Software Development , this will be the first part in the series of articles on Prototyping in Software Development. read more...

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

2
kicks
submitted by Ravi.silicus 3 months, 18 days ago

codebetter.com — Very good article and some good steps on Lean Software Development read more...

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

2
kicks
submitted by Ravi.silicus 3 months, 18 days ago

codebetter.com — Very good article and some good steps on Lean Software Development read more...

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

3
kicks
submitted by Ravi.silicus 3 months, 20 days ago

silicusblogs.com — I am going to focus this post to explore the process implementation capabilities and features of TFS. Let me start by sharing my understanding of a Process and then see how TFS can help me implement it. read more...

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

19
kicks
published 7 months, 2 days ago, submitted by adventurer 7 months, 2 days ago

devintelligence.com — The WPF Performance Suite is a set of performance profiling tools that allow you to analyze the runtime behavior of your WPF application. read more...

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

16
kicks
published 7 months, 7 days ago, submitted by adventurer 7 months, 8 days ago

devintelligence.com — Silverlight Spy will automatically pick up any Silverlight application embedded in the page and display it in the XAML Explorer read more...

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

4
kicks
submitted by gustavod gustavod 9 months, 5 days ago

duartes.org — A way to think about software development as evolution directed by users and technical quality. read more...

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

17
kicks
published 9 months, 12 days ago, submitted by gustavod gustavod 9 months, 12 days ago

duartes.org — When Richard Feynman investigated the Challenger disaster, he issued a brilliant report with many insights into the nature of engineering. These apply directly to modern software development. Not sure if this one is on topic - it's about general software engineering. read more...

Add a comment 4 comments | category: | Views: 6
tags: , , , , | tag it

2
kicks
submitted by crpietschmann crpietschmann 9 months, 13 days ago

microsoft.com — DreamSpark offers millions of students access to professional-grade software developer and designer tools. read more...

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

4
kicks
submitted by Jemm Jemm 9 months, 13 days ago

downloads.channel8.msdn.com — Microsoft DreamSpark enables students to download Microsoft developer and design tools at no charge. Now, for the first time, Microsoft is giving its valuable software developer and design tools directly to students worldwide at no charge! Visual Studio 2008 Pro, Expression Studio, Windows Server 2003, XNA GameStudio... read more...

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

5
kicks
submitted by animaonline animaonline 9 months, 18 days ago

softscenario.blogspot.com — Just starting off with LINQ, I've already found a strange behavior. In my SP, I have to select some blank columns, that used to exist in the table. Now, they're only there to stop old apps from crashing: Select '' as inst from footable This made Linq return only a cryptic error message: System.FormatException: String must be exactly one character long. at System.Data.Linq.DBConvert.ChangeType(Object obj, Type type) But when I replaced the '' in the SP with a ' ' (that is, added a blank space) - everything works. So it looks as if Linq is trying to type every column in the result, and if it's empty, it dies. Oh, and if you have a variable named @@foo in your script - I don't know why it was called @@foo, it just was - Linq will not be able to run it! It presumes that all variables are named @foo, which probably is the correct SQL, by the way. But - the error message, again, is not so helpful: The procedure expects the parameter "foo", which was not provided. read more...

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

5
kicks
submitted by animaonline animaonline 9 months, 18 days ago

softscenario.blogspot.com — When writing code that makes use of alot of unmanaged memory resources, all objects should be disposed of before exiting methods and such. The keyword using is often forgotten, and also sometimes seen as messy. example: using (Bitmap bitmap1 = new Bitmap(100, 100)) { Console.WriteLine("Width:{0}, Height:{1}", bitmap1.Width, bitmap1.Height); } should basically be the same as Bitmap bitmap1 = new Bitmap(100, 100) Console.WriteLine("Width:{0}, Height:{1}", bitmap1.Width, bitmap1.Height); bitmap1.Dispose(); shouldn't it? No, not really... The using-clause does a little more than this. Actually, my using-example is equivalent to the following block of code. Bitmap bitmap1 = new Bitmap(100, 100); try { Console.WriteLine("Width:{0}, Height:{1}", bitmap1.Width, Bitmap1.Height); } finally { if (bitmap1 != null) { bitmap1.Dispose(); } } Console.ReadLine(); Imagine writing nested using-clauses, and try writing the expanded code for that :) Using using really cleans up your code, and your memory. So use it! Edit: Oh, as Stian commented. Using should be used for all objects that implements the IDisposable interface. But remember - if you plan on implementing this interface on your own classes, you need to make sure it fully implements all the necessary methods for cleaning up. Otherwise it will all be to waste :) read more...

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

 

Sponsored Link: www.carlist.ie

Search:

Ads via The Lounge