idsln

Stories submitted by friends of idsln

jQuery Code Snippets for Visual Studio(johnnycoder.com)

submitted by johnsheehanjohnsheehan(4785) 1 year, 9 months ago

Ben Griswold gives an overview of working with the jQuery Snippets for Visual Studio 2010, including how to get them to work with ReSharper read more...

add a comment |category: |Views: 13

tags: another

VS2010 Built-in ASP.NET, HTML, JavaScript Code Snippets Cheat Sheet(john-sheehan.com)

submitted by johnsheehanjohnsheehan(4785) 1 year, 11 months ago

Visual Studio 2010 added support for HTML, JavaScript and ASP.NET code snippets. Here's a handy cheat sheet that lists out all of the new ones included in VS2010. read more...

add a comment |category: |Views: 61

tags: another

Dropbox API and RestSharp for a C# developer(dkdevelopment.net)

submitted by johnsheehanjohnsheehan(4785) 2 years ago

How to use the DropBox API with RestSharp read more...

add a comment |category: |Views: 747

tags: another

Build a group SMS app with ASP.NET MVC(blog.twilio.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 1 month ago

A quick walkthrough on how to build a group SMS application using Twilio and ASP.NET MVC. read more...

add a comment |category: |Views: 27

tags: another

Visual Studio 2010 and .NET Framework 4 RC Now Available(blogs.msdn.com)

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

Today, we are making available the Release Candidate (RC) for Visual Studio 2010 and .NET Framework 4 to all MSDN subscribers. The RC will be made available to the world on Wednesday, February 10th. The RC includes a go-live license for people who want to deploy in their production environment. read more...

add a comment |category: |Views: 217

tags: another

NoSQL – A Practical Approach, Part 1(blog.wekeroad.com)

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

In my last post I took a look at possible approaches to using NoSQL and Reporting, and many people wanted to see what this might look like in practice. In part one, below, I’ll show you ways to work with a NoSQL solution (in this case DB4O) in ways that you will find pretty familiar. I’ll also show you the freedom you can have as a developer when you stop thinking relationally. read more...

add a comment |category: |Views: 68

tags: another

Reporting in NoSQL(blog.wekeroad.com)

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

One question that comes up a lot in conversation, however, is “dude what about reporting – you can’t do that with NoSQL very well now can ya?” and the answer is “yes, correct. You can’t”. As with all things programming: right tool for the right job. read more...

add a comment |category: |Views: 311

tags: another

ASP.NET MVC 2 RC 2 Released(haacked.com)

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

After receiving feedback from our last release candidate back in December, we decided it would be prudent to have one more release candidate that incorporated the feedback. You can read the release notes for everything that changed, there’s not a whole lot. read more...

add a comment |category: |Views: 227

tags: another

Editing a variable length list, ASP.NET MVC 2-style(blog.codeville.net)

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

A while back I posted about a way of editing a list of items where the user can add or remove as many items as they want. Tim Scott later provided some helpers to make the code neater. Now, I find myself making use of this technique so often that I thought it would be worthwhile providing an update to show how you can do it even more easily with ASP.NET MVC 2 because of its strongly-typed and templated input helpers. read more...

add a comment |category: |Views: 19

tags: another

Pumping 'Iron' for JavaScript(dotnet.dzone.com)

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

The newest member of the "Iron" family, IronJS, is an ECMAScript (JavaScript) implementation built on top of the .NET Dynamic Language Runtime (DLR). read more...

add a comment |category: |Views: 3

tags: another

URL Routing in ASP.NET 4.0(www.4guysfromrolla.com)

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

In the .NET Framework 3.5 SP1, Microsoft introduced ASP.NET Routing, which decouples the URL of a resource from the physical file on the web server. With ASP.NET Routing you, the developer, define routing rules map route patterns to a class that generates the content. For example, you might indicate that the URL Categories/CategoryName maps to a class that takes the CategoryName and generates HTML that lists that category's products in a grid. With such a mapping, users could view products for the Beverages category by visiting www.yoursite.com/Categories/Beverages. read more...

add a comment |category: |Views: 10

tags: another

MVC or WebForms: It's more about client side vs server side(codebetter.com)

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

Scott Guthrie has posted on the growing debate over Webforms vs. MVC, a debate that seems to be raging everywhere (although there is more that one MVC framework out there too). I agree with Scott's point about the nature of technical debates, and the acceptance that there are different schools of thought. However, that does not always imply that all schools are equally good solutions to a given problem. read more...

add a comment |category: |Views: 13

tags: another

Simple Query Results Caching with EF4(blogs.msdn.com)

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

In this post I’ll use the solution we put together for this customer to illustrate a few things about the EF and another interesting feature or two added to .Net 4. This is NOT a comprehensive, general purpose caching solution. That’s something which is decidedly beyond the scope of a couple blog posts and that the EF team will look at for a future release. For this customers’ particular scenario, though, the solution we’re going to look at was very effective. read more...

add a comment |category: |Views: 149

tags: another

Beyond web.config(codebetter.com)

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

I recently needed a configuration mechanism which would detect changes without requiring an application domain restart. I also wanted to move away from XML. This is what I came up with (and hopefully I'll get some helpful feedback). read more...

add a comment |category: |Views: 15

tags: another

NHibernate new feature: Lazy Properties(ayende.com)

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

This feature is now available on the NHibernate trunk. read more...

add a comment |category: |Views: 9

tags: another

Extensible Output Caching with ASP.NET 4 (VS 2010 and .NET 4.0 Series)(weblogs.asp.net)

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

Today’s post covers some of the output caching extensibility improvements being made to ASP.NET 4. These can be used by all ASP.NET 4 applications – including those built using both ASP.NET Web Forms and ASP.NET MVC. read more...

add a comment |category: |Views: 5

tags: another