HN user

dyogenez

159 karma

Currently building a replacement for Goodreads out of spite for Amazon at https://hardcover.app

Previously: Pluralsight - 2014-2018 (IPO) Code School - 2011-2014 (acq by Pluralsight) Izea (Sponsored Tweets, PayPerPost) - 2009-2011

Posts19
Comments63
View on HN
adamfortuna.com 7mo ago

From SimCity 2000 to Ruby on Rails: How Games Sparked My Love of Orchestration

dyogenez
2pts1
hardcover.app 7mo ago

Show HN: I built a trending books by month Bump Chart with Hardcover data

dyogenez
2pts0
hardcover.app 1y ago

We Fell Out of Love with Next.js and in Love with Ruby on Rails and Inertia.js

dyogenez
9pts3
hardcover.app 1y ago

We survived 10k requests/second: Switching to signed asset URLs in an emergency

dyogenez
147pts168
hardcover.app 2y ago

Show HN: Hardcover – Letterboxd for Books

dyogenez
31pts24
hardcover.app 4y ago

$9,207 Spent, 400 Users: 8 Lessons From Hardcovers First Year

dyogenez
2pts0
hardcover.app 5y ago

The Perfect Startup Tech Stack?

dyogenez
4pts0
minafi.com 8y ago

An Interactive Guide to Early Retirement and Financial Independence

dyogenez
2pts0
ng-guess.com 10y ago

Ng-guess.com: When do you think Angular 2.0 will be released?

dyogenez
4pts0
adamfortuna.com 10y ago

How I Ended Up – And Stayed – At Code School

dyogenez
1pts0
adamfortuna.com 10y ago

Mastery is a Trap: You don't need to be a master to accomplish your goals

dyogenez
2pts0
www.codeschool.com 11y ago

How a Bug in My Ruby Code Cost Code School $13,000

dyogenez
12pts2
www.codeschool.com 12y ago

New Code School Course Released: Warming Up With Ember.js

dyogenez
1pts0
evaleverything.com 12y ago

Teaching iOS 7 at Code School

dyogenez
1pts0
evaleverything.com 12y ago

Designing eval everything

dyogenez
1pts0
www.codeschool.com 13y ago

Code School's Greatest Hits Collection Vol. 1 - Course Jingles

dyogenez
3pts0
lineofthought.com 14y ago

List of Technologies behind Facebook - Line of Thought

dyogenez
2pts0
blog.adamfortuna.com 15y ago

Launching a Project in a Month

dyogenez
3pts0
news.ycombinator.com 15y ago

Show HN: Review my site LineOfThought.com, Share the technology behind your site

dyogenez
13pts6

Memcached was a savior for caching when it launched. I love that it was created in 2003 by Brad Fitzpatrick for LiveJournal. Each post on a users feed could have different access restrictions, and this allowed posts (or entire pages) to be cached.

I used it with Ruby on Rails for many years. It sped up pages, and just worked.

The downside (and upside for speed) is (and always was) that cache was saved in memory not disk. This meant hosting would be expensive if you have a large scale site with a wide amount of data to cache.

Solid cache has been a savior for those cases for me. We have over 100gb of cache for a project I'm working on, and it's stored in postgres on disk, with fast lookups with an index and expirations that happen automatically in Rails to delete those rows.

If I had a smaller cache need and was already using Redis, I'd probably just use that. But if speed was the number 1 factor, and I'd try benchmarking Memcached vs Redis.

Another +1 for Tiller!

I'm doing something similar with Tiller (which I've been using since Mint was acquired by Intuit).

It's neat to see how OP did this using a Claude Routine though. My version locally uses a local qwen model + an API key (annoyingly created using OAuth) with sheets access. A Claude Routine would've been significantly easier

One game that changed my life was SimCity 2000. It shaped how I think about building products - before I even knew the term. Just published a new blog post about how it impacted me.

Lately I've been thinking about how the feeling I get creating products is chasing the feeling I had building my first city. When I thought more about it, I was amazed at how well the ideas from the game related to building products.

Post author here. I've been developing in Ruby and Rails for almost 20 years. Here are some of the downsides in my opinion.

- The Global interpreter lock (GIL) in Ruby is less performant than async thread programming in JS (and some other languages)

