HackerTrans
TopNewTrendsCommentsPastAskShowJobs

pdhborges

no profile record

comments

pdhborges
·8 дней назад·discuss
I think the mindset is usefull personally. When large complex systems are required and economic pressure is applied it can rapidly turn into an dangerous strategy. You will quickly realize that no you can't just build that.
pdhborges
·21 день назад·discuss
How come I have never seen this tradeoff work in practice?
pdhborges
·25 дней назад·discuss
https://www.unicorn-engine.org/docs/beyond_qemu.html
pdhborges
·27 дней назад·discuss
If you have an int32 or less you can!
pdhborges
·30 дней назад·discuss
Sure. But I'm trying to connect what you said:

> you'll come out with superpowers you didn't have before.

with the impressions from the reviewers.

I don't think they got super powers from the book. In fact their outcomes mirrors my own outcomes when going deep into some math topics and then bringing them to work.
pdhborges
·30 дней назад·discuss
This review is not so nice: https://emptysqua.re/blog/review-queue-theory-book/
pdhborges
·в прошлом месяце·discuss
What will be Amodei's job after we have AIs that are better at evrything than humans? Is the AI going to care about our stock exchange playgrounds that reward the future Antropic stock holders?
pdhborges
·в прошлом месяце·discuss
Could be boot locked to the original owner Apple account.
pdhborges
·2 месяца назад·discuss
How about answering the question and then add details later? IME that tends do work better.
pdhborges
·2 месяца назад·discuss
At least if you a test suite that doesn't have to be migrated. I too would like to migrate some services from Python to Rust but my test suite is written in Python so I would have to actually check if the test suite migration was correct manually (I can't event compile it!) before doing the rewrite.
pdhborges
·2 месяца назад·discuss
Curious how the test suite was applied. Was it ported from Zig to Rust beforehand?
pdhborges
·2 месяца назад·discuss
Works great. No wonder China is eating our lunch.
pdhborges
·3 месяца назад·discuss
Can you share that document?
pdhborges
·3 месяца назад·discuss
It's in the file metadata:

- LuaTeX-1.17.0

- LaTeX via pandoc
pdhborges
·3 месяца назад·discuss
I don't even understand what approach 3 is doing. They ended up hashing the random part of the API key with an hash function that produces a small hash and stored that in the metashard server is that it?
pdhborges
·3 месяца назад·discuss
Apple's accidental moat now is taking the rise of hardware prices due to AI eat into their margins and just expand the mac user base.
pdhborges
·3 месяца назад·discuss
> realizing different systems will have different constraints.

I realize that. There are a few comments already that present use cases where I can totally see using Sqlite as a good option.

> Not everyone needs monopolistic tech to do their work

We are talking about localhost Postgres vs SQLite here. Both are open source.
pdhborges
·3 месяца назад·discuss
So you are migrating from Sqlite to Postgres because you need it. What is the state of your product when you need to do this migration? Is your product non trivial? Are you now dependent on particular performance characteristics of Sqlite? Do you now need to keep your service running 24/7? Accounting for all of that takes way more than 5 minutes. The only way to beat that is if you still have a toy product and you can just export the database and import it and pray that it all works as a migration strategy.
pdhborges
·3 месяца назад·discuss
Yes it might be risky. But most schema evolution changes can be done with no or minimal downtime even if you have to do then in multiple steps. When is a simple ALTER going to be totally unacetable if youare using Sqlite?
pdhborges
·3 месяца назад·discuss
Do you know why it is a toy? Because in a real prod environment after inserting 240k rows per second for a while you have to deal with the fact that schema evolution is required. Good luck migrating those huge tables with Sqlite ALTER table implementation