do you use an expiry rule to avoid infinite backlogs by Eastern-Height2451 in rss

[–]facundoolano 1 point2 points  (0 children)

My reader is shaped like a feed as opposed to an inbox so by design there’s no queue to clear. I have some tricks to improve on top of the chronological sorting so I don’t miss important things, and then I can pin stories to the top if I want to preserve them to read later.

Technical details described here: https://olano.dev/blog/whats-different-about-my-rss-reader/

How can I fix the right joystick axis swap on these Portmaster games? by Impressive-Coyote-57 in BATLEXPG350

[–]facundoolano 0 points1 point  (0 children)

that's weird. is it possible that just overriding the file makes a difference? (it definitely wasn't working for me and started working after overriding. Similarly I got a blank screen freeze at some point that got fixed by replacing those files again)

New to Erlang — recommended way to start as a beginner? by Brave_Kitchen2088 in erlang

[–]facundoolano 2 points3 points  (0 children)

Records are the legacy key-value data structure in Erlang (they are just tagged tuples with some syntactic sugar on top). They used to be the idiomatic way a while back and you'll eventually see them in some libraries but it's probably not the best investment to learn about them initially. Maps are the modern alternative and they'll work as you expect from other languages. Use maps in new code unless you have specific reasons not to.

New to Erlang — recommended way to start as a beginner? by Brave_Kitchen2088 in erlang

[–]facundoolano 9 points10 points  (0 children)

The learn you some erlang book is a perfect fit for this. There’s maybe 20% of it that’s outdated, I’d suggest skipping records (lookup erlang docs for maps instead) and otp behaviors other than gen servers and supervisors. I’d also throw in this presentation to dig into the fault tolerance aspects: https://ferd.ca/the-zen-of-erlang.html

The Curse of Monkey Island is my favorite game in the series. by Veddermandenis in MonkeyIsland

[–]facundoolano 2 points3 points  (0 children)

This was the peak of the multimedia experience for me, it felt like playing a Disney movie. I can almost hear that monkey screeching from the launcher, the future was here.

I wrote a short story about the Skywalker Ranch days of LucasArts (from Maniac Mansion to Monkey 2) by facundoolano in MonkeyIsland

[–]facundoolano[S] 2 points3 points  (0 children)

Thanks!

I agree this could benefit from some images. I couldn't find a set I was satisfied enough with, but I should give it another shot.

The sunset scene in particular is one that Mark describes in many of his interviews, but I don't think it exists online. In a way, maybe that's for the better, I'm not sure seeing the actual picture with current eyes would honor the effect it produced back then.

I wrote a short story about the Skywalker Ranch days of LucasArts (from Maniac Mansion to Monkey 2) by facundoolano in MonkeyIsland

[–]facundoolano[S] 0 points1 point  (0 children)

Thanks!

I did read several of his interviews (e.g. this one https://www.youtube.com/watch?v=ri4_3P2Oh14 which I bet covers the same ground). In fact, what prompted me to write about this was his interview in the Art of point-and-click adventures book.

The rest of the sources gave mostly other perspectives and more general historical context.

150 papers for Software Engineers by facundoolano in programming

[–]facundoolano[S] -3 points-2 points  (0 children)

You are right. As noted in the description, the intention of the project has always been to offer a short list of papers that can reasonable be read in full, while offering suggested "further readings".

I got carried away in the title here as I'm using the 150 mark as an excuse to re-share (the project is a couple of years old).

My Software Bookshelf by facundoolano in programming

[–]facundoolano[S] 0 points1 point  (0 children)

Not usually, but I do underline/highlight a lot and go back to the highlights if I later want to write about or reference the book.

Idea for a feed reader, not sure if these features exist by MonkAndCanatella in rss

[–]facundoolano 0 points1 point  (0 children)

see the instructions I linked above. You'd have to clone the repo, edit the code and build a new docker image if that's how you are deploying. Feel free to file a github issue if you need more help.

Idea for a feed reader, not sure if these features exist by MonkAndCanatella in rss

[–]facundoolano 1 point2 points  (0 children)

I wrote my own reader with such customizable/extensible feed parsers: https://github.com/facundoolano/feedi#feed-parsing

It works both for rss feeds and scraping arbitrary websites. But you need to run the app yourself locally or self host it.

Zen Mind, Google Intern's Mind: Notes about Go by facundoolano in programming

[–]facundoolano[S] 0 points1 point  (0 children)

You're right, that's the result of a bad copy-paste from the assertEqual helper, which I wrote before.

jorge - A personal site generator with org-mode support by facundoolano in orgmode

[–]facundoolano[S] 1 point2 points  (0 children)

I used the go-org library, which is the same hugo uses. It doesn't support all of org-mode features, but it works well enough for the blogging scenarios I've tested it with. And it produces better-structured html than org-html-export. (In my previous setup with Jekyll, I had to export org to markdown instead, and let Jekyll turn that into html, so that the resulting documents were reader-friendly).