wdCalendar
Category:
JQuery Plugins | jquery plugins
wdCalendar is a jquery based google calendar clone. It cover most google calendar features.

* Day/week/month view provided.
* create/update/remove events by drag & drop.
* Easy way to integrate with database.
* All day event/more days event provided.

PHP Depend - Software Metrics for PHP
Category:
PHP Depend - Software Metrics for PHP
PHP_Depend is a small program that performs static code analysis on a given source base. Static code analysis means that PHP_Depend first takes the source code and parses it into an easily processable internal data structure. This data structure is normally called an AST (Abstract Syntax Tree), that represents the different statements and elements used in the analyzed source base. Then it takes the generated AST and measures several values, the so called software metrics. Each of this values stands for a quality aspect in the the analyzed software, observed from a very high level of abstraction, because no source was reviewed manually until now.

Enumerating Large XML Files
Category:
Enumerating Large XML Files (Doug Rothaus)
How do you read an enormous XML file then? You use the XmlReader class, which has been around since the first release of the .NET Framework. It reads through an XML file, but simply places a pointer on the current XML element or attribute as you go through the file. As you read through the file with the XmlReader object, you can examine the current XML, decide if you are interested in it, process it, discard it, and move on to the next part of the file. The important thing is that you can minimize how much memory is utilized at any one time in your app.

Yahoo! Fantasy Sports - YDN
Category:
Yahoo! Fantasy Sports - YDN
Yahoo! Fantasy Sports is the world's largest fantasy sports provider, allowing users to compete against each other using statistics from real-world competitions. The Yahoo! Fantasy Sports API provides rich data on leagues, teams and player information. You'll be able to use this data to build non-commercial tools and applications that help analyze draft results, review free agents, optimize current rosters, and more.

Stomple: JMS via WebSockets
Category:
Stomple: JMS via WebSockets
You can use any of the Stomp Clients to work with any JMS compliant message broker, for example HornetQ. There are Stomp clients for many languages, and Stomple adds JavaScript via WebSockets. This means that you can send and receive JMS messages directly in the browser (when it supports WebSockets).

berp
Category:
Home - berp - GitHub
Berp is an implementation of Python 3. At its heart is a translator, which takes Python code as input and generates Haskell code as output. The Haskell code is fed into a Haskell compiler (GHC) for compilation to machine code or interpretation as byte code.

Mapbox: the jQuery Map
Category:
Mapbox: the jQuery Map
The jQuery mapbox() plugin is for creating relatively small scale, zoomable, draggable maps with multiple layers of content. This framework could be applied to games, development plans, or any layout that could benefit from being able to zoom in and pan to get a better view.

like google maps without google
Boyer–Moore string search algorithm
Category:
Boyer–Moore string search algorithm - Wikipedia, the free encyclopedia
The Boyer–Moore string search algorithm is a particularly efficient string searching algorithm, and it has been the standard benchmark for the practical string search literature.[1] It was developed by Bob Boyer and J Strother Moore in 1977. The algorithm preprocesses the target string (key) that is being searched for, but not the string being searched in (unlike some algorithms that preprocess the string to be searched and can then amortize the expense of the preprocessing by searching repeatedly). The execution time of the Boyer-Moore algorithm can be sub-linear: it doesn't need to check every character of the string to be searched, but rather skips over some of them. Generally the algorithm gets faster as the key being searched for becomes longer. Its efficiency derives from the fact that with each unsuccessful attempt to find a match between the search string and the text it's searching, it uses the information gained from that attempt to rule out as many positions of the text as possible where the string cannot match.

patternleaf's Romano
Category:
patternleaf's Romano at master - GitHub
An object-oriented Javascript/HTML5 game application framework.

Tune APC to Improve PHP Performance
Category:
Tune APC to Improve PHP Performance
Having installed APC for PHP does not automatically improve the performance. You have to adjust the parameters.