Lobsters
11–20 of 212 posts
Re: Lobsters
#12Earlier quoted context omitted.
I feel versions in Gemfile tend to make things harder to update and often end up accidentally retaining some old version. You won't get a random version bump unless you do `bundle update` anyway, since you have a lock file. Unless you really need a specific version, let those gems be free :)
> Unless you really need a specific version, let those gems be free A wet dream of anyone looking for a method to perform a supply chain attack.
Re: Lobsters
#13Would be less of a ghost town if they allowed sign ups rather than via invitation only. Appreciate that's kinda the point of the site, but if it's a ghost town then it's clearly petered out.
Quantity may have a quality all its own in warfare but for comments having the invite tree and accountability is pretty nice! I'd rather have (2) really insightful comments than 300 trying to promote themselves.
Re: Lobsters
#14Re: Lobsters
#15Re: Lobsters
#16Earlier quoted context omitted.
I feel versions in Gemfile tend to make things harder to update and often end up accidentally retaining some old version. You won't get a random version bump unless you do `bundle update` anyway, since you have a lock file. Unless you really need a specific version, let those gems be free :)
> Unless you really need a specific version, let those gems be free A wet dream of anyone looking for a method to perform a supply chain attack.
Re: Lobsters
#17Would be less of a ghost town if they allowed sign ups rather than via invitation only. Appreciate that's kinda the point of the site, but if it's a ghost town then it's clearly petered out.
I don't have an account although a couple things I wrote got posted there, if I'd realized it at the time that apparently qualifies me.
Overall I don't know if the quality is better than HN, even if the SNR is higher, there is just so much less total that the sum of good stuff is lower. It's almost completely free of politics, gossip, non-tech stuff though which is nice. For example I don't think any of the OpenAI drama was covered there.
Otoh the links posted there are essentially a subset of what's posted on HN.
Re: Lobsters
#18Would be less of a ghost town if they allowed sign ups rather than via invitation only. Appreciate that's kinda the point of the site, but if it's a ghost town then it's clearly petered out.
Quantity may have a quality all its own in warfare but for comments having the invite tree and accountability is pretty nice! I'd rather have (2) really insightful comments than 300 trying to promote themselves.
The only thing I saw that ever significantly improved the quality of comments is vote-based comment system when it firstly started to emerge (I'm thinking Reddit in its first few years). But unfortunately it nowadays has been gamed to death, probably even worse than old public forums.
Re: Lobsters
#19Would be less of a ghost town if they allowed sign ups rather than via invitation only. Appreciate that's kinda the point of the site, but if it's a ghost town then it's clearly petered out.
Re: Lobsters
#20No version numbers in the Gemfile? That's brave.
I feel versions in Gemfile tend to make things harder to update and often end up accidentally retaining some old version. You won't get a random version bump unless you do `bundle update` anyway, since you have a lock file. Unless you really need a specific version, let those gems be free :)
With ruby being untyped and lazy evaluated, it's even worse. If any library's api changes between versions, unless you're sure you have a unit test for that function, it'll happily deploy and crash in production.
Plus as long as you're using a service like snyk.io to make sure that you're covering security vulnerabilities, there's usually not much reason to updating if it works.