Stories recently tagged with 'JamesCurran'

jQuery.growl Documentation(honestillusion.com)

submitted by JamesCurran2JamesCurran2(134) 3 years, 7 months ago

jQuery.growl is a cool open-source plugin for a cool open-source javascript library. Some just needed to tell people how to used it. read more...

add a comment |category: |Views: 188

tags: another

Lists: Filter, Map and Reduce - and the Magic of IEnumerator.(honestillusion.com)

submitted by JamesCurran2JamesCurran2(134) 3 years, 9 months ago

There are 3 very handy list functions which make dealing with lists a breeze: Map, Filter and Reduce. But along the way of writing them, an important principle of IEnumerator<> comes up. read more...

add a comment |category: |Views: 63

tags: another

The Need for Common Search Keywords.(honestillusion.com)

submitted by JamesCurran2JamesCurran2(134) 4 years, 1 month ago

If you ever tried to Google something like "how to write a linked list in C#" you may have noticed a problem. Most search engines have trouble dealing with the pound sign... read more...

add a comment |category: |Views: 3

tags: another

Joins - LINQ's critical, overlooked feature.(honestillusion.com)

submitted by JamesCurran2JamesCurran2(134) 4 years, 5 months ago

Joins are a vital part of SQL -- but most ORM ignore them -- except for LINQ. read more...

add a comment |category: |Views: 6

tags: another

What's inside a foreach() statement?(honestillusion.com)

submitted by JamesCurran2JamesCurran2(134) 5 years ago

A comparision of a foreach() loop and manually looping by calling GetEnumerator() and MoveNext() read more...

add a comment |category: |Views: 3

tags: another

More Fun with C# Interators : A Counting Iterator(honestillusion.com)

submitted by JamesCurran2JamesCurran2(134) 5 years ago

A C# Iterator which appears to be a collection filled with a sequence of numbers. read more...

add a comment |category: |Views: 17

tags: another

Design Patterns: Thoughts on the Singleton Pattern(honestillusion.com)

submitted by JamesCurranJamesCurran(635) 5 years, 2 months ago

Thoughts on the Singleton Pattern (Executive summary: Don't!) read more...

5 comments |category: |Views: 5

tags: another

More Fun with C# Iterators: Take, Skip, TakeWhile, SkipWhile(honestillusion.com)

submitted by JamesCurranJamesCurran(635) 5 years, 2 months ago

Demostration of implementing a couple features of .Net 3.0 LINQ using just .Net 2.0 read more...

add a comment |category: |Views: 866

tags: another

Implementing A Circular Iterator (correct link)(honestillusion.com)

submitted by JamesCurranJamesCurran(635) 5 years, 2 months ago

Creating a IEnumerator<T> which loops continuously through a collection. read more...

add a comment |category: |Views: 70

tags: another

Generics without Collections, Part 2(honestillusion.com)

submitted by JamesCurranJamesCurran(635) 5 years, 3 months ago

Using generics for things other than creating collections.( This time, a filter for collections) Advanced Generics use read more...

add a comment |category: |Views: 4

tags: another

Generics without Collections, Part 3(honestillusion.com)

submitted by JamesCurranJamesCurran(635) 5 years, 3 months ago

Using generics for things other than creating collections (Enums this time). Advanced generics use read more...

add a comment |category: |Views: 14

tags: another

Generics without Collections, Part I(honestillusion.com)

submitted by JamesCurranJamesCurran(635) 5 years, 3 months ago

Using generics for things other than creating collections. Advanced Generics use. read more...

add a comment |category: |Views: 26

tags: another

Wordwrapping in C#(honestillusion.com)

submitted by JamesCurranJamesCurran(635) 5 years, 3 months ago

Taking a block of text, and word-wrap it at a specific line length. read more...

4 comments |category: |Views: 76

tags: another

Adding Skip First to Foreach(honestillusion.com)

submitted by JamesCurranJamesCurran(635) 5 years, 3 months ago

Allow developers to use foreach to iterator over a collection, in the case where the first or last item in the collection needed to be handled differently. read more...

add a comment |category: |Views: 90

tags: another