daryllorette

Stories kicked by daryllorette

Alt.NET Podcast Episode 13: Ruby on Rails(altnetpodcast.com)

submitted by blowmageblowmage(455) 3 years, 4 months ago

Brian Eng and Jeff Cohen from the Softies on Rails blog, and James Avery discuss the Ruby on Rails web framework and what Alt.NET can learn from it. read more...

add a comment |category: |Views: 186

tags: another

What is Microsoft waiting for providing a decent path API?(codebetter.com)

submitted by johnsheehanjohnsheehan(4785) 3 years, 4 months ago

I was recently browsing the code source of Managed Extensibility Framework and realized that this future part of .NET 4, full of tricky and advanced ideas, was naively relying on strings to describe files and directories paths. It seems that the version 4 of .NET will miss the need for a descent path API. There is the class System.IO.Path but it is feature limited, full of flaws and pitfalls (to not say bugs) and it fosters users to encode their paths into raw strings. It seems to me that using strings to encode paths is as primitive as using String.IndexOf("<tag>") to parse some XML. read more...

1 comment |category: |Views: 262

tags: another

Compressing JS files as part of your build process(codebetter.com)

submitted by johnsheehanjohnsheehan(4785) 3 years, 4 months ago

Ideally, we want to develop using readable JavaScript files (even 3rd party files) and deploy compressed/obfuscated code. Our solution has simply been to apply a post-build task to our project. Here's what we did read more...

1 comment |category: |Views: 382

tags: another

Tired Of Working With Big Visual Studio Solutions?(davybrion.com)

submitted by DavyBrionDavyBrion(345) 3 years, 4 months ago

a simple trick to make working with big Visual Studio solutions much more bearable read more...

add a comment |category: |Views: 925

tags: another

ASP.NET 3.5 Service Pack 1 Wrox Blox (morewally.com)

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

Wally's book on the new features of ASP.NET 3.5 SP1 in now available for sale as PDF eBook. read more...

add a comment |category: |Views: 209

tags: another

Using JsonResult in ASP.NET MVC AJAX(nayyeri.net)

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

In ASP.NET MVC you can write action methods that return a variety of types to be used in your views to obtain data for AJAX interactions. Most common types are string and ActionResult, but there is also an option called JsonResult which returns its values as JSON serialized data. The returned data can be used easily in client-side as appropriate. read more...

add a comment |category: |Views: 586

tags: another

Raising Events the right way, the easy way, with an Extension Method(brianc.me)

submitted by briancbrianc(195) 3 years, 5 months ago

Raising events takes 3 lines of code. Let's follow the DRY principal and get that down to one line. Less noise, more action, very tastey. Merry Christmas. read more...

1 comment |category: |Views: 527

tags: another

BlogEngine.NET Backup Manager(blog.sb2.fr)

submitted by ethilikethilik(1855) 3 years, 5 months ago

A simple Backup Manager for BlogEngine.NET in order to perform some entire Weblog Backups. read more...

add a comment |category: |Views: 256

tags: another

Encosia Best of 2005, 5 most popular posts(encosia.com)

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

Reviewing Dave's stats for the year, you might think the only topic Dave wrote about is jQuery. Of the posts he has written in 2008, 80% of the most popular posts have been jQuery related. read more...

4 comments |category: |Views: 262

tags: another

Filtering List Items, The Old, The New and the Slick (dev102.com)

submitted by shaharyrshaharyr(4325) 3 years, 5 months ago

I was into filtering items lately and I have decided to write about some of the techniques out there read more...

add a comment |category: |Views: 263

tags: another

JavaScript And The rel Attribute(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 5 months ago

Working in JavaScript is one of my favorite things to do. I love how dynamic the language is and how powerful it can be. This programming dream is often turned into a nightmare by varying browser implementations, blatant disregard for accepted Web Standards (I’m looking at you IE), and a host of other odd things that can pop up. read more...

add a comment |category: |Views: 339

tags: another

Generic Repository(codebetter.com)

submitted by brandewinderbrandewinder(530) 3 years, 5 months ago

The purpose behind the repository pattern is to provide a layer of abstraction between your domain and data layer. For smaller projects, this typically isn't needed. However, larger projects can really benefit from a broker that specifically handles the back and forth between the two layers. With repositories your domain objects aren't burdened with infrastructure details and can therefore better focus on domain-specific behavior. read more...

add a comment |category: |Views: 1227

tags: another

Free Tool For Managed and Unmanaged Deadlock Detection (dev102.com)

submitted by shaharyrshaharyr(4325) 3 years, 5 months ago

Deadlocks are terribly difficult to find and even more difficult to debug. Debug Inspector is a free tool that allows you to view the call stacks of multiple threads at the same time, plugs in to the internals of the CLR and automatically detects deadlocks. read more...

add a comment |category: |Views: 392

tags: another

Improve your jQuery - 25 excellent tips(tvidesign.co.uk)

submitted by beckelmwbeckelmw(2755) 3 years, 5 months ago

jQuery is awesome. I've been using it for about a year now and although I was impressed to begin with I'm liking it more and more the longer I use it and the more I find out about it's inner workings. I'd call myself an "intermediate" jQuery user and I thought some others out there could benefit from all the little tips, tricks and techniques I've learned over the past year. The article also ended up being a lot longer than I thought it was going to be so I'll start with a table of contents so you can skip to the bits you're interested in. read more...

2 comments |category: |Views: 776

tags: another