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
no subject
no subject
Just not sure when I'll have the time.
no subject
no subject
no subject
no subject
no subject
I'm thinking I could write something for Google App Engine if I can get a few hours this weekend. How hard can it be?
no subject
no subject
no subject
no subject
no subject
no subject
And I may use it for the basis of something on GAE, if I have the time.
no subject
So, when there are more than N, it posts all of them at the point where it notices, and it has a chance to notice every time it runs.
If you use it, you might want to take out the hack that means it never mentions religion in the post titles and you'll need to tell it your password a different way (mine comes from an XML file I use to configure the backup tool).
no subject
no subject
Getting there though.
no subject
no subject
no subject
TBH, everything I've used GAE for has had such simple data requirements that I've never needed to dig into that side of things. But I've used MongoDB when dicking around with Rails and am guessing that it's reasonably similar.
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();