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

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

Stories kicked by xtremebiz
30
kicks
published 2 months ago, submitted by latish 2 months ago

dotnetsurfers.com — 2 ways to clean up your Css by removing unused classes. read more...

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

33
kicks
published 2 months, 1 day ago, submitted by tiernano tiernano 2 months, 1 day ago

aws.typepad.com — This is big news! Amazon are to enable Windows Support on EC2. this will allow users to kick of Windows images for running SQL Servers, IIS instances and anything else (even HPC stuff) in the cloud! SWEET! read more...

Add a comment 2 comments | category: | Views: 329
tags: | tag it

25
kicks
published 2 months, 2 days ago, submitted by justin_etheredge justin_etheredge 2 months, 2 days ago

codethinked.com — Right now is honestly the most excited that I have ever been about the .net platform. With IronRuby and ASP.NET MVC on the horizon and jQuery being integrated as part of the official Microsoft development platform, I think that Microsoft is finally "getting" web development. read more...

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

28
kicks
published 2 months, 3 days ago, submitted by asteroid 2 months, 3 days ago

cio.com — Microsoft's development environment offers new tools for Agile development, software testing enhancements and improved support for cloud computing. Microsoft showed CIO.com a sneak peek, and the author invited developers to chime in with their feedback. read more...

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

23
kicks
published 2 months, 3 days ago, submitted by gt1329a gt1329a 2 months, 3 days ago

encosia.com — One example of how ASP.NET AJAX can conflict with jQuery's plugins, due to its modification of some JavaScript base types, and how to fix the problem in this particular case. read more...

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

33
kicks
published 2 months, 3 days ago, submitted by rstrahl rstrahl 2 months, 4 days ago

west-wind.com — I've posted Part 1 in a 2 part series on jQuery today. Part 1 covers the client side features of jQuery from the basics all the way through creating simple plugins and extending jQuery. This is a long article that discusses a host of the really useful features that jQuery brings to the table for client side Javascript development. Part 2 will then follow up with server side ASP.NET integration. read more...

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

24
kicks
published 2 months, 3 days ago, submitted by mosessaur mosessaur 2 months, 4 days ago

hanselman.com — Microsoft is going to make jQuery part of the official dev platform. JQuery will come with Visual Studio in the long term, and in the short term it'll ship with ASP.NET MVC. We'll also ship a version includes Intellisense in Visual Studio. read more...

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

94
kicks
published 2 months, 4 days ago, submitted by mosessaur mosessaur 2 months, 4 days ago

weblogs.asp.net — ScottGu announce that Microsoft will be shipping jQuery with Visual Studio going forward. We will distribute the jQuery JavaScript library as-is, and will not be forking or changing the source from the main jQuery branch. The files will continue to use and ship under the existing jQuery MIT license. read more...

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

38
kicks
published 2 months, 4 days ago, submitted by mosessaur mosessaur 2 months, 4 days ago

jquery.com — news today: Both Microsoft and Nokia are taking the major step of adopting jQuery as part of their official application development platform. Not only will they be using it for their corporate development but they will be providing it as a core piece of their platform for developers to build with. read more...

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

1
kicks
submitted by xtremebiz xtremebiz 3 months, 19 days ago

codeforeternity.com — We can use the ElementAt extension method of LINQ to return the element at a specified index (zero based) in a sequence. However the ElementAt extension method would throw the System.ArguementOutOfRangeException when the specified index is a negative value or not less than the size of the sequence. In such a scenario, we can use the ElementAtOrDefault extenion method which would return the default value of a type instead of throwing the System.ArguementOutOfRangeException. Read this article for code example (both in C# and VB.NET) with comments read more...

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

19
kicks
published 3 months, 19 days ago, submitted by docluv docluv 3 months, 21 days ago

crazeegeekchick.com — In my process of turning www.aspforblondes.com into www.crazeegeekchick.com I had some concerns regarding broken links, search engine rank etc. I decided to write an ASP.NET custom HTTP Module to achieve my goals. After reading tons of information about 301 permanent redirects. read more...

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

2
kicks
submitted by xtremebiz xtremebiz 6 months, 10 days ago

codeforeternity.com — I recently had to write a T-SQL function which cleans up all non numeric characters from a varchar variable and returns the int value of the remaining numeric characters. If no numeric characters exist, the function should return zero. I thought it would be nice to share this with you and I hope you find this useful ;-) Expected output of the function: PRINT dbo.GetIntFromVarchar('R1A2J3') -- returns 123 PRINT dbo.GetIntFromVarchar('COOL456CODER') -- returns 456 PRINT dbo.GetIntFromVarchar('789') -- returns 789 PRINT dbo.GetIntFromVarchar('GEEK') -- returns 0 read more...

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

1
kicks
submitted by xtremebiz xtremebiz 6 months, 12 days ago

codeforeternity.com — This post explains about the Single and SingleOrDefault extension methods of LINQ, possible exceptions which can be thrown, and provides code examples both in C# and VB.NET along with code comments. read more...

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

17
kicks
published 6 months, 13 days ago, submitted by shaharyr 6 months, 13 days ago

dev102.com — This is the fourth post in the series of programming job interview challenge. Today, I will provide the answer to job interview challenge #3, talk about readers answers (all of the comments are now approved) and give you a new challenge. So, lets get into business: read more...

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

45
kicks
published 6 months, 13 days ago, submitted by igoro 6 months, 14 days ago

igoro.com — Ever since I learned about LINQ, I keep discovering new ways to use it to improve my code. Every trick makes my code a little bit faster to write, and a little bit easier to read. This posting summarizes some of the tricks that I came across. I will show you how to use LINQ to: initialize an array, iterate over multiple arrays in a single loop, generate a random sequence, ... read more...

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

22
kicks
published 6 months, 13 days ago, submitted by janko janko 6 months, 15 days ago

hanselman.com — Over five years ago I posted Tips for a Successful MSFT Presentation. Yesterday I watched the video of my Mix Presentation all the way through. It's always very painful to hear one's own voice but it's even worse to watch yourself. I never listen to my podcast and I avoid watching myself. It's like watching a person in parallel universe and it inspires self-loathing. However, if you are someone who values continuous improvement - and I am - you need to do the uncomfortable. read more...

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

 

Sponsored Link: www.carlist.ie

Search:

Ads via The Lounge