t3mujin

Stories kicked by t3mujin

Migrating a Visual Studio 2005 Guidance Package to Visual Studio 2010 (www.joaoalmeida.info)

submitted by t3mujint3mujin(15) 1 year, 3 months ago

A quick post on how to put your Guidance extensions build on VS2005 working on Visual Studio 2010 read more...

add a comment |category: |Views: 0

tags: another

Ten Caching mistakes that break your app(omaralzabir.com)

submitted by oazabiroazabir(1805) 1 year, 7 months ago

Caching frequently used objects, that are expensive to fetch from the source, makes application perform faster under high load. It helps scale an application under concurrent requests. But some hard to notice mistakes can lead the application to suffer under high load, let alone making it perform better, especially when you are using distributed caching where there’s separate cache server or cache application that stores the items. Moreover, code that works fine using in-memory cache can fail when the cache is made out-of-process. Here I will show you some common distributed caching mistakes that will help you make better decision when to cache and when not to cache. read more...

add a comment |category: |Views: 189

tags: another

Thoughts on ASP.NET MVP – A Framework That Wants To Be MVC(blog.wekeroad.com)

submitted by simonechsimonech(10.1k) 2 years, 4 months ago

Rob Conery discusses again why ASP.NET MVC matters now, and how (and why) the concept of productivity changed over the years. read more...

3 comments |category: |Views: 391

tags: another

Silverlight 4 – Review of all the Cool New Features(blogs.msdn.com)

submitted by jbarnesjbarnes(3479) 2 years, 5 months ago

Check-out this comprehensive blog post by Tim Heuer – who outlines all the cool new SL4 features announced at the PDC in November - with links to videos and code samples to help you get started with each new capability. Here is a link to his complete blog post: http://timheuer.com/blog/archive/2009/11/18/whats-new-in-silverlight-4-complete-guide-new-features.aspx read more...

1 comment |category: |Views: 408

tags: another

A New Look for Visual Studio 2010!(blogs.msdn.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 3 months ago

At the PDC and TechEd EMEA last year we described our new editor support built on the WPF technology in .NET Framework 4.0. Today I’m happy to reveal the new UI for Visual Studio, also built on WPF: read more...

add a comment |category: |Views: 1214

tags: another

ASP.NET MVC Action Filter for Localized Sites(iansuttle.com)

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

If you've got or want a site which supports multiple cultures using ASP.NET you need to be familiar with setting CultureInfo values for the current thread and UI. This post details an ASP.NET MVC Action Filter to assist with localized site development. read more...

add a comment |category: |Views: 237

tags: another

Add Twitter to your blog the right way with caching(james.newtonking.com)

submitted by JamesNKJamesNK(3020) 3 years, 3 months ago

Twitter offers a JavaScript API to add Twitter to your blog or other website. This post looks at the various approaches to using Twitter's JavaScript API and how to improve user experience by caching Twitter content client side. read more...

add a comment |category: |Views: 144

tags: another

ASP.NET MVC 1.0 Release Candidate Now Available(weblogs.asp.net)

submitted by sharplifesharplife(4570) 3 years, 3 months ago

Finally Scott Guthrie announced ASP.NET MVC 1.0 RC. Check it out. read more...

2 comments |category: |Views: 239

tags: another

ASP.Net MVC Custom Error Pages(genericerror.com)

submitted by GenericErrorGenericError(215) 3 years, 4 months ago

I have recently spent quite a bit of time getting my ASP.Net MVC application to display errors to the user the way I want and this post outlines the steps I took to get there. This includes general application errors, page not found errors and stupid user errors. read more...

add a comment |category: |Views: 1468

tags: another

20 People .NET Developers Should Follow on Twitter(webdevdotnet.blogspot.com)

submitted by elijahmanorelijahmanor(1448) 3 years, 5 months ago

If you are to follow some .NET people on Twitter... here are the top 20 that you should follow! read more...

3 comments |category: |Views: 540

tags: another

Subversion Support Comes to CodePlex… Sorta’(stevenharman.net)

submitted by usshermussherm(5285) 3 years, 8 months ago

A little publicized feature lets you use Subversion to access project hosted on CodePlex - without the need to run SvnBridge locally! read more...

3 comments |category: |Views: 251

tags: another

Unity - Dependency Injection and Inversion of Control Container(dotnethitman.spaces.live.com)

submitted by misbaharefinmisbaharefin(845) 3 years, 8 months ago

Dependency injection is a programming technique to reduce component coupling. Dependency injection is also commonly known as “inversion of control” or IoC or sometimes as The Hollywood Principle - "Don’t call us, we’ll call you”. The goal of dependency injection is to separate the concerns of how a dependency is obtained from the core concerns of a boundary. This improves reusability by enabling components to be supplied with dependencies which may vary depending on context. read more...

add a comment |category: |Views: 368

tags: another

ASP.NET MVC P5 released on Codeplex(codeclimber.net.nz)

submitted by simonechsimonech(10.1k) 3 years, 8 months ago

Keeping on with the 6 weeks release plan, the ASP.NET MVC team quietly release P5 of ASP.NET MVC on Codeplex. read more...

add a comment |category: |Views: 307

tags: another

Top 10 Things That Annoy Programmers(kevinwilliampang.com)

submitted by kpanghmckpanghmc(2055) 3 years, 8 months ago

Programmers all have their personal pet peeves. Whether it's scope creep, Hungarian notation, or smelly coworkers, there are certain nuisances that we must put up with in our line of work. The following is a list of the top 10 things that annoy programmers, compiled from the results of my recent question on StackOverflow along with some of my own experiences as a programmer: read more...

1 comment |category: |Views: 946

tags: another

ASP.NET Myths Busted(mikeborozdin.com)

submitted by MikeBorozdinMikeBorozdin(1146) 3 years, 9 months ago

Having read a great variety of forum and blog posts, I met a lot of misconceptions about ASP.NET that definitely made people to turn away from ASP.NET. I won't argue whether ASP.NET is better than PHP (or Ruby on Rails) or not, instead I'll try to bust those myths. read more...

add a comment |category: |Views: 708

tags: another

Bad advice on exceptions from Joel(littletutorials.com)

submitted by contourcontour(490) 3 years, 9 months ago

Starting from some comments on my exception handling series of articles I run into a couple of blogs pointing to this post on joelonsoftware.com. I think this is the worst advice on exception handling I have ever read, sorry Joel. I know this is an old post, I know Joel is entitled to his own opinion and I know he has the right to write his code as he sees fit. But as an opinion leader he influences others. read more...

add a comment |category: |Views: 606

tags: another