Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 1

The Steam Condenser is a multi-language library for querying the Steam Community, Source and GoldSrc game servers as well as the Steam master servers. Currently it is implemented in Java, PHP and Ruby.

5.0
 
  0 reviews  |  3 users  |  20,387 lines of code  |  7 current contributors  |  Analyzed 1 day ago
 
 

Data services and visualization. This project provides tools to play with geographical data. It also works with non-geographical data, except for map visualizations :). There are embedded data sources in the project, but you can easily play with your own data in addition to the available ones. ... [More] After data loading, you can: - perform various types of queries (find this key, or find keys with this property) - make fuzzy searches based on string distance (find things roughly named like this) - make phonetic searches (find things sounding like this) - make geographical searches (find things next to this place) - get results on a map, or export it as csv data, or as a Python object [Less]

5.0
 
  0 reviews  |  2 users  |  8,996 lines of code  |  2 current contributors  |  Analyzed 4 days ago
 
 

C++ Bloom Filter Library, with the following capabilities: Optimal parameter selection based on expected false positive rate. Union, intersection and difference operations between bloom filters. Compression of in-use table (increase in false positive probability vs space) Portable and efficient ... [More] source code implementation. Compatible Compilers: GCC 4.0+ Intel C++ Compiler 9.0+ Microsoft Visual C++ 8.0+ Comeau C/C++ 4.1+ For more information please visit: http://www.partow.net/programming/hashfunctions/index.html [Less]

5.0
 
  0 reviews  |  1 user  |  896 lines of code  |  0 current contributors  |  Analyzed 6 days ago
 
 

q3query is a PHP class to send rcon commands to a quake 3 server. It will only work in PHP 5.

4.0
   
  0 reviews  |  1 user  |  37 lines of code  |  0 current contributors  |  Analyzed over 1 year ago
 
 

pyquake3 is a Python class (or module) that can query and execute rcon commands on a Quake 3 server.

5.0
 
  0 reviews  |  1 user  |  118 lines of code  |  0 current contributors  |  Analyzed over 1 year ago
 
 

pdoext is a database abstraction layer for PHP5, based on PDO. It is by no means a full blown ORM, and should rather be seen as an extension of PDO. The library consists of three parts; The connection is a pre-requisite for the other two, but you could use the connection on its own. The main ... [More] component is the connection class. This extends from the main PDO class and adds some convenience methods as well as patching some bugs. The rest of the library consists of an object oriented query building API, similar to Hibernate's Criteria API. This allows an elegant way of constructing complex queries dynamically. There is also a simple table data gateway, for basic CRUD operations. The table gateway and the query api does not depend on each other, so you can use them separately. Below are some code samples, to give you an idea about the scope of the library: Query abstraction:Example 1: Simple select$db = new pdoext_Connection(...); $query = new pdoext_Query($db, "people"); $query->addCriterion("first_name", "John"); $db->query($query->toSQL());Results in: select * from `people` where `first_name` = 'John'Example 2: Select with a left join and various options$db = new pdoext_Connection(...); $query = new pdoext_Query($db, "people"); $query->addColumn("first_name"); $query->setLimit(10); $query->setOffset(10); $join = $query->addJoin("accounts", "LEFT JOIN"); $sub = $join->addCriterion(new pdoext_query_Criteria("OR")); $sub->addConstraint("people.account_id", "accounts.account_id"); $sub->addCriterion("people.account_id", 28, ">"); $query->addCriterion('first_name', "John"); $db->query($query->toSQL());Results in: select `first_name` from `people` left join `accounts` on `people`.`account_id` = `accounts`.`account_id` or `people`.`account_id` > '28' where `first_name` = 'John' limit 10 offset 10Table gateway:Assuming the following table: CREATE TABLE users ( id INTEGER, name VARCHAR(255) )Example 3: Insert a record$db = new pdoext_Connection(...); $users = new pdoext_TableGateway("users", $connection); $users->insert(array("id" => 42, "name" => "John"));The table now contains: id name 42 John Example 4: Update a record... $users->update(array("name" => "Jim"), array("id" => 42));The table now contains: id name 42 Jim Example 5: Fetch a single record... $record = $users->fetch(array("id" => 42));Returns: Array( 'id' => '42', 'name' => 'Jim' );Example 6: Delete a record... $users->delete(array("id" => 42));More examples in the test-suite: http://code.google.com/p/pdoext/source/browse/trunk/test/ [Less]

0
 
  0 reviews  |  0 users  |  1,169 lines of code  |  0 current contributors  |  Analyzed 6 days ago
 
 

A standalone Javascript DOM selector engine.

0
 
  0 reviews  |  0 users  |  3,385 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

PHP Qsteam is a library which permit Querying SteamGame servers, without using the php's sockets, but only basic func. It's perfect for GSP's who could have many server to query as fast as possible. Working on: FreeBSD, Linux How to install: phpize ./configure --enable-qsteam make ... [More] make install Function avaible and functionnal: GameServerData steam_init(string $ip, int port); -> Query the server. mixed steam_getType(GameServerData $res, $print = TRUE); mixed steam_getVersion(GameServerData $res, $print = TRUE); mixed steam_getName(GameServerData $res, $print = TRUE); mixed steam_getMap(GameServerData $res, $print = TRUE); mixed steam_getGamedir(GameServerData $res, $print = TRUE); mixed steam_getGamedescr(GameServerData $res, $print = TRUE); mixed steam_getAppid(GameServerData $res, $print = TRUE); mixed steam_getPlrs(GameServerData $res, $print = TRUE); mixed steam_getMaxplrs(GameServerData $res, $print = TRUE); mixed steam_getBotplrs(GameServerData $res, $print = TRUE); [Less]

0
 
  0 reviews  |  0 users  |  621 lines of code  |  0 current contributors  |  Analyzed over 1 year ago
 
 

Haskell Interface to the Ohloh API

0
 
  0 reviews  |  0 users  |  6,900 lines of code  |  1 current contributor  |  Analyzed 4 days ago
 
 

The Entity Data Model (EDM) is a conceptual data model that can be used to model the data of a particular domain so that applications can interact with data as entities or objects. Through the EDM, Java Persistence API (JPA), such as Hibernate exposes entities as objects in the Java environment. ... [More] This makes the object layer an ideal target for Java Query (JaQue) support. JaQue to JPA enables developers to write queries against the database from the same language used to build the business logic. Conceptually this project is a Java analog of the Microsoft LINQ to Entities technology. [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 7 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.