ntloyer

Stories kicked by friends of ntloyer

How I Would Design a Programming Degree(www.kodefuguru.com)

submitted by KodefuGuruKodefuGuru(2818) 1 day, 23 hours ago

Yesterday, I attended ECPI Columbia’s Spring Advisory Board meeting. I was involved in the panel discussion regarding their IT degrees, and I viewed it as an opportunity to explain what I consider lacking in developer education. read more...

add a comment |category: |Views: 3

tags: another

Post-increment Operator and Precedence(www.kodefuguru.com)

submitted by KodefuGuruKodefuGuru(2818) 10 days, 21 hours ago

int i = 0; i = i++ + i--; Console.Write(i); What is written to the console? read more...

2 comments |category: |Views: 143

tags: another

An Introduction to NuGet(codersbarn.com)

submitted by BognitBognit(2125) 16 days, 23 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) 29 days, 4 hours 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, 8 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

Telerik Report Designer Review(blog.falafel.com)

submitted by KodefuGuruKodefuGuru(2818) 1 month, 17 days ago

Users in the Telerik Reporting Forums have been clamoring for a Stand-Alone Report Designer for a long time now. I’ve been working with Telerik Reporting for the past few years, which means I have spent my share of time researching issues in the forum. I have seen several posts by users asking for a Report Designer that doesn’t require Vi... read more...

add a comment |category: |Views: 14

tags: another

From Legacy to Dependency Injection(blogs.telerik.com)

submitted by KodefuGuruKodefuGuru(2818) 1 month, 21 days ago

We’ve all encountered tightly-bound code, and our first instinct is to correct it. However, there are only so many hours in a sprint, and it’s not always convenient to go on a large refactoring spree when the backlog is filling up. With JustMock, you can still ensure the code works, and it will set you up for the cleaning that will take place at a ... read more...

add a comment |category: |Views: 266

tags: another

Refactoring PagedResult(www.kodefuguru.com)

submitted by KodefuGuruKodefuGuru(2818) 1 month, 23 days ago

One of my favorite frameworks to tinker with is Kigg. Inside it, I found a generic PagedResult class that appeared as though it could use a little touching up... read more...

add a comment |category: |Views: 69

tags: another

Telerik JustCode Extension Improvements(blogs.telerik.com)

submitted by KodefuGuruKodefuGuru(2818) 1 month, 25 days ago

The Telerik JustCode 2012 Q1 service pack has been released, and with it comes improvements to help you begin writing JustCode extensions. read more...

add a comment |category: |Views: 2

tags: another

Telerik XAML Controls and the VS11 Beta Release (blogs.telerik.com)

submitted by KodefuGuruKodefuGuru(2818) 2 months, 6 days ago

Here’s a quick update on everything related to the Visual Studio 11 Beta Release. For those eager to use our controls in VS11 Beta, we have good news for you – coming on March 21st, 2012 we officially roll out Service Pack 1 for Silverlight and WPF which will include limited support for VS11 Beta. Like many Beta products, we have discovered an issue with our XAML controls being automatically added to the ToolBox. We have alerted Microsoft of the issue and they are working to resolve them in the Visual Studio 11 RC. But for the time-being, we have a work-around included below for those of you eager to get a head start on VS11. read more...

add a comment |category: |Views: 3

tags: another

Performance best practices for Metro style apps using JavaScript(msdn.microsoft.com)

submitted by KodefuGuruKodefuGuru(2818) 2 months, 17 days ago

An app's performance has a huge impact on the user's experience. Smooth scrolling and panning, efficient animations, fast launch times, and general responsiveness help create a good user experience. Given its impact and the variety of areas it affects, we recommend that you design for performance early to avoid issues down the road. Here we explain how to design for common problem areas within apps. read more...

add a comment |category: |Views: 12

tags: another

JustCode Visual Studio 11 Beta Support(blogs.telerik.com)

submitted by KodefuGuruKodefuGuru(2818) 2 months, 17 days ago

Microsoft recently released the new Visual Studio 11 Beta. The JustCode team has been working hard, and we have already published an internal build with support for Visual Studio 11. You can download it directly from your account. Feel free to give it a try, and please keep in mind that VS11 is in beta and JustCode support is still experimental. Some glitches are to be expected. read more...

add a comment |category: |Views: 1

tags: another

Replace Switch Statements with Dictionary and Func<>(www.chrissurfleet.co.uk)

submitted by csurfleetcsurfleet(211) 2 months, 18 days ago

Continuing with the general theme of Func<>, Action<> and generics here is a nice little trick to replace long but simple switch statements with a generic dictionary and a Func statement. read more...

3 comments |category: |Views: 631

tags: another

Creating a Telerik JustCode Code Marker Extension(www.kodefuguru.com)

submitted by KodefuGuruKodefuGuru(2818) 2 months, 19 days ago

Telerik JustCode, a code analysis and productivity tool, has opened its API for developers to create their own extensions. In this article, I am going to describe how to write an extension that will display a warning if there are too many variables in the class. The common language runtime stores values in a process registers rather than memory through a process known as enregistering. However, there is a limit of 64 variables to enable this optimization. read more...

add a comment |category: |Views: 4

tags: another

Simplify Session and ViewState Access With a Helper Method and Func<>(www.chrissurfleet.co.uk)

submitted by csurfleetcsurfleet(211) 2 months, 19 days ago

I started thinking of the many uses I’ve found for Action and Func. Cue a mini-series of posts on easy tricks you can do with them! First up – using generics and Func to reduce endless lines of viewstate and session code. read more...

add a comment |category: |Views: 179

tags: another

I love Telerik JustMock and ASP.NET MVC(omerc.blogspot.com)

submitted by KodefuGuruKodefuGuru(2818) 2 months, 22 days ago

Omer Cansizoglu describes just why he loves using Telerik JustMock with ASP.NET MVC. read more...

add a comment |category: |Views: 134

tags: another