public marks

PUBLIC MARKS from jpcaruana with tags google & programmation

2011

cogen - Crossplatform asynchronous network oriented python framework based on python 2.5 enhanced generators. - Google Project Hosting

cogen is a crossplatform library for network oriented, coroutine based programming using the enhanced generators from python 2.5. The project aims to provide a simple straightforward programming model similar to threads but without all the problems and costs.

2009

osmos - Google Code

(via)
Osmos provides on-disk ordered key-value tables for Erlang, based on a sort-merge machine with user-defined merging semantics. This allows a very high volume of updates to be handled efficiently while still supporting a variety of useful operations with transactional safety, e.g., adding to a counter, taking the union of sets, or simply replacing a record. Osmos is ideal for situations where updates are much more frequent than queries, for example, collecting statistics for reporting, and periodically generating reports.

scalaris - Google Code

(via)
Scalaris is a scalable, transactional, distributed key-value store. It can be used for building scalable Web 2.0 services.

plists - Google Code

plists is a drop-in replacement for the Erlang module lists, making most list operations parallel. It can operate on each element in parallel, for IO-bound operations, on sublists in parallel, for taking advantage of multi-core machines with CPU-bound operations, and across erlang nodes, for parallizing inside a cluster. It handles errors and node failures. It can be configured, tuned, and tweaked to get optimal performance while minimizing overhead.

2008

erlaws - Google Code

by 1 other (via)
Erlaws is a collection of client implementations of Amazon's WebServices offerings. Currently there are clients for S3, SQS and SDB.

google-guice - Google Code

by 1 other
Guice alleviates the need for factories and the use of new in your Java code. Think of Guice's @Inject as the new new. You will still need to write factories in some cases, but your code will not depend directly on them. Your code will be easier to change, unit test and reuse in other contexts.

gnizr - Google Code

by 2 others (via)
gnizr™ (gə-nīzər) is an open source application for social bookmarking and web mashup. It is easy to use gnizr to create a personalized del.icio.us-like portal for a group of friends and colleagues to store, classify and share information, and to mash-it-up with information about location. It's free.

erlmail - Google Code

ErlMail is a complete email solution written in Erlang. It contains (or will contain) full RFC compliant SMTP, IMAP and POP clients and servers written in a modular fashion to allow others to use the modules in their own projects.

Google App Engine - Google Code

by 3 others
Google App Engine enables you to build web applications on the same scalable systems that power Google applications.

2007

MyGWT

MyGWT is an open source Java library for the Google Web Toolkit. The library helps developers easily create compelling desktop like AJAX web applications. No messing around with HTML, CSS, or images, all MyGWT widgets look great out the box. MyGWT is 100% native, using no external JavaScript code or libraries. Taka a look at the Explorer Demo to see MyGWT in action. MyGWT is a sub project of Ext JS and is licensed under the Open Source LGPL 3.0 license.

gwt-ext - Google Code

by 1 other
GWT-Ext is a library that integrates Ext with GWT.

google-collections - Google Code

by 2 others (via)
The Google Collections Library 0.5 (ALPHA) is a suite of new collections and collection-related goodness for Java 5.0, brought to you by Google. This library is a natural extension of the Java Collections Framework you already know and love. The major new types are: * BiMap. A Map that guarantees unique values, and supports an inverse view. * Multiset. A Collection that may contain duplicate values like a List, yet has order-independent equality like a Set. Often used to represent a histogram. * Multimap. Similar to Map, but may contain duplicate keys. Has subtypes SetMultimap and ListMultimap providing more specific behavior. There are also more than a dozen collection implementations, mostly of the interfaces above, but not all. ReferenceMap, for example, is a ConcurrentMap implementation which easily handles any combination of strong, soft or weak keys with strong, soft or weak values. Static utility classes include: * Comparators. Natural order, compound, null-friendly, ad-hoc . . . * Iterators and Iterables. Element-based equality, cycle, concat, partition, filter with predicate, transform with function . . . * Lists, Sets and Maps. A plethora of convenient factory methods and much more. * PrimitiveArrays: "boxing"/"unboxing" of primitive arrays And there's more: * Forwarding collections * Constrained collections * Implementation helpers like AbstractIterator To understand everything offered by this library, you'll have to explore the API using the "API documentation" link at the right. Further information can be found using "Wiki" tab above. We will post binaries soon, but until then, you can obtain the code using Subversion. Just do a checkout of http://google-collections.googlecode.com/svn/trunk/. We hope you find this library half as useful as we have ourselves!