algorithms

Josh Adell's Blog: Path finding with Neo4j

PHPDeveloper.org  Tue, 06/28/2011 - 11:38

In a follow up to his previous post on using Neo4j with PHP, Josh Adell looks in a bit more detail about how to find paths in the data via a REST interface to the database.


 

Wrapping a Program Around the Core Data Structure

Linux Today  Wed, 11/10/2010 - 01:03

Systhread: "Rule 5. Data dominates. If you've chosen the right data structures and organized things well, the algorithms will almost always be self-evident.

Data structures, not algorithms, are central to programming"


 

The IRMOS realtime scheduler

Linux Today  Thu, 08/19/2010 - 18:02

LWN.net: "The purpose of this article is to provide a general overview of this new scheduler, describe its features and how it can be practically used, provide a few details about the implemented algorithms, and gathering feedback by the community about possible improvements."


 

YouTube Launches Auto-Captioning for Videos

Digg / Tech Industry News  Thu, 03/04/2010 - 18:30

Auto-captioning launched in limited beta in November of last year. It was for select partners to test out the system, where Google’s algorithms would parse words within videos and transform it into captions — speech-to-text, a technology used on he Nexus One and Android.


 

Facebook’s ‘Reconnect’ Strategy is Brilliant

Mashable!  Wed, 10/28/2009 - 04:02

facebook_reconnectRecently, in addition to giving you suggestions to which friends you might add to your profile,


 

Iterators Must Go

Lambda the Ultimate - Programming Languages Weblog  Mon, 07/20/2009 - 14:40

Andrei Alexandrescu: Iterators Must Go, BoostCon 2009 keynote.

Presents a simple yet far-reaching replacement for iterators, called ranges, and interesting "D" libraries built on it: std.algorithm and std.range.


 

Soccer-Fun: Teaching Functional Programming

Lambda the Ultimate - Programming Languages Weblog  Wed, 07/08/2009 - 09:24

...a domain specific language for simulating football. ... We have used Soccer-Fun in teaching during the past four years.

We have also experience in using Soccer-Fun for pupils in secondary education. ... It engages students to problem solving with functional programming because it allows them to compete at several disciplines: the best performing football team can become champion of a tournament; the best written code can be awarded with a prize; students can be judged on the algorithms used.

This enables every student to participate and perform at her favourite skill. ...


 

Coders' View Blog: The Strategy Pattern Using PHP

PHPDeveloper.org  Fri, 05/29/2009 - 10:14

On the Coders' View blog there's a recent post looking at using the strategy design pattern in your PHP application.