moserware

Stories kicked by moserware

Using Obscure Windows COM APIs in .NET(moserware.com)

submitted by moserwaremoserware(1665) 3 years, 1 month ago

A lot of the new Windows Vista and Windows 7 APIs are exposed via COM. Here's a simple introduction for how to use them when no wrappers are available. read more...

add a comment |category: |Views: 329

tags: another

How .NET Regular Expressions Really Work(moserware.com)

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

A very deep dive into the source code for how .NET Regular Expressions really work read more...

3 comments |category: |Views: 609

tags: another

The Academic Background of the .NET Community Leaders(nayyeri.net)

submitted by sharplifesharplife(4570) 3 years, 5 months ago

In this post Keyvan demonstrates the Academic background of most famous guys in the .NET community and talks about the various aspects of academic knowledge and its effect among technology leaders. read more...

add a comment |category: |Views: 447

tags: another

The Private Life of a Public API(moserware.com)

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

Developing a public API on .NET is hard work, but it can be rewarding. Some reflections on the "Framework Design Guidelines" read more...

1 comment |category: |Views: 325

tags: another

Boy Scout Check-ins(moserware.com)

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

How to leave your code campground cleaner than you found it. read more...

2 comments |category: |Views: 366

tags: another

How Do Locks Lock?(moserware.com)

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

A detailed explanation of how a locks like ReaderWriterLockSlim really work. read more...

1 comment |category: |Views: 341

tags: another

Meta-FizzBuzz(moserware.com)

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

Create a language implementation and write a solution to the FizzBuzz problem using it. read more...

add a comment |category: |Views: 3

tags: another

TimeZone vs. TimeZoneInfo in .Net(danrigsby.com)

submitted by DanRigsbyDanRigsby(1880) 3 years, 9 months ago

Understanding the TimeZoneInfo classin .Net 3.5 and how it compares to the standard TimeZone class. read more...

1 comment |category: |Views: 665

tags: another

Building an Object-Oriented Parasitic Metalanguage in .NET(moserware.com)

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

Details the early stages for how OMeta# is being implemented. read more...

add a comment |category: |Views: 259

tags: another

OMeta#: Who? What? When? Where? Why?(moserware.com)

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

Introducing a new open source project whose aim is to bring the OMeta language to .net. read more...

add a comment |category: |Views: 176

tags: another

Microsoft Source Analysis for C# Released(blogs.msdn.com)

submitted by jonasjonas(2215) 4 years ago

From post: "Source Analysis is similar in many ways to Microsoft Code Analysis (specifically FxCop), but there are some important distinctions. FxCop performs its analysis on compiled binaries, while Source Analysis analyzes the source code directly. For this reason, Code Analysis focuses more on the design of the code, while Source Analysis focuses on layout, readability and documentation." read more...

1 comment |category: |Views: 876

tags: another

6 Useful Visual Studio Tweaks You Need To Know(dev102.com)

submitted by shaharyrshaharyr(4325) 4 years ago

Here is a list of 6 Visual Studio tweaks you can do to make your development experience much better... read more...

add a comment |category: |Views: 147

tags: another

My "Better Know a Framework" Talk at IndyCodeCamp(moserware.com)

submitted by moserwaremoserware(1665) 4 years, 1 month ago

Today at the IndyCodeCamp I gave a talk in much of the same spirit as the "Better Know a Framework" series on ".NET Rocks!" The talk had no slides, but featured me in the debugger highlighting a few of my favorite (but lesser known classes). This code is included. As part of my preparation, I researched every topic covered on each show and included a brief summary as part. read more...

add a comment |category: |Views: 16

tags: another

From Developer to Technical Manager(aaronlerch.com)

submitted by aaronlerchaaronlerch(1670) 4 years, 1 month ago

Organizations with an outdated organizational structure have got to wake up and change before it’s too late. They will either lose or ruin their people. Either way, the company loses because people are the company. read more...

add a comment |category: |Views: 7

tags: another

How to grayout an image in .Net(danrigsby.com)

submitted by DanRigsbyDanRigsby(1880) 4 years, 1 month ago

This article shows how to gray out an image in .net programmatically. This can be useful for making "Disabled" versions of images, etc. read more...

add a comment |category: |Views: 141

tags: another

Stop creating custom delegate types!(lostechies.com)

submitted by jazzman007jazzman007(170) 4 years, 1 month ago

If you declare even a single delegate type in your code (and you're using .NET 3.5), stop and make sure there isn't already an Action or Func delegate that works for you. read more...

add a comment |category: |Views: 16

tags: another