iPhone DZone: Fresh Links On Your iPhone by matt on 7/5/08
Reading DZone on your iPhone just got a little bit easier. Visit http://dzone.com/iphone from your iPhone to try out our beta iPhone support. You can view stories, filter by tags, and login. We'd appreciate your feedback at feedback@dzone.com.
Firefox 3 Memory Benchmarks and Comparison
This article reveals the author's results from profiling Firefox 3 and five other browsers over a period of 14 hours, collecting millions of data... more »
0 commentsSave Tags: open source, web design
C# Anagrams Fast w/ Source and Easy to Use GUI
Uses 1985 directed acyclic word graphs to implement an amazing anagram algorithm that outperforms most anything else. Has a nice Windows Forms GUI and... more »
0 commentsSave Tags: .net, games, open source
Fix a StringBuilder Problem Easily in C#
I found some inefficient StringBuilder code in some ASP.NET application, and rewrote it to make it twice as efficient and clearer and simpler. The... more »
0 commentsSave Tags: .net, how-to
Launch Processes Easily in C# .NET
This article provides some tips about using Process.Start to launch Windows processes. Also provides a tip about launching either Internet Explorer or... more »
0 commentsSave Tags: .net, windows
Getting Special Folders in C# .NET
A very common thing to know how to do is get the location of the Desktop, Documents, or other folders. This article shows you how can do this easily.
0 commentsSave Tags: .net, how-to, usability
IndexOf and IndexOfAny in C#
I wrote this article to explore some problems with IndexOf and friends that have troubled me in the past. There isn't a lot on IndexOfAny in... more »
0 commentsSave Tags: .net, how-to, microsoft
Eliminate Stopwords in C#
I show how to use collection initializers and a Dictionary to remove stopwords ('the', 'and', 'of') very quickly. All code is available, so you can... more »
0 commentsSave Tags: .net, database, microsoft, open source
ucfirst in C# .NET
Here I compare some techniques of uppercasing the first letter in a string, and present some benchmarks. ucfirst is a Perl/PHP function that is very... more »
0 commentsSave Tags: .net, perl, php
A-Star Pathfinding in C#
A description with screenshots and code samples of how to find the shortest distance between a monster and a hero, taking into account obstacles such... more »
0 commentsSave Tags: .net, games, how-to, open source
Protected Proxy Example in C#
Shows what a protection proxy does, and how to make one. Make you code simpler and your app more reliable with this design pattern. Includes plenty of... more »
0 commentsSave Tags: .net, frameworks, how-to, methodology
DataGridView Tips and Secrets
Explores ways to improve your DataGridViews. They have tons of properties and methods, but which ones are important? Includes steps to enhance your... more »
0 commentsSave Tags: .net, frameworks, usability, windows
FIFO Caches in C# With Generics
Sometimes you need a cache that stores the last N items, retrieves them in constant time, but doesn't grow endlessly. This is an efficient... more »
0 commentsSave Tags: .net, how-to, open source
Benchmark of Dictionary.TryGetValue in C#
Developers say it is more efficient to use TryGetValue and avoid hash lookups. Here is a page that benchmarks a real-world application and sees what... more »
0 commentsSave Tags: .net, how-to, research
Better Looking Windows C# Dialogs--Introducing BetterDialog
Most of the C# custom dialog examples on the Internet don't adhere to UI standards to the tee--this one does, and uses graphics to measure text... more »
0 commentsSave Tags: .net, gui, open source, windows
Directed Acyclic Word Graph in C#: Open, Efficient
Some Open Source C# code that implements a DAWG data structure, which is faster and uses a fraction of the memory that the C# hash does. Post includes... more »
0 commentsSave Tags: .net, c-and-cpp, research, windows