- Rails creates a monolith rather than a bunch of independent endpoints. If you have a large team, this can be tricky (but is great for smaller teams who want to move fast)

- How Rails integrates with JS/CSS is always changing. I recommend using Vite instead of the asset pipeline, unless you're going with the stand Rails stimulus js setup.

- Deploying Rails in a way that auto-scales the way serverless functions can is tricky. Their favored deployment is to server of set size using Kamal.

You can do this with Next.js SSR

Yep! It'd be possible with Next.js. The difference is how it's organized. In Next.js with RSCs, we were fetching data for each part of the page where it's used (trending books, Live events, blog posts, favorite books). Each of those could be their own cache hit to Redis.

One advantage of Rails is the controller. We can fetch all data in s single cache lookup. Of course it'd be possible to put everything needed in a single lookup in Next.js too, but then we wouldn't be leveraging RSCs.

I tried self-hosting Next.js on Digital ocean, but it crashed due to memory leaks without a clear way to understand where the leak was. Google Cloud Run and Vercel worked because it would restart each endpoint. We have more (and cheaper) hosting options with Rails.

Sure, some use-cases might warrant the flexibility that GraphQL uses. A book tracking app does not.

I agree! If you're in control of the experience, then I wouldn't choose GraphQL for a limited experience either.

The project started because Goodreads was retiring their API, and I wanted to create something better for the community. I have no idea how people will use it. The more we can provide, and the more flexible it is, the more use cases it'll solve.

So far we have hundreds of people using the GraphQL API for all kinds of things I'd never expect. That's the selling point of GraphQL for me - being able to build and figure out the use case later.

But I would never want to create a GraphQL API from scratch (not again). In this case, Hasura handles that all for us. In our case it was easier than creating a REST API.

Thanks for the comments! You hit on a lot of why our app is structured the way it is. I agree too, we could've put those investments into Next.js rather than migrating to Rails. The difference was with Rails I could envision what the endpoint looked like (codebase, costs, caching, dev env, deployment, hosting options, etc). If we were to invest that time Next.js, some of those answers were (and still are) unclear. Agree we could still get there, it just wouldn't be as clear a path.

I haven't so far. I’ve preferred the new way:

With RSCs, I’d have code scattered throughout components that would hit APIs to get data.

With Rails + Inertia, that code is all in a Rails controller - usually with a serializer.

I’m still getting used to using InertiaRails.optional there which is what’s needed for a Suspense like experience w/Inertia. Having everything in controllers again is nice.

This sounds like a solid next step. I’d like to stop storing URLs we don’t control in our DB and share URLs to these images behind a CDN. We could slowly roll that out and update each image url in our database over time with both continuing to work.

I didn’t realize you could do this with a private bucket by granting it access either. That combined with IP throttling at the CDN level might be a good replacement for this and cut out the need for Rails.

Thanks for the comment! Few things to reply to from here.

We didn’t have list access enabled, but someone did get a list of files from our API.

Rails with Paperclip and active storage is amazing. Our front end is in Next.js though, so we have people upload straight from Next to GCS, then we sent the GCS URL to Rails. We don’t do pre-processing of images, so just storing the original is good.

They can still download every image, but they’ll be throttled now and kicked out at the middleware level, or permission denied from GCP. 60/min vs 10k/min.

The signature calculation happening might not be hitting Google in that case. I noticed a long data dump in the console after requesting the signed URL combined with the additional latency and assumed. Maybe it’s just a cryptically difficult calculation like bcrypt and it takes a while. Will have to check, because it’s be great to not need a network reliant call for that.

That would solve some of the problems. If the site was previously behind a CDN with a rate limit, I don't think we would have even had this problem.

Given that we have the problem now, and that people already have the non-CDN URLs, we needed a solution that allowed us to roll out something ASAP, while allowing people that use our API to continue using the image URLs they've downloaded.

If you're able to do that, then you have a huge skill! I'm not much of a devops engineer myself, so I'm leveraging work done by others. My skills are in application design. For hosting I try to rely on what others have built and host there.

If I had your skills then our costs would be much smaller. As it stands now we pay about $700/month for everything - the bulk of it for a 16gb ram / 512gb space database.