Jemm

Stories kicked by friends of Jemm

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

submitted by dpetersondpeterson(3474) 10 days, 12 hours 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: 350

tags: another

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

submitted by BognitBognit(2110) 28 days, 11 hours 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: 3

tags: another

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

submitted by JefClaesJefClaes(541) 28 days, 13 hours 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: 122

tags: another

Calling Console Application from Web Form(codersbarn.com)

submitted by BognitBognit(2110) 3 months 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: 4

tags: another

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

submitted by JefClaesJefClaes(541) 3 months, 3 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(4144) 3 months, 17 days 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: 20

tags: another

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

submitted by diamondzdiamondz(65) 4 months, 4 days ago

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

5 comments |category: |Views: 48

tags: another

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

submitted by alessandrokicksalessandrokicks(170) 4 months, 9 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: 13

tags: another

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

submitted by dpetersondpeterson(3474) 4 months, 21 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: 572

tags: another

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

submitted by isenthilisenthil(2199) 5 months, 2 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(3474) 5 months, 3 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) 5 months, 3 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: 1

tags: another

Getting Started w/ NuGet(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 5 months, 13 days ago

Learning how to use the NuGet Package Management System. We will start off by looking at how to install NuGet inside of Visual Studio. We will then learn how to use NuGet to install/uninstall packages. We will end the episode by looking at how to create our first NuGet Package. read more...

add a comment |category: |Views: 4

tags: another

Working with Advanced Aspects with Postsharp (dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 5 months, 13 days ago

Taking a look at how to use the AOP (Aspect Orientated Programming) framework Postsharp. In this episode we will focus on how to use the OnMethodBoundry, MethodInterceptions, LocationInterception and EventInterception Aspects. We will look at how each of these can be used and how they can be used in conjuction with each other to build a better application. read more...

add a comment |category: |Views: 10

tags: another

Getting Started with AOP using Postsharp(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 5 months, 13 days ago

Taking a look at how to implemented AOP (Aspect Orientated Programming) with PostSharp. We will be using the Postsharp library in this episode and we will take a look at how to create our first Aspect as well as how to use the metadata with the aspect to provide real business value in your application. read more...

1 comment |category: |Views: 27

tags: another

Learning how to use Behaviors in Silverlight(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 5 months, 13 days ago

Taking a look at how to use and harness the power of Behaviors. A Behavior in Silverlight is a way to extend an existing UI element in order to add additional state or actions to it. We can create these Behaviors and attach them to pretty much any UI element you could hope for. read more...

add a comment |category: |Views: 0

tags: another