HackerTrans
TopNewTrendsCommentsPastAskShowJobs

maweki

no profile record

comments

maweki
·2 เดือนที่ผ่านมา·discuss
> Society doesn't owe me over $500k/year

No it doesn't. But as a human being, you and everybody still deserves a decent living. And our current system clearly does not provide that for a lot of people.
maweki
·5 เดือนที่ผ่านมา·discuss
> it is inherently resistant to false positives

By Rice's Theorem, I somehow doubt that.
maweki
·6 เดือนที่ผ่านมา·discuss
In light of that, I am wondering why the article opted to go for "However, determining the optimal join order is far from trivial.", when there are hard results in literature.

I was also missing mentioning "sideways information passing", though some of methods are exactly that.

I am wondering whether the company consults literature or whether they fiddle about, mostly reinventing the wheel.
maweki
·6 เดือนที่ผ่านมา·discuss
While tedious, you can do the rewrite block-wise from the insertion point and only store a an additional block's worth of the rest (or twice as much as you inserted)

ABCDE, to insert 1 after C: store D, overwrite D with 1, store E, overwrite E with D, write E.
maweki
·6 เดือนที่ผ่านมา·discuss
What do you like to call Hungarian notation?
maweki
·6 เดือนที่ผ่านมา·discuss
I had a lot of contact with computer science students coming from the other side, meaning they used Z3 or other (SMT) solvers as blackboxes which they just use at a certain point in their algorithm without having thought what theories they are using (the T in SMT) and what's undecidable in general or in that theory.

So I had quite a few "groundbreaking" approaches end in disappointment.

It's important to know the capabilities and limits of your tools.
maweki
·7 เดือนที่ผ่านมา·discuss
I'm not a rust or systems programmer but I think it meant that as an ABI or foreign function interface bitfields are not stable or not intuitive to use, as they can't be declared granularily enough.
maweki
·8 เดือนที่ผ่านมา·discuss
I think core of the problem in property-based testing that the property/specification needs to be quite simple compared to the implementation.

I did some property-based testing in Haskell and in some cases the implementation was the specification verbatum. So what properties should I test? It was clearer where my function should be symmetric in the arguments or that there is a neutral element, etc..

If the property is basically your specification which (as the language is very expressive) is your implementation then you're just going in circles.
maweki
·9 เดือนที่ผ่านมา·discuss
Incremental automatic grounding to SAT works fine for ASP.
maweki
·9 เดือนที่ผ่านมา·discuss
The range can be a product type, as can the domain. Most languages are expressive enough that you can create the product type (struct). You're right on point.
maweki
·10 เดือนที่ผ่านมา·discuss
> valuing where papers are published over what they contribute

And who is the arbiter of that? This is an imperfect but easy shorthand. Like valuing grades and degrees instead of what people actually took away from school.

In an ideal world we would see all this intangible worth in people's contributions. But we don't have time for that.

So the PhD committee decides on exactly that measure whether there are enough published articles for a cumulative dissertation and if that's enough. What's exactly the alternative? Calling in fresh reviews to weigh the contributions?
maweki
·10 เดือนที่ผ่านมา·discuss
We found yaml to be a great exchange format for electronic exam data. It allows us to put student submitted answers and source code into a yaml file and there is no weird escaping. It's very readable with a text editor. And then we just add notes and a score as a list below and then there's the next submission.

For readability of large blocks of texts that may or may not contain various special characters and newlines the only other alternative we have seen was XML, but that is very verbose.

So what the author finds as a negative, the many string formats, are exactly what drew us to yaml in the first place.
maweki
·10 เดือนที่ผ่านมา·discuss
Who doesn't own the third edition of the LaTeX Companion book?
maweki
·10 เดือนที่ผ่านมา·discuss
pods (i guess 2 to 4 passengers) simply do not scale. It doesn't matter whether you put them underground or not. The only solution is for people to not use them.

One part of the solution is bikes, the other is mass transit. What self-driving EV pods may be able to do is be people mover for the last mile to a mass transit hub. But for individual traffic across longer distance it simply does not scale.
maweki
·10 เดือนที่ผ่านมา·discuss
Isn't the author just proposing GraphQL?
maweki
·10 เดือนที่ผ่านมา·discuss
Splitting the presentation into multiple fragments makes it more difficult to generate/alter a presentation using xslt.
maweki
·10 เดือนที่ผ่านมา·discuss
It's nice to see more semantic web experiments. I always wanted to do more reasoning with ontologies, etc., and it's such an amazing idea, to reference objects/persons/locations/concepts from the real world with uris and just add labeled arrows between them.

This is such a cool schemaless approach and has so much potential for open data linking, classical reasoning, LLM reasoning. But open data (together with RSS) has been dead for a while as all big companies have become just data hoarders. And frankly, while the concept and the possibilities are so cool, the graph databases are just not that fast and also not fun to program.
maweki
·11 เดือนที่ผ่านมา·discuss
It's just a course about database design and in the first seminar we look at different news stories that have something to do with databases, like trump putting some random Italian chef on an international sanction list should make us think about primary keys and identifying people.

And the horizon post office scandal is the last and most poignant example that real people are affected by the systems we build and the design decisions we make. That sometimes easy to forget.
maweki
·11 เดือนที่ผ่านมา·discuss
I teach the horizon post office scandal in my database courses. And my takeaway is, that software fails. And if people's lives are involved, an audit trail is paramount.

In slowly killing software the audit trail might be faster than the killing. In fast killing software, the audit trail isn't.
maweki
·11 เดือนที่ผ่านมา·discuss
Slow killing software can be made more secure by adding the possibility for human review.

Fast killing software is too fast for that.