resabio

Stories kicked by resabio

Auto-Notifying View Models in Silverlight and WPF(www.danielahill.com)

submitted by resabioresabio(95) 2 months, 14 days ago

Quickly create View Models that automatically notify XAML bindings when property values change, without having to manually raise a PropertyChanged Event Code view model properties as: public virtual int MyIntegerProperty { get; set; } read more...

1 comment |category: |Views: 126

tags: another

Why So Many Azure Storage Transactions?(randypatterson.com)

submitted by geoffsmithgeoffsmith(30) 2 months, 18 days ago

Recently, I had a client sign up for a Windows Azure account getting the first 90 days for free. This free account gives you a 1GB SQL Azure Web edition database, 50,000 storage transactions and 750 small compute hours. However, the next day my Azure account was suspended due to exceeding these limits. read more...

1 comment |category: |Views: 141

tags: another

Randomizing Enumerables via Extension Methods(www.danielahill.com)

submitted by resabioresabio(95) 4 months, 2 days ago

Randomize all the values in an IEnumerable or choose a random value using extension methods and LINQ, enumerating the collection only once. read more...

add a comment |category: |Views: 42

tags: another

Rendering Microsoft .NET 4.0 3D Charts in ASP.NET MVC(www.danielahill.com)

submitted by resabioresabio(95) 4 months, 5 days ago

Render Microsoft Charting 3D Charts the easy way in ASP.NET MVC in a straight-forward, cacheable, and easy to implement solution. read more...

add a comment |category: |Views: 16

tags: another

Shuffle in linq (part 2)(csharpsimple.blogspot.com)

submitted by manudeamanudea(53) 4 months, 13 days ago

There are many times when we need to randomly sort a list or array. read more...

1 comment |category: |Views: 16

tags: another

Defragging SQL Indexes(www.danielahill.com)

submitted by resabioresabio(95) 5 months, 13 days ago

Similar to hard drives, each time data in a SQL index is added, deleted, or updated, the index has the potential to become fragmented. The ultimate result is that SQL queries will take a less than optimal time to execute. Just as defragging a hard drive can improve performance, defragging SQL Server indexes can improve performance significantly. read more...

add a comment |category: |Views: 5

tags: another

Intermittent Outdated Display in Nagios(www.danielahill.com)

submitted by resabioresabio(95) 9 months, 28 days ago

How to fix an issue where nagios periodically displays outdated data. read more...

1 comment |category: |Views: 2

tags: another

Creating and Consuming Custom .NET COM Libraries with VBA(www.danielahill.com)

submitted by resabioresabio(95) 10 months, 9 days ago

Create a custom COM Visible .NET Class Library, consume it as a Microsoft Office VBA Reference, and distribute it for use on multiple computers. Full Source code included read more...

add a comment |category: |Views: 4

tags: another

Drop All Connections to a Microsoft SQL Server Database(www.danielahill.com)

submitted by resabioresabio(95) 10 months, 9 days ago

Drop all connections to a Microsoft SQL Server 2008 Database read more...

add a comment |category: |Views: 4

tags: another

DanielAHill.com - Test Credit Card Numbers(www.danielahill.com)

submitted by resabioresabio(95) 10 months, 11 days ago

Test credit and debit card numbers permit developers and quality assurance engineers to test how their software interacts with the payment processor. Each test credit card below should work with any CSV and any expiration date that is in the future. This is a listing of test credit card numbers grouped by credit card type. read more...

add a comment |category: |Views: 17

tags: another

ValueTypes and ReferenceTypes : Under the Hood(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 10 months, 11 days ago

Value types and Reference types are pretty basic which every developers must know. Here is some of the interesting facts on the same with in-depth analysis on how it actually works under the hood read more...

add a comment |category: |Views: 21

tags: another

How to Solve the Ski-Shop Problem using Dynamic Programming(danielahill.com)

submitted by resabioresabio(95) 2 years, 6 months ago

There exists a ski shop that owns m skies and N skiers have registered to rent skis for the day. We know the height of all N skiers and we know the ski length of each of the skis. The goal is to match each skier with a pair of skis so that the total difference between each skier and the length of his/her skis is minimized. read more...

add a comment |category: |Views: 12

tags: another

Creating and Consuming Custom .NET COM Libraries with VBA(danielahill.com)

submitted by resabioresabio(95) 2 years, 7 months ago

This tutorial will show you how to create a custom .NET COM visible Library, consume it using VBA code, and deploy it to other computers. read more...

add a comment |category: |Views: 7

tags: another

Using a Hybrid Memory Stream to reduce RAM requirements(danielahill.com)

submitted by resabioresabio(95) 2 years, 7 months ago

A HybridMemoryStream that acts as a memory stream until it reaches a predetermined size, at which point, it buffers its data in a temporary file stored in the system's temporary directory. read more...

add a comment |category: |Views: 28

tags: another

Loading assemblies (references) during runtime(danielahill.com)

submitted by resabioresabio(95) 2 years, 7 months ago

Load an assembly during runtime after the runtime engine has failed to find it. read more...

add a comment |category: |Views: 13

tags: another

A Stick Figure Guide to the Advanced Encryption Standard (AES)(moserware.com)

submitted by SuperJasonSuperJason(2740) 2 years, 8 months ago

History of encryption, what an encryption algorithm entails, and how to perform AES encryption yourself. All in an easy to read comic! read more...

add a comment |category: |Views: 17

tags: another