pepethecow

Stories submitted by pepethecow

Concurrency, Performance, Arrays and when Dirty Writes are OK(www.philosophicalgeek.com)

submitted by pepethecowpepethecow(56) 1 month, 2 days ago

This article will show how to increase the performance of a rather simple algorithm up to 80%, by showing how we can accept a loss in absolutely accuracy, and also taking advantage of how processors work. read more...

2 comments |category: |Views: 164

tags: another

Measure Amount of Data To Serialize with a Null Stream(www.philosophicalgeek.com)

submitted by pepethecowpepethecow(56) 1 year, 9 months ago

A tip on how to measure the amount of data you're about to serialize, using a Null Stream. read more...

add a comment |category: |Views: 2

tags: another

How to build a WPF Numeric Entry Control(philosophicalgeek.com)

submitted by pepethecowpepethecow(56) 2 years, 6 months ago

A tutorial on how to build a control for numeric entry in WPF, including full keyboard support, buttons that increment the value while you hold the mouse down, and more. This starts from scratch and explains not only how each part works, but why certain choices were made. Full source code project downloadable. read more...

add a comment |category: |Views: 36

tags: another

Determine CPU usage of current process in C++ and C#(philosophicalgeek.com)

submitted by pepethecowpepethecow(56) 3 years, 4 months ago

How to determine the CPU usage of the current process in Windows, with examples in both C++ and C#. read more...

add a comment |category: |Views: 165

tags: another

How to Track Database Changes With Triggers(philosophicalgeek.com)

submitted by pepethecowpepethecow(56) 4 years ago

How to easily and automatically track database changes, both in a single table and in foreign key tables. Also, code to effectively display changes in a list view. read more...

add a comment |category: |Views: 10

tags: another