Jemm

Stories kicked by friends of Jemm

An Introduction to NuGet(codersbarn.com)

submitted by BognitBognit(2125) 18 days, 4 hours ago

Getting started with NuGet can be very confusing because there are really four parts to it with separate downloads. This post is an effort to make it easier to grasp and get started. read more...

add a comment |category: |Views: 2

tags: another

Open Tabs to the Right in Visual Studio 2011 Beta(www.codersbarn.com)

submitted by BognitBognit(2125) 1 month ago

I've previously shown how to set this in VS 2010. In the new VS 2011 beta, it's a little harder to find. read more...

add a comment |category: |Views: 2

tags: another

The Future of ASP.NET Web Forms(www.codersbarn.com)

submitted by BognitBognit(2125) 1 month, 9 days ago

We've all seen the growing popularity of ASP.NET MVC over recent years and the most common reaction is to want to play with it but when it comes time to making the switch, we often experience the "don't move my cheese" syndrome. read more...

add a comment |category: |Views: 17

tags: another

Entity framework and nhibernate too complex? Say hello to FluentData. (fluentdata.codeplex.com)

submitted by alessandrokicksalessandrokicks(195) 3 months, 8 days ago

Are you tired of fighting with overly complex ORMs such as Entity Framework and NHibernate? Are you tired of poorly generated SQL or having to change your business objects to work with your ORM? Do you miss the power and performance of ADO.NET and SQL, but not the manual tedious work? If so FluentData might be the framework for you. FluentData is a Micro ORM that makes it simple to select, insert, update and delete data in a database. It gives the developer the power of ADO.NET but with the convenience of an ORM. It has a simple to use fluent API that uses SQL - the best and most suitable language to query data, and SQL or fluent builders to insert, update and delete data. read more...

1 comment |category: |Views: 364

tags: another

Lucene.net - Ultra-fast search for MVC or Webforms(www.codeproject.com)

submitted by dpetersondpeterson(4397) 3 months, 26 days ago

Mikhail T. has put together an article showing how you can integrate the Java-based Apache Lucene project with your .Net based MVC or WebForms sites, giving you ultra-fast and slick search capabilities. read more...

add a comment |category: |Views: 432

tags: another

Open Tabs to the Right in Visual Studio 2010(www.codersbarn.com)

submitted by BognitBognit(2125) 4 months, 13 days ago

It really annoys me that files are opened in the tab bar in Visual Studio by default to the left. read more...

add a comment |category: |Views: 4

tags: another

Autocorrecting unknown actions using the Levenshtein distance(jclaes.blogspot.com)

submitted by JefClaesJefClaes(650) 4 months, 13 days ago

This weekend I prototyped an idea I had earlier this week: autocorrecting unknown actions in ASP.NET MVC. read more...

1 comment |category: |Views: 126

tags: another

Calling Console Application from Web Form(codersbarn.com)

submitted by BognitBognit(2125) 6 months, 16 days ago

To call the console app from the Web form code-behind we use the Process.Start method. We can avail of the ProcessStartInfo class to set up any properties in advance of making the process call. read more...

add a comment |category: |Views: 5

tags: another

Programming for the future of mobile(jclaes.blogspot.com)

submitted by JefClaesJefClaes(650) 6 months, 19 days ago

I have been working on something small on the side lately. I hardly have anything to show for it though, most of it is still being shaped in my head. Anyhow, a very important part of the front-end is built using jQuery mobile. Although the framework hasn't been released - release candidates are available though -, it's something you should start looking into today. Why? Because the browser is the future of mobile applications. With the Flash and Silverlight bombs that were dropped today, I am even mo... read more...

add a comment |category: |Views: 2

tags: another

Using the ToggleSwitch in WinRT/Metro (for C#) (devlicio.us)

submitted by rcashrcash(4149) 7 months, 1 day ago

One of the new user controls being released with WinRT/Metro is the ToggleSwitch which can be found in the Windows.UI.Xaml.Controls namespace. This post provides some good info on the new control and how to set its parameters. read more...

2 comments |category: |Views: 37

tags: another

An Xml Serializable PropertyBag Dictionary Class for .NET(www.west-wind.com)

submitted by diamondzdiamondz(75) 7 months, 20 days ago

How to create a PropertyBag object which you can serialize to XML. read more...

5 comments |category: |Views: 57

tags: another

ABMHO --A SYNTAX HIGHLIGHTER THAT RUNS ONLINE AND OFFLINE(blog.typps.com)

submitted by alessandrokicksalessandrokicks(195) 7 months, 25 days ago

The first stable release of Abmho is out. It is by no means the first or only syntax highlighter on the web. There are quite a few out there but the vast majority aren't usable. Abmho can mix languages within the same code snippet, allows you to style your code with live preview and many more features. Perhaps one of the most interesting feature is that it is a silverlight application that runs both on the web and optionally installable as an OOB application. read more...

1 comment |category: |Views: 14

tags: another

C# 5 PropertyChanged - No more magic strings!(www.robfe.com)

submitted by dpetersondpeterson(4397) 8 months, 6 days ago

Changes in C# 5 mean no more NotifyPropertyChanged("SomeVariable"), which is a common source of bugs. It also means we no longer have to suffer the performance degradation associated with using workarounds such as lambda's just for the sake of compile-time checking. From here on out, the compiler does the work for us. read more...

2 comments |category: |Views: 588

tags: another

3 ways to Sort in Descending order via lambdas(www.ginktage.com)

submitted by isenthilisenthil(2314) 8 months, 18 days ago

3 ways to Sort in Descending order via lambdas In C# , one can sort the List of Objects using Lambdas easily . Until now , i found the LINQ Query to be more easy to sort but after using the Lamba expression , i feel that the lambda expression can also be used effectively to sort in descending order . For example , i use the below class for the datapublic class Movie { public string MovieName { get; set; } public string Actor { get; set; } } read more...

3 comments |category: |Views: 34

tags: another

C# compiler uses Duck-Typing, not IEnumerable, for foreach loops(blogs.msdn.com)

submitted by dpetersondpeterson(4397) 8 months, 19 days ago

Turns out that according to this post, and the C# 1.0 specification, that foreach loops in C# do not use IEnumerable (as found in the documentation) but rather duck-typing. Not necessarily consequential to our every day programming lives, but interesting nonetheless. read more...

1 comment |category: |Views: 70

tags: another

Learning how to use Value Converters in Silverlight(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 8 months, 19 days ago

Taking a look at how to use and harness the power of Value Converters. A Value Converter (IValueConverter) allows for you to perform custom logic during Bind time in XAML based applications. With a value converter you can implement pretty much any type of complex logic you want (bool to visibility, changing styles, etc) at runtime and have this logic extracted away in a stand alone class. read more...

add a comment |category: |Views: 3

tags: another