frogsbrain

Stories kicked by frogsbrain

Skip lists are fascinating! (igoro.com)

submitted by igoroigoro(815) 3 years, 10 months ago

Skip lists are a fascinating data structure: very simple, and yet have the same asymptotic efficiency as much more complicated AVL trees and red-black trees. In this article, I discuss the asymptotic efficiency of operations on skip lists, the ideas that make them work, and their interesting use cases. And, of course, I give you the source code for a skip list in C#. read more...

add a comment |category: |Views: 358

tags: another

C# Anagrams Fast w/ Source and GUI, uses 1985 data structure DAWG(code.msdn.microsoft.com)

submitted by samdnpsamdnp(980) 3 years, 11 months ago

This open-source project uses a directed acyclic word graph and Windows Forms C# to find anagrams in words fast and with little memory. In my experience there are no faster algorithms (implementations, yes). Useful for word games and only about 400 lines of code. Uses a tree in C#. read more...

add a comment |category: |Views: 83

tags: another

Die, Chicken. Die!(codebetter.com)

submitted by frogsbrainfrogsbrain(225) 4 years, 3 months ago

Product ownership goes beyond the Chicken and Pig stereotypes. A good opinion post on taking the responsibility for success beyond just the members of an agile team into the management and executive level. read more...

add a comment |category: |Views: 2

tags: another

Optimizing the hash table(nosoupforme.com)

submitted by daninordaninor(435) 4 years, 5 months ago

A few performance tips and less known facts about hash tables read more...

add a comment |category: |Views: 377

tags: another

Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf(codebetter.com)

submitted by gavinjoycegavinjoyce(25.7k) 4 years, 7 months ago

Some more information from ALT.NET on the new ASP.NET MVC framework. read more...

add a comment |category: |Views: 3

tags: another

A Visual Guide to Version Control(betterexplained.com)

submitted by powerrushpowerrush(3873) 4 years, 7 months ago

A good, "highly visual" overview of Version Control, (a.k.a. Source Control). It also references Subversion command line examples, but the overview applies to most version control systems. read more...

add a comment |category: |Views: 16

tags: another

Continuous Integration: The Cornerstone of a Great Shop(sqazone.net)

submitted by sqazonesqazone(100) 4 years, 7 months ago

This article shows how continuous integration can help to keep projects on track with a rapid feedback on the product status. read more...

add a comment |category: |Views: 7

tags: another

Scrum: Agile Software Development for Project Management(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 4 years, 8 months ago

Scrum is organized around the following roles: * Product Owner - Determines what functionality is needed * ScrumMaster - Leads the Scrum and is primarily responsible for making sure the Scrum process is followed and removing impediments that keep the Team from working * The Team - Those who do the actual work that translates what the Product Owner has requested into usable functionality Read more ... read more...

4 comments |category: |Views: 28

tags: another

SQL Optimization Tips(dotnetguts.blogspot.com)

submitted by vermdivyavermdivya(365) 4 years, 9 months ago

Tips and Tricks which should be used while dealing with SQL read more...

add a comment |category: |Views: 19

tags: another

Writing a full JSON Serializer in 100 lines of C# code(blog.activa.be)

submitted by activaactiva(2340) 4 years, 9 months ago

After looking at the specs for JSON, I figured it couldn’t be too hard to write a JSON serializer in C#. Not only was it not that hard, it was very short too: about 100 lines of code. read more...

add a comment |category: |Views: 4033

tags: another

Setting up and running Subversion and Tortoise SVN(west-wind.com)

submitted by rstrahlrstrahl(7226) 4 years, 9 months ago

A quick walkthrough of setting up and configuring SubVersion with Tortoise SVN and getting started creating repositories, adding files and folders, creating local copies and working with SVN. read more...

1 comment |category: |Views: 153

tags: another

String Formatting in C#(blog.stevex.net)

submitted by frogsbrainfrogsbrain(225) 4 years, 10 months ago

A very handy guide to formatting strings in C#. read more...

3 comments |category: |Views: 82

tags: another

Most Useful 20+ Visual Studio A(plentyofcode.com)

submitted by bayarsaikhanbayarsaikhan(830) 4 years, 10 months ago

I have collected list of the Visual Studio Add-ins, most of which are open source or free. I hope this list will help you to code more faster and effective. If there is not your favorite add-in in the below list, do not hesitate to add it as a comment. read more...

3 comments |category: |Views: 24

tags: another

Principles of simplicity(blog.madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 4 years, 10 months ago

Simplicity is about removing everything that can complicate the process of writing and maintaining software. read more...

2 comments |category: |Views: 17

tags: another

SQL Server Interview Questions and Answers Complete List Download(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 4 years, 10 months ago

Question I received is do I ask the same questions in interviews which I administrate. Answer is YES. Though, I have few other questions, which I ask. All of them I came up myself and answers are unique to questions and not available on-line. Well, long story short, I have compiled list of questions in one PDF. Please download them and use them in your next interview or just for reading purpose. read more...

add a comment |category: |Views: 513

tags: another

TDD? You've got to be kidding me?(frogsbrain.blogspot.com)

submitted by frogsbrainfrogsbrain(225) 4 years, 10 months ago

How confident are you in the adequacy of your unit tests? What if we just tweak this one little condition. It's just a tiny little condition, just this one ... *BOOMF* (clue, "Meaning of Life") read more...

add a comment |category: |Views: 3

tags: another