Bugspots - Bug Prediction Heuristic
An implementation of the simple bug prediction heuristic outlined
by the Google Engineering team: Bug Prediction at Google
Well, we actually have a great, authoritative record of where
code has been requiring fixes: our bug tracker and our source
control commit log! The research indicates that predicting bugs
from the source history works very well, so we decided to deploy
it at Google.
Point bugspots at any git repo and it will identify the hotspots
for you.
Needle is a dependency injection (also, inversion of control) container
for Ruby. Ultimately, it can reduce the amount of code that you have to
write, simplifying many common programming tasks for you. This has the
two-fold benefit of both decreasing application development time, and of
decreasing the effort needed to maintain your application.
Specifically, Needle can do:
- Log Method Execution
- Reference Another Service
- Unit Testing
- Lifestyle Management
Polyamorous is an extraction of shared code from the Active Record Hackery gems
Ransack, Squeel and MetaSearch by Ernie Miller and maintained by Ryan Bigg,
Xiang Li, Jon Atack and a great little group of contributors.
It is an internal library for extending various versions of Active Record with
polymorphism. There is no public API, so it's :nodoc:. Move along. Nothing to
see here.
XMake is a make utility. It is not compatible with other makes, but
provides extended functionality over most standard makes. Whereas most
other makes have confusing rulesets and do not support many-to-many
dependency specifications, XMake has relatively few (basically no) rulesets
and allows you to easily specify many:many dependencies. This gives XMake
the flexibility to deal with complex project hierarchies very simply.
Retryable uns a code block, and retries it when an exception occurs. It's great
when working with flakey webservices (for example).
It's configured using four optional parameters :tries, :on, :sleep, :matching,
:ensure, :exception_cb and runs the passed block. Should an exception occur,
it'll retry for (n-1) times.
Should the number of retries be reached without success, the last exception will
be raised.
This library provides C++11 bindings/wrapper over a subset of SDL2
functions with extra features proided with modern C++ such as:
* RAII-style initialization and destruction
* Full error checking: exception is thrown if any SDL function
fails. Exception itself allows to retrieve SDL error string
* C++11 move semantics support, which allow you to store SDL objects
in containers and pass/return them by value with no overhead
Shapefile C Library V1.2
Purpose
The Shapefile C Library provides the ability to write simple C
programs for reading, writing and updating (to a limited extent) ESRI
Shapefiles, and the associated attribute file (.dbf).
Documentation
/usr/local/share/doc/shapelib/shapelib.html - General docs
/usr/local/share/doc/shapelib/shp_api.html - Shape (.SHP) File API
/usr/local/share/doc/shapelib/dbg_api.html - Attribute (.DBF) File API
Check Shapelib Homepage below:
Source Navigator NG is a source code analysis tool.
With it, you can edit your source code, display relationships
between classes and functions and members, and display call trees.
You can navigate your source code and easily get to declarations
or implementations of functions, variables and macros (commonly
called "symbols") which helps you discovering and mapping unknown
source code for enhancement or maintenance tasks.
It is based upon the old source navigator and strives to
improve usability and performance.
Styx is a scanner/parser generator designed to address some
shortcomings of the traditional lex/yacc combination.
It has unique features like automatic derivation of depth grammar,
production of the derivation tree including it's C interface,
preservation of full source information and pretty printing to
facilitate source-source translation, persistence to aid rapid
interpreter writing.
For application in contemporary computing environments, it supports
unicode, reentrancy and offers thread-safeness.
Trio is a fully matured and stable set of printf and string functions designed
be used by applications with focus on portability or with the need for
additional features that are not supported by standard stdio implementation.
There are several cases where you may want to consider using trio:
1.Portability across heterogeneous platforms.
2.Embedded systems without stdio support.
3.Extendability of unsupported features.
4.Your native version don't do everything you need.