HackerTrans
TopNewTrendsCommentsPastAskShowJobs

bestinterest

no profile record

Submissions

The Complexity of Simplicity [video]

youtube.com
2 points·by bestinterest·8 months ago·0 comments

The Myth of the Modular Monolith [video]

youtube.com
2 points·by bestinterest·2 years ago·0 comments

The Rails Doctrine

rubyonrails.org
17 points·by bestinterest·2 years ago·0 comments

Ask HN: What to work on while on a US VISA?

2 points·by bestinterest·2 years ago·0 comments

Go 1.22

go.dev
419 points·by bestinterest·2 years ago·160 comments

We put Hey on Ruby YJIT

twitter.com
7 points·by bestinterest·3 years ago·1 comments

Problem with software is bitrot. Web app lasts about a year, iOS app 2–4 years

twitter.com
18 points·by bestinterest·3 years ago·13 comments

Ideas about a new programming language for games (2014)

youtube.com
1 points·by bestinterest·4 years ago·0 comments

Ask HN: What is your experience with NewSQL databases so far?

3 points·by bestinterest·4 years ago·0 comments

Ask HN: Articles/Books to understand how fast computers are?

2 points·by bestinterest·4 years ago·2 comments

Ask HN: Where do you find technical papers that are worth reading?

2 points·by bestinterest·4 years ago·2 comments

[untitled]

1 points·by bestinterest·4 years ago·0 comments

The Only Unbreakable Law

youtube.com
5 points·by bestinterest·4 years ago·1 comments

Ask HN: What is the main argument for a housing market crash?

8 points·by bestinterest·4 years ago·17 comments

Javalin 4.0.0 Released

javalin.io
1 points·by bestinterest·5 years ago·0 comments

Hotwire for Rails Developers

pragmaticstudio.com
2 points·by bestinterest·5 years ago·0 comments

Ask HN: Golang is almost 11 years old, what do you think of it?

1 points·by bestinterest·5 years ago·1 comments

comments

bestinterest
·2 years ago·discuss
Nice, super responsive - what's this using underneath? I see canvas + svelte
bestinterest
·3 years ago·discuss
Noob question,

What makes languages like Zig, Rust, C and C++ the best fit for cross platform applications over many garbage collected languages? Why is bringing the language runtime a problem?

What does it mean to compile to a C-compatible library?

EDIT:

I decided to ChatGPT my question instead.

https://chat.openai.com/share/9a5f9f7a-0f5d-4cf6-95fc-4e0ec9...
bestinterest
·3 years ago·discuss
Here is a quick clip of my experience https://streamable.com/z3awpq
bestinterest
·3 years ago·discuss
I did have a quick play with Grafana Cloud using the default dashboards for their linux agent were so incredibly slow when trying to navigate simple metrics.
bestinterest
·3 years ago·discuss
Does anyone know of other tools like this which are a web UI of systemd logs on a VPS which I access, self hosted, from a website and secure behind a password?

I use New Relic for APM already, but I was surprised to find that New Relic does not support Debian 11 for their default infrastructure agent to forward logs from?

https://docs.newrelic.com/docs/logs/forward-logs/forward-you...
bestinterest
·4 years ago·discuss
Even if you fix where the backend is & use something like Edge workers around the world, you still run into the issue of where the database is hosted. Making all the work useless. Any useful endpoint is going to change some state like the timesheet app.
bestinterest
·4 years ago·discuss
I think this post has the best information on it as I am also learning here https://journal.stuffwithstuff.com/2015/02/01/what-color-is-...

It is not just `magic` syntax imo, it is viral to your codebase. The blog post does way more justice than I can explain.
bestinterest
·4 years ago·discuss
I very much like the ethos of Golang for this reason. Still not had a reason to use it but like the idea of mastering the fundamentals in a weekend. Even if I lose the flexibility of LINQ or Java streams.

It feels like a scale of language conservativeness Go all the way at the top, Java somewhat in the middle (a little above) and C# at the bottom. It is going the route with lots of features and complexity, which can be a great thing but not for grug devs https://grugbrain.dev like me.

But saying all that Blazor looks really good for WebDev, I just worry it gets abandoned. It feels everything does in the C# space.

C# also made a big mistake imo by going with async/await instead of lightweight threads which will add a ton of complexity in the future for if they decide to go the greenthread route like Goroutines/Project Loom.
bestinterest
·4 years ago·discuss
I have the exact same feelings.

Is immediate mode GUI's just that much better? Instead of a complex React/Redux style setup, how much easier would state management be if we had a render loop like game dev? Does that even make sense?

