darwyn

Stories kicked by friends of darwyn

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

submitted by KodefuGuruKodefuGuru(2818) 1 day, 18 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, 15 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

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, 18 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, 18 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, 21 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

Metro apps – a lot of icons are available out of the box !(www.jonathanantoine.com)

submitted by jmix90jmix90(570) 2 months, 22 days ago

In Metro apps, the Metro design is everywhere and that’s pretty cool ! When you start an application, you want and need it to be compliant with this theme and one main part of it are icons. What you may not know is that there is already a lot of icons available for you out of the box in any Metro app. Let’s discover them ! read more...

1 comment |category: |Views: 289

tags: another

INotifyPropertyChanged, The .NET 4.5 Way(danrigby.com)

submitted by CodeM0nkeyCodeM0nkey(96) 2 months, 25 days ago

Included in the .NET 4.5 Beta comes a handy new feature, the CallerMemberName attribute. It is one of three new Caller Information attributes that have been added in this .NET Framework release. With this new functionality we can code such things a logging & tracing routines and INotifyPropertyChanged implementations without having to use string literals, slow reflection code, complex expression tree logic, or code weaving. read more...

1 comment |category: |Views: 467

tags: another

JustCode and QUnit means easy JavaScript unit testing in Visual Studio(blogs.telerik.com)

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

As we showed in the Jasmine blog postJustCode provides seamless integration of JavaScript unit testing inside Visual Studio. JustCode supports two of the most widely used JavaScript unit testing frameworks – Jasmine and QUnit, allowing you to leverage the one that better fits your needs or both. Today’s post covers the support of QUnit JavaScript unit tests in JustCode. read more...

add a comment |category: |Views: 130

tags: another