Bespoke software, and a really simple RSS aggregator
1–10 of 12 posts
Re: Bespoke software, and a really simple RSS aggregator
#2Re: Bespoke software, and a really simple RSS aggregator
#3Re: Bespoke software, and a really simple RSS aggregator
#4Re: Bespoke software, and a really simple RSS aggregator
#5Nice idea, but it feels like this itself should produce an RSS feed so that others can benefit from your collection - for the same reason you yourself use RSS.
Re: Bespoke software, and a really simple RSS aggregator
#6Re: Bespoke software, and a really simple RSS aggregator
#7For example, I have a small cron script that emails me today's showtimes for my local film museum (which shows old films on a large screen) along with the predicted score from Criticker.
It would be cool if there was some very easy way (I'm lazy!) of letting a non-techie benefit from this, without me having to deal with a publicly available server, storing their Criticker credentials, etc.
I guess the easiest way would be a Chrome extension, but I'm not a fan of the whole app store part, plus I don't want to have to rewrite in JS. And that still leaves mobile users in the cold, which is dumb.
Re: Bespoke software, and a really simple RSS aggregator
#8I have to admit (with a bit of shame, as a Free Software fan) that most of the software I write on a personal basis is like this: bespoke & unpublished. It's just too damn work for what I expect to be a pretty small audience. For example, I have a small cron script that emails me today's showtimes for my local film museum (which shows old films on a large screen) along with the predicted score from Criticker. It woul…
I guess this might have been very useful as a Huginn module. Maybe Urbit matures to be a functional version of this. The problem is that today’s computing culture grooms people to be dependent on others’ servers/services, rather than being in control of one machine of theirs.
Re: Bespoke software, and a really simple RSS aggregator
#9I have to admit (with a bit of shame, as a Free Software fan) that most of the software I write on a personal basis is like this: bespoke & unpublished. It's just too damn work for what I expect to be a pretty small audience. For example, I have a small cron script that emails me today's showtimes for my local film museum (which shows old films on a large screen) along with the predicted score from Criticker. It woul…
Barring that, Github Pages is pretty good. You can get pretty far with a webapp that has some degree of caching/cookie/offline storage. Probably enough to display your local showtimes and maybe even interface with the user's Criticker – presuming Criticker has a CORS-enabled API. Automatic cross-platform UI and mobile support, no app stores or extensions. With Github Actions, I think you could even webpack a React app if you wanted.
But running it on a schedule and sending an email.... suddenly much more work.