HackerTrans
TopNewTrendsCommentsPastAskShowJobs

theknarf

483 karmajoined 12 tahun yang lalu

comments

theknarf
·5 hari yang lalu·discuss
I belive it also goes into the larger Wormblossom Willow project where there will be an online component, so that you can distribute stuff either online or via USB, building a sensorship-resistant protocol that works both online and offline.
theknarf
·11 hari yang lalu·discuss
I've been building something similare, but on Datalog instead of Prolog: https://github.com/theknarf-experiments/flow-md
theknarf
·18 hari yang lalu·discuss
I wish it was available in my country.
theknarf
·bulan lalu·discuss
Why not just rewrite the networking part of gitoxide with an agent? Wouldn't gitoxide already be 90% there for your usecase? Why slopfork all of git?
theknarf
·bulan lalu·discuss
Some doors can be designed with a large push handle to unlatch from the inside while still being closed from the outside. Allowing people on the inside to escape out but not the other way around.
theknarf
·bulan lalu·discuss
Yes, its called Team Topologies.
theknarf
·2 bulan yang lalu·discuss
An artifact is the output of an automated process that take some input and outputs artifacts. Its a generic term that can mean all kinds of things depending on the process and type of output. For example if you have a program that take an Open Office document in and produce a pdf and an epub file out then "pdf" and "ebup" would be the artifacts.
theknarf
·2 bulan yang lalu·discuss
You'll get pretty far if you start off with Obsidian + Markdown + a makefile with Pandoc. You can even combine Markdown and Latex files together with Pandoc. This gives you an easy workflow with all the power you need using Latex as an escape hatch. And Obsidian have enough plugins to do whatever you want (or swap it for any other Markdown or code editor of your choice).
theknarf
·2 bulan yang lalu·discuss
"Do Not Track" (DNT) is already a browser setting. It just doesn't enforce anything, nor does anyone respect it.
theknarf
·3 bulan yang lalu·discuss
I usually pair it with mprocs for long running tasks
theknarf
·3 bulan yang lalu·discuss
Even more important now with AI, AI is happy to read and explain any piece of code, but they can't easily reverse engineer why something was done.
theknarf
·4 bulan yang lalu·discuss
You can't use CRDTs for version control, having conflicts is the whole point of version control. Sometimes two developers will make changes that fundamentally tries to change the code in two different ways, a merge conflict then leaves it up to the developer who is merging/rebasing to make a choice about the semantics of the program they want to keep. A CRDT would just produce garbage code, its fundamentally the wrong solution. If you want better developer UX for merge conflicts then there are both a bunch of tooling on top of Git, as well as other version control systems, that try to present it in a better way; but that has very little to do with the underlaying datastructure. The very fact that cherry-picking and reverting becomes difficult with this approach should show you that its the wrong approach! Those are really easy operations to do in Git.
theknarf
·4 bulan yang lalu·discuss
Why not at the every least use RSS for Posts? Why invent a new json spec? Wouldn't it make more sense to build this around RSS?
theknarf
·4 bulan yang lalu·discuss
> A language’s type system doesn’t need to model every possible type of guarantee

Actually this is the exact point of a type system. Why would you want to write unit tests for stuff the compiler can guarantee for you at the type system level?
theknarf
·4 bulan yang lalu·discuss
I'm surprised by the backlash in the comment section here, all of these things seems like the obvious next step for Rust. It seem people are scared of big words?
theknarf
·4 bulan yang lalu·discuss
That is when the LSP works, now you've just introduced another thing that may fail.
theknarf
·4 bulan yang lalu·discuss
I would make sense that depressed people use AI as an assistive tool in their daily lives.
theknarf
·5 bulan yang lalu·discuss
Now we can see it knitting space-time before our eyes
theknarf
·5 bulan yang lalu·discuss
React Native is able to build abstractions on top of both Android and iOS that uses native UI. Microsoft even have a package for doing a "React Native" for Windows: https://github.com/microsoft/react-native-windows

It's weird that we don't have a unified "React Native Desktop" that would build upon the react-native-windows package and add similar backends for MacOS and Linux. That way we could be building native apps while keeping the stuff developers like from React.
theknarf
·6 bulan yang lalu·discuss
I found this in my git starts: https://github.com/xltrail/git-xl?tab=readme-ov-file

And then there is also Pandoc that I guess could be helpful in this regard.