andrewducker (
andrewducker) wrote2011-09-02 01:14 pm
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Question for the geeks in the crowd
Okay, so if I want something to scrape an RSS feed and turn it into a daily
LJ/DW post, how hard is that going to be? Anyone got something handy that
I can kick off on a daily basis?
Or a service they could recommend?
LJ/DW post, how hard is that going to be? Anyone got something handy that
I can kick off on a daily basis?
Or a service they could recommend?
no subject
It's the hibernate equivalent for BigTable. Allows you to just put objects into the datastore and get them back. And because BigTable is basically just a key/value store it works incredibly simply.
You can do stuff like this:
Car porsche = new Car("2FAST", "red");
ofy.put(porsche);
and then retrieve it with:
Car car = ofy.query(Car.class).filter("vin", "2FAST").get();