HackerTrans
TopNewTrendsCommentsPastAskShowJobs

michaelmior

6,644 karmajoined 15 yıl önce
Senior Data Engineer at OneChronos

Personal site: https://michael.mior.ca

[ my public key: https://keybase.io/michaelmior; my proof: https://keybase.io/michaelmior/sigs/BpTU6skpVwr4X8MVODgsjjPXAPdaSLAjYbPl2EEDYeA ]

Verifying my Blockstack ID is secured with the address 19AvsK3Zo1cmFZg4D1c4pDaavHRZKvPEWm https://explorer.blockstack.org/address/19AvsK3Zo1cmFZg4D1c4pDaavHRZKvPEWm wonderfuldev_gceng9nu6y0g2kpciawxmwzc

Submissions

I'm a Happy Engineer Now

blog.denv.it
1 points·by michaelmior·6 ay önce·0 comments

JSON-Render: AI –> JSON –> UI

json-render.dev
2 points·by michaelmior·6 ay önce·1 comments

Tool Search Now in Claude Code

twitter.com
1 points·by michaelmior·6 ay önce·0 comments

Skills

github.com
2 points·by michaelmior·9 ay önce·0 comments

Framework flame war erupts over support of politically polarizing Linux projects

theregister.com
7 points·by michaelmior·9 ay önce·1 comments

Open-Sourcing ComfyDeploy

github.com
2 points·by michaelmior·10 ay önce·0 comments

Reshaped is now open source

reshaped.so
314 points·by michaelmior·10 ay önce·47 comments

comments

michaelmior
·3 gün önce·discuss
Cloudflare did not develop QuePaxa, although I'm sure they did a lot of work to operationalize it. The original protocol is from a SOSP 2023 paper.

https://dl.acm.org/doi/10.1145/3600006.3613150
michaelmior
·3 gün önce·discuss
Worth noting if it wasn't obvious from the article that Cloudflare did not develop QuePaxa. It's from an SOSP paper back in 2023[0]. The article is discussing what is the first known large-scale public deployment of the protocol.

[0] https://dl.acm.org/doi/10.1145/3600006.3613150
michaelmior
·26 gün önce·discuss
I don't see a problem with the tool either really, it's just a pet peeve of mine to call what it produces an ER diagram when it's really a diagram of the relational model defined by the SQL.
michaelmior
·26 gün önce·discuss
I think most successful ORMs have an additional layer of semantics beyond what can be directly expressed in SQL. For example, Active Record has multiple types of associations (belongs_to, has_one, has_many, etc.) that I would argue align more closely to the ER model than the relational model. Of course you can come up with a set of conventions to go from ER to relational when everything is fed through the ORM, but you are losing some semantic information in the process. (That is, if you just look at the SQL table definitions, you don't have the same information about relationships).
michaelmior
·26 gün önce·discuss
Inheritance is one case. In an ER diagram, you may have Employee and Client entities which both inherit from a Person entity. You could choose to have these represented as a single table (with nullable fields where not relevant). They could be three completely separate tables with common fields duplicated across the tables. Or there could be three tables where one table has the common fields from Person with Employee and Client having foreign keys to this table along with whatever unique fields they have.
michaelmior
·26 gün önce·discuss
Aside from what else is mentioned in the sibling comment, inheritance is another big one. Inheritance is not explicit in SQL and in fact, when going from ER to SQL, there are multiple choices you can make about how to materialize the inheritance hierarchy.

Another is that in ER diagrams, relationships themselves can have attributes. Personally I think it tends to make more sense to convert relationships to entities in this case most of the time, but it can be useful.

Finally, relationships in ER diagrams can be N-ary and connect more than two entities while foreign keys in SQL always reference one other table. Of course you can have multiple foreign keys on a table to represent this, but not without some loss of semantics.
michaelmior
·27 gün önce·discuss
The tool looks very cool! But IMO you can't get an ER diagram from SQL since entities are fundamentally different from tables. They are certainly very similar, but SQL alone doesn't give you enough information to create an ER diagram.

That's not to say that the tool is useless or that diagrams of this sort are unhelpful. I'll admit I'm being pedantic and others will probably disagree.
michaelmior
·geçen ay·discuss
MacOS, Ghostty, Neovim, Pi (with a fair bit of customization to each). I'm relatively new to Pi after using Codex pretty heavily, but it's nice to be able to customize things to how I want.
michaelmior
·2 ay önce·discuss
I think that's a fair take. I think we definitely still need specs that describe the desired behavior as an artifact. But documentation describing the implementation definitely feels less important.
michaelmior
·2 ay önce·discuss
Humans also tend to forget to update documentation and the same confusion happens. I don't think it's really a new problem.
michaelmior
·2 ay önce·discuss
That depends on what the software is. If you want to run a service that bonds to a privileged port for example, you need sudo.
michaelmior
·2 ay önce·discuss
I don't think it's that simple, but I do think a lot of the problems mentioned are not inherent to the use of AI.
michaelmior
·2 ay önce·discuss
We have some very heavy users of Codex in my org and we're very happy with the quality (politics aside).
michaelmior
·2 ay önce·discuss
The problem in most of those cases is not specifically AI. Many of the issues you cited are related to Anthropic specifically and many could have been avoided with better testing.
michaelmior
·2 ay önce·discuss
I'm not saying our experience is unimportant. I'm talking about how we communicate what colors are. I'm not an expert by any means, but it seems like the way we communicate a shared understanding of what colors are is based on observing things that are the same color. I just don't think we have a way of communicating our subjective view of what a color looks like without reference to some other color.
michaelmior
·2 ay önce·discuss
The scenario you're describing seems like more of a language thing than a perception thing. We generally learn names of colors by references to common objects. I would argue that if people agree something is "Red, like a strawberry, tomato, or apple" then it doesn't really matter what you're seeing, that color is red.
michaelmior
·3 ay önce·discuss
> no reason why future devices couldn't bundle 256GB of mem by default

Cost is a pretty big reason.
michaelmior
·3 ay önce·discuss
This article[0] provides some details. Basically if you go through the lookup process on Apple's website and you don't have an existing D-U-N-S number, you can request one from D&B for free via Apple.

[0] https://support.pushpay.com/s/article/Acquire-your-D-U-N-S-n...
michaelmior
·3 ay önce·discuss
At least part of that in my experience seems to be a desire to cover a number of edge cases that may not be practically relevant.
michaelmior
·3 ay önce·discuss
On this note, one thing I've found Codex to do is worry more than necessary about breaking changes for internal APIs. Maybe a bit more prompting would fix this, but I found even when iteratively implementing larger new features, it worries about breaking APIs that aren't used by anything but the new code yet.