xtremebiz

Stories kicked by xtremebiz

A fluent C# library for Twitter(dimebrain.com)

submitted by dcrennadcrenna(1355) 3 years, 4 months ago

This C# library allows you to compose queries to Twitter easily, as well as serialize responses into data classes, make asynchronous calls, and perform caching and URL shortening automatically. It covers 100% of the Twitter API. read more...

1 comment |category: |Views: 445

tags: another

The Future of .NET Languages(developerfusion.com)

submitted by mghaouimghaoui(340) 3 years, 4 months ago

Wondered why Microsoft always seems to release different language features for each language? Discover how .NET 4.0 will reduce the disparity between C# and VB.NET with some great new features for both languages, plus a new dynamic language runtime and new functional and parallel programming languages. read more...

add a comment |category: |Views: 565

tags: another

Checking username availability with jQuery (screencast)(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 3 years, 4 months ago

Abstract: "This screencast explains how to use jQuery and the ASP.NET MVC framework to quickly add a username availability checker to a user registration page." read more...

add a comment |category: |Views: 242

tags: another

Why Windows 7 Will Save Microsoft(chris123nt.com)

submitted by joseguiajoseguia(197) 3 years, 4 months ago

I was doing some thinking over the past few weeks and I came to a realization. Windows 7, with all of it’s improvements in performance, new features, and more streamlined development process, will actually save Microsoft and redeem them from the whole Vista crash. So I decided to write up WHY Windows 7 will tromp every previous Windows version and why we should pay close attention to it. read more...

1 comment |category: |Views: 930

tags: another

Lesser Known ASP.NET Performance Tips (geekswithblogs.net)

submitted by RhythmAddictRhythmAddict(440) 3 years, 4 months ago

A small collection of less-popular ASP.NET Performance Tips. read more...

2 comments |category: |Views: 833

tags: another

Removing unused CSS Classes from your web application(dotnetsurfers.com)

submitted by latishlatish(470) 3 years, 7 months ago

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

1 comment |category: |Views: 1155

tags: another

Windows comming soon to Amazon EC2(aws.typepad.com)

submitted by tiernanotiernano(1674) 3 years, 7 months ago

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

2 comments |category: |Views: 332

tags: another

$("Microsoft").append("excitement");(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 7 months ago

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 |category: |Views: 302

tags: another

Microsoft Announces Visual Studio 2010. Developers Respond.(cio.com)

submitted by asteroidasteroid(445) 3 years, 7 months ago

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

4 comments |category: |Views: 861

tags: another

Avoid this tricky conflict between ASP.NET AJAX and jQuery(encosia.com)

submitted by gt1329agt1329a(7849) 3 years, 7 months ago

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 |category: |Views: 300

tags: another

Introduction to jQuery Article posted(west-wind.com)

submitted by rstrahlrstrahl(7226) 3 years, 7 months ago

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

1 comment |category: |Views: 340

tags: another

jQuery to ship with ASP.NET MVC and Visual Studio(hanselman.com)

submitted by mosessaurmosessaur(5424) 3 years, 7 months ago

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 |category: |Views: 140

tags: another

jQuery and Microsoft(weblogs.asp.net)

submitted by mosessaurmosessaur(5424) 3 years, 7 months ago

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

1 comment |category: |Views: 380

tags: another

jQuery, Microsoft, and Nokia(jquery.com)

submitted by mosessaurmosessaur(5424) 3 years, 7 months ago

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

3 comments |category: |Views: 177

tags: another

LINQ ElementAt and ElementAtOrDefault(codeforeternity.com)

submitted by xtremebizxtremebiz(575) 3 years, 9 months ago

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 |category: |Views: 79

tags: another

Keep Your Link-Juice by Using a Custom HTTP Module for 301 Redirects (crazeegeekchick.com)

submitted by docluvdocluv(1575) 3 years, 9 months ago

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 |category: |Views: 207

tags: another