akmad

Stories kicked by akmad

For Loops: Using i++, ++i, Enumerators, or None of the Above?(moserware.com)

submitted by moserwaremoserware(1665) 4 years, 3 months ago

A quest to move away from the 50 year old style of "for loops" and embrace newer ways of getting the same job done. read more...

add a comment |category: |Views: 3

tags: another

Optimize Managed Code For Multi-Core Machines(msdn.microsoft.com)

submitted by jamesewelchjamesewelch(2275) 4 years, 8 months ago

Multi-processor machines are now becoming standard while the speed increases of single processors have slowed down. The key to performance improvements is therefore to run a program on multiple processors in parallel. Unfortunately, it is still very hard to write algorithms that actually take advantage of those multiple processors. In fact, most applications use just a single core and see no speed improvements when run on a multi-core machine. We need to write our programs in a new way. read more...

2 comments |category: |Views: 26

tags: another

Security .Net Web Services With Username and Password(keithelder.net)

submitted by TheElderTheElder(490) 5 years, 4 months ago

There are multiple ways to secure web services. One of the methods is username and password. This article provides a step by step guide on how to secure a service as well as how to interop with it via a client. read more...

add a comment |category: |Views: 18

tags: another

Using managed custom actions with WIX 3(bartekszafko.inc.pl)

submitted by bszafkobszafko(240) 5 years, 6 months ago

Embedding custom actions written in .net into msi may be very tricky. Some setup developers even consider it evil. However I with some research and reverse engineering it could be quite simple. read more...

add a comment |category: |Views: 178

tags: another

aspneticons.com -- free icons for ASP.NET web applications(aspneticons.com)

submitted by javierRomerojavierRomero(1010) 5 years, 6 months ago

That’s not all! There are more than 300 (three hundred!) professionally designed icons for your ASP.NET applications in this collection. And, they all are completely free! read more...

2 comments |category: |Views: 741

tags: another

Understanding .NET Interlocked class(thith.blogspot.com)

submitted by thiththith(65) 5 years, 6 months ago

Explanation about .NET Interlocked class and why it is just more than atomicity. read more...

add a comment |category: |Views: 516

tags: another

XmlIncludeAttribute on a Method(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 5 years, 7 months ago

How to handle inheritance in web services using XmlIncludeAttribute. read more...

add a comment |category: |Views: 20

tags: another

How to Bloody Your Forehead(weblogs.asp.net)

submitted by bradygasterbradygaster(4897) 5 years, 8 months ago

A lengthly description, with screenshots, of a well-known bug in the ObjectDataSource/DataTableAdapter designer paradigm with an open challenge to Microsoft to repair it. read more...

add a comment |category: |Views: 12

tags: another

11 Tools for Database Versioning(secretgeek.net)

submitted by joshirushabhjoshirushabh(810) 5 years, 8 months ago

If you're developing code today, it's probably 'controlled' using a version control product of some sort. (We use Vault here, and in the past we used V S S) That's great, your code is covered. But what about your stored procedures, and your database schema? Many developers (I suggest 'most') have no form of version control on their stored procedures or their table structures etc. read more...

add a comment |category: |Views: 12

tags: another

Get flying with Isolated Storage in C#(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 8 months ago

Isolated Storage is a place on the disk where your .NET application always has write permissions. That makes it ideal for applications that need to store information such as settings or XML without first asking for permission. Application types such as ClickOnce or non-installable applications would benefit hugely from this capability. read more...

add a comment |category: |Views: 47

tags: another

Code Analysis Tools - A collection of IL code analysis tools(codeproject.com)

submitted by jconwe11jconwe11(45) 5 years, 8 months ago

This is an article that describes a collection of open source .Net code analysis tools. These tools don’t analyze the actual source files, but pull the IL out of the compiled assemblies. This makes the different code analysis tools language agnostic. read more...

add a comment |category: |Views: 7

tags: another

Performance optimization of an if/else-statement(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 8 months ago

Have you ever considered how well a regular if/else-statement performs? I haven’t, but wanted to test it. read more...

add a comment |category: |Views: 16

tags: another

Installing XNA Beta and SpaceWar(geekzilla.co.uk)

submitted by phaymanphayman(3550) 5 years, 8 months ago

Quick read about installing the XNA Beta and running the sample project. With some tips and links to more information.. read more...

add a comment |category: |Views: 6

tags: another

More on best practices for exception handling(srtsolutions.com)

submitted by jimholmesjimholmes(215) 5 years, 8 months ago

Bill Wagner (author of "Effective C#"), adds his smart thoughts to Scott Hansleman's post on best practices for exception handling. read more...

add a comment |category: |Views: 76

tags: another

Scott Hanselman's 2006 Ultimate Developer and Power Users Tool List(hanselman.com)

submitted by dalzieldalziel(6230) 5 years, 8 months ago

Hanselman lists his top 10 indispensable tools & products for development, plus 5 from his list last year that got knocked out. read more...

1 comment |category: |Views: 2

tags: another

Hiding generics types complexity(ebersys.blogspot.com)

submitted by BlackTigerXBlackTigerX(460) 5 years, 8 months ago

Generic types can get quite ugly, here's a technique to hide that complexity (both at writing and reading) while keeping all the benefits of generics intact read more...

add a comment |category: |Views: 8

tags: another