Pakl

Stories kicked by Pakl

Simple hit test a polygon(developingfor.net)

submitted by PaklPakl(120) 2 years, 8 months ago

A simple Polygon class that provides among other features a method for hit testing. read more...

add a comment |category: |Views: 158

tags: another

Crack.NET - A runtime debugging and scripting tool for .NET(cracknetproject.com)

submitted by JoshSmithJoshSmith(215) 3 years, 7 months ago

Crack.NET is a runtime debugging and scripting tool that gives you access to the internals of any .NET desktop application running on your computer. If you love Snoop and Mole for Visual Studio, you’ll love Crack.NET, too. Crack.NET allows you to “walk” the managed heap of another .NET application, inspect all kinds of values on objects, and even manipulate those objects via IronPython scripts. read more...

3 comments |category: |Views: 505

tags: another

ShaderPad - WPF ShaderEffects Workbench (rakeshravuri.blogspot.com)

submitted by rakeerakee(225) 3 years, 9 months ago

ShaderPad is a application like XamlPad / LinqPad , it is meant to server as WPF ShaderEffects Workbench. The ShaderEffect is a PixelShader based Effect that an be applied to any UIElement in WPF. This feature is available only in .NET 3.5 SP1 . Download it from codeplex read more...

add a comment |category: |Views: 171

tags: another

What a developer needs from their manager(ytechie.com)

submitted by SuperJasonSuperJason(2740) 3 years, 11 months ago

I've a read a lot of articles talking about what it takes to be a good development manager. There are also articles about what makes a good developer. I thought it would be a good idea to describe what a developer needs from their manager. read more...

3 comments |category: |Views: 495

tags: another

Scrum Explained in 5 Minutes(softhouse.se)

submitted by powerrushpowerrush(3873) 3 years, 11 months ago

PDF entitled "Scrum in Five Minutes" from http://www.softhouse.se/ read more...

add a comment |category: |Views: 1011

tags: another

Strongly Typed Property Names(paulstovell.com)

submitted by PaklPakl(120) 4 years ago

Paul Stovell shows an easy way how you can get the property name as a string, so you can use it in a PropertyChangedEvent without having to 'hard-code' it. This solution will not screw up your PropertyChangedEvents after refactoring a name of a property. check it out read more...

add a comment |category: |Views: 41

tags: another

when (not) to use the goto keyword(dotnettoad.com)

submitted by dakl1dakl1(35) 4 years ago

Interesting point of view for goto statements! read more...

add a comment |category: |Views: 7

tags: another

Automating readable markup in ASP.NET, WPF, and Silverlight(dimebrain.com)

submitted by dcrennadcrenna(1355) 4 years ago

This is a Visual Studio Add-In that provides a hot-key to automatically line up your ASP.NET/WPF/Silverlight attributes to increase their readability. read more...

4 comments |category: |Views: 127

tags: another

.NET Reflector(dotnettoad.com)

submitted by BognitBognit(2125) 4 years ago

It's surprising that there are many developers that do not know about this great tool. read more...

3 comments |category: |Views: 18

tags: another

Scrum Cheat sheet(gigpeppers.com)

submitted by cheriancherian(35) 4 years ago

Scrum cheat sheet for agile teams read more...

add a comment |category: |Views: 337

tags: another

11 Top Tips for a Successful Technical Presentation (hanselman.com)

submitted by jankojanko(2555) 4 years ago

Over five years ago I posted Tips for a Successful MSFT Presentation. Yesterday I watched the video of my Mix Presentation all the way through. It's always very painful to hear one's own voice but it's even worse to watch yourself. I never listen to my podcast and I avoid watching myself. It's like watching a person in parallel universe and it inspires self-loathing. However, if you are someone who values continuous improvement - and I am - you need to do the uncomfortable. read more...

add a comment |category: |Views: 248

tags: another

How to check if a string is empty(dotnettoad.com)

submitted by dakl1dakl1(35) 4 years ago

Interesting article that shows different ways of checking if a string is empty and explains the pros and cons. read more...

add a comment |category: |Views: 45

tags: another

Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta(weblogs.asp.net)

submitted by mosesmoses(295) 4 years ago

public beta of upcoming .NET 3.5 SP1 and VS 2008 SP1 releases is published read more...

1 comment |category: |Views: 130

tags: another

11 More Visual Studio Shortcuts You Should Know (dev102.com)

submitted by razamitrazamit(4566) 4 years ago

Following our First Visual Studio Shortcuts post here is another batch of shortcuts. read more...

2 comments |category: |Views: 73

tags: another

Array.Contains()(dotnettoad.com)

submitted by PaklPakl(120) 4 years ago

Wouldn’t it be nice if you could test wether an element is contained in an array by using a Contains method just like the one available on List objects? This article shows you how to achieve something similar in .NET 2.0 and .NET 3.0 read more...

add a comment |category: |Views: 17

tags: another

unit testing your events(dotnettoad.com)

submitted by PaklPakl(120) 4 years ago

In this article I will show you how you can unit test your events. I will show you a simple technique that will enable you to test if your events fire exactly as often as you want them to and I will provide you with two implementations. One implementation works well with the .NET Framework 2.0 and the second one uses .NET 3.0 (anonymous methods) in order to minimize the code necessary. read more...

add a comment |category: |Views: 160

tags: another