I am very envious at the pure programming skills of so many game developers. UI's in indie games are just a side thing in the deep complexity of a game and they end up looking incredible compared to the level of effort required for year long web app projects.
bestinterest
·4 years ago·discuss
I feel another point is that early tech decisions have a huge impact on the type of people you will have to hire. For example, Ruby attracts ruthless productivity and Go attracts people who prefer longer standing apps with less dependencies and maintainability.

I make it sound like Go may be the 'better' choice here but that is not the case, as the author mentions, it's a balance.
bestinterest
·4 years ago·discuss
This brings up another point I hope someone tries to solve in programming. Every time a new language comes out we have to recreate millions of baseline libraries and it just sucks. As a dev I want to be able to make use of great libraries oblivious to what they are created with.

GraalVM is trying to solve this with its polygot VM idea https://www.graalvm.org/22.1/reference-manual/polyglot-progr...
bestinterest
·4 years ago·discuss
Also a Crystal fan but from afar. The compile time speeds are a real killer of productivity.
bestinterest
·4 years ago·discuss
Oh that is interesting, I guess they just spun up a beefy EC2 instance. I'm noticing slower performance, I used to get about <200ms for front page. Now it's 500ms-1s? Or is this placebo with my bias to thinking AWS is slow?

    NetRange:       50.112.0.0 - 50.112.255.255
    CIDR:           50.112.0.0/16
    NetName:        AMAZON-EC2-USWESTOR
    NetHandle:      NET-50-112-0-0-1
    Parent:         NET50 (NET-50-0-0-0-0)
    NetType:        Direct Allocation
    OriginAS:       AS14618
    Organization:   Amazon.com, Inc. (AMAZO-47)
bestinterest
·4 years ago·discuss
So many frameworks in other languages are trying to get to the productivity of Rails but they just don't have the same spark imo.

There is no Rails equivalent in JS, theres lots of competitors that feel years away like SailsJS, the new Deno Fresh one etc, Adonisjs... Is NextJS/SvelteKit/RemixRun considered also? I don't even know if they have a standardised background job processor in JS land.

Java's solutions are dreadful imo for if you want to compare to Rails. Quarkus/SpringBoot/Micronaut are nowhere near productivity levels for a fullstack app. They lean heavily on the API only side of things. (I do like Java oddly enough)

PHP is the main competitor to Rails oddly enough, Laravel seems brilliant.

Go is just starting up in this space it looks like, Bud is another attempt at Rails in another language https://github.com/livebud/bud. However the Go ecosystem is heavily API only side of things instead of SSR. Go's templating libs suck imo.

Elixir of course has Phoneix which is apparently great, purely functional langs unfortunately dont fit my head and feel to abstract for myself (don't hate me)

Its no wonder we have the backend / frontend developer split nowadays.
bestinterest
·4 years ago·discuss
It takes a lot to say very little in Go sometimes, I'd say this is one of those cases. Mainly the if err != nil boiler is at issue here.

I don't think you are doing anything wrong from a noobies opinion.
bestinterest
·4 years ago·discuss
That is interesting to see.

I wonder if fly.io/heroku matters for the servers however. Caching the webpage with a CDN sounds like most bang for buck right? One request is slow at the start of the day for the news (maybe its a user requesting far away the main server worst case) but every subsequent request is served from close to user CDN. (Not 100% if thats how it works in practice)

Speaking out loud here just to see if server location matters if you have a good CDN setup or something I'm missing which would make requests need to hit the main server.
bestinterest
·4 years ago·discuss
I'm getting around 250ms response times for https://legiblenews.com from the UK after multiple refreshes. 500ms occasionally.

I feel like it could be much faster at around 50ms or so with a cloudflare caching setup on the page, may be wrong.
bestinterest
·4 years ago·discuss
Looks great from the demo https://avodemo.herokuapp.com/users/sign_in

My only suggestion would be to perhaps try out a beefer instance for heroku or perhaps it is http/1.1 limitation of heroku and a switching to one of the disruptors like render.com would help performance?

It also may completely be because I am in the UK. Clicking around just feels slow 700-800ms+ response times, assuming its hosted in US.

Also another quick fix might be sending the request on mouse down. I know unpoly (side competitor to Hotwire) does this https://unpoly.com/a-up-instant
bestinterest
·4 years ago·discuss
I voted no last time round as I was not convinced on the economic side of things.

Truthfully I'm still not convinced but I'm finding it hard to justify staying on the sinking ship of the UK.

I'd rather fail as a country by our own decisions rather than the Scottish government always being able to point to Westminister for failure.

I wish more world wide economists took time to write arguments for/against Scottish independence as I find it hard to see the longer term plan.
bestinterest
·4 years ago·discuss
Lots of credit for yourself with htmx, its great. I think I prefer unpoly myself but htmx is winning the popularity because of how vocal you are!

I wish the unpoly creator also did similar! Both great frameworks. Hotwire also!

I wish there was deeper comparisons on the big three