gissmog

gissmog

gissmog  //  Rails, Mac, Tech, CSS/Design, Fun, Hackfressen.

Sep 23 / 9:54pm

Generating XML-Sitemaps 4 Google

Loading mentions Retweet
Filed under  //  Dev   quamm   Rails  

Comments (0)

Sep 15 / 6:09am

Carsonified » Why You Should Switch from Subversion to Git

Loading mentions Retweet
Filed under  //  Dev  

Comments (0)

Sep 11 / 5:30am

Cassandra Project

Welcome to the Cassandra Project

Cassandra is a highly scalable, eventually consistent, distributed, structured key-value store. Cassandra brings together the distributed systems technologies from Dynamo and the data model from Google's BigTable. Like Dynamo, Cassandra is eventually consistent. Like BigTable, Cassandra provides a ColumnFamily-based data model richer than typical key/value systems.

Cassandra was open sourced by Facebook in 2008, where it was designed by one of the authors of Amazon's Dynamo. In a lot of ways you can think of Cassandra as Dynamo 2.0. Cassandra is in production use at Facebook but is still under heavy development.

Loading mentions Retweet
Filed under  //  Dev   www  

Comments (0)

Sep 3 / 12:58am

wincent.com: Installing memcached 1.4.1 on Mac OS X 10.6 Snow Leopard

Installing libevent

libevent is a prerequisite for memcached:

$ curl -O http://www.monkey.org/~provos/libevent-1.4.12-stable.tar.gz
$ tar xzvf libevent-1.4.12-stable.tar.gz 
$ cd libevent-1.4.12-stable
$ ./configure
$ make
$ make verify
$ sudo make install

Installing memcached

$ curl -O http://memcached.googlecode.com/files/memcached-1.4.1.tar.gz
$ tar xzvf memcached-1.4.1.tar.gz 
$  cd memcached-1.4.1
$ ./configure
$ make
$ make test
$ sudo make install

Testing

In my case I have a script in the script dir of a Rails application that I call whenever I want to start or stop memcached, so I just used that:

$ script/memcached 
memcached not running: starting
$ script/memcached 
memcached running: stopping

(The script basically just does memcached -d -P pidfile -l 127.0.0.1 to start memcached.)

See also

Loading mentions Retweet
Filed under  //  Dev   OS X   Rails   Snow Leopard  

Comments (0)

Sep 1 / 10:36pm

jQTouch — jQuery plugin for mobile web development

Loading mentions Retweet
Filed under  //  Dev   iphone  

Comments (0)

Sep 1 / 5:39am

35 Excellent Wireframing Resources | Developer's Toolbox | Smashing Magazine

Loading mentions Retweet
Filed under  //  Dev   www  

Comments (0)

Aug 31 / 10:27am

IxEdit

IxEdit is a JavaScript-based interaction design tool for the web. With IxEdit, designers can practice DOM-scripting without coding to change, add, move, or transform elements dynamically on your web pages. Especially, IxEdit must be useful to try various interactions rapidly in the prototyping phase of your web application.

Loading mentions Retweet
Filed under  //  dev   www  

Comments (0)

Aug 28 / 11:22pm

MongoDB - klingt sehr, sehr interessant!!

Mongo (from "humongous") is a high-performance, open source, schema-free document-oriented database. MongoDB is written in C++ and offers the following features:

Loading mentions Retweet
Filed under  //  Dev  

Comments (0)