HackerTrans
トップ新着トレンドコメント過去質問紹介求人

sb8244

no profile record

コメント

sb8244
·6 か月前·議論
This breaks down because Tailwind is not monetized, is completely free, and hasn't indicated it won't be.

There is a corporate side with other features that has never been free. I pay for it because it's great.

I'm not sure if you're purposefully misstating it at this point or not. Several people have corrected you and you seem to double down incorrectly each time.
sb8244
·6 か月前·議論
Writing with Pragmatic was such a great experience. Definitely a blessing that I was able to do that.

My experience with writing and royalties is just so different than this author's experiences.
sb8244
·6 か月前·議論
It adds accountability, which is unfortunately something that ends up lacking in practice.

If you write bad code that creates a bug, I expect you to own it when possible. If you can't and the root cause is bad code, then we probably need to have a chat about that.

Of course the goal isn't to be a jerk. Lots of normal bugs make it through in reality. But if the root cause is true negligence, then there's a problem there.

AI makes negligence much easier to achieve.
sb8244
·7 か月前·議論
Pragmatic has an inhouse book compiler. Most authors write in markdown and there's some special XML features you can use as well for it. Of course code linking is a first class feature.

It's a pretty nice system, actually.
sb8244
·8 か月前·議論
That's a strawman. It is not really related to the main point and I'm not sure of the point you're trying to make (maybe that tension exists?)

Obviously things take as long as they take. I've always been an educator of this back to the business leadership. In my experience, most business people truly have no freaking clue how a product gets built and code gets shipped.

Giving proactive updates (meaning not the day it was expected to be done according to last update) are important part of a professionals working life. There's always a tension between business and engineers. Engineers just generally don't do that well with tension and try to minimize it, or complain about it.
sb8244
·8 か月前·議論
If the bug affects 1 customer and the feature affects the rest, is the old feature complete?

It's not binary.
sb8244
·8 か月前·議論
Are we reading the same article?

Also, you do realize that writing is taught in an incredibly formulaic way? I can't speak to English as second language authors, but I imagine it doesn't make it easier.
sb8244
·8 か月前·議論
I read it just fine and everything made sense in it.

I would spend similar time debugging this if I were the author. It's a pretty serious bug, a non obvious issue, and would be impossible to connect to the ffi fix unless you already knew the problem.
sb8244
·10 か月前·議論
The article makes it sound as if there were govt negotiations to have them sent home. It is light on details though, but with that many people of a friendly nation / corporation I imagine they get treated differently.

I interpreted that to mean they may not have permanent US immigration issues vs "being deported".
sb8244
·昨年·議論
My understanding is that mnesia is sort of a relic. Really hard to work with and lots of edge / failure cases.

I'm not sure if it should be salvaged?
sb8244
·昨年·議論
Maybe my position on this is obvious, I honestly don't know a lot of how others see it.

Preface: I'm generally an AI skeptic.

There are a LOT of people who are doing "business work" for a living, which is significantly different than hands-on coding. AI gives these people a way to just automate all of the (maybe necessary) work that they don't want to do.

The final product being 80% good enough is fine. It is done and doesn't require them to spend time on something they don't want to do.

More often than not, it is at 80% today.
sb8244
·6 年前·議論
Yes there is a lot of stuff different here. I don't want to take that away. Just pointing out that websocket only is not accurate.
sb8244
·6 年前·議論
It uses long polling over http. To be clear it's not restful http, but it's not websockets. I believe that Chris doesn't believe it's important for most people so there are no directions right now. Could be wrong there, I'm not Chris.

Page changes are still initiated by the client in LiveView (although can be server initiated)

LiveView is just channels under the hood. Once you consider that, long polling may seem more obvious
sb8244
·6 年前·議論
Fwiw, you can use long polling for LiveView if you wanted. That could completely remove websockets as everything happens over http.

Hotwire will benefit from caching better than LiveView, because frames are distinct URLs. But I haven't personally need that.