HN user

kantord

438 karma
Posts41
Comments56
View on HN
news.ycombinator.com 4mo ago

Ask HN: Apart from coding, what do you use AI for daily?

kantord
1pts2
github.com 5mo ago

Show HN: Unix-style pipeline composition for MCP tool calls

kantord
3pts0
github.com 7mo ago

Show HN: headson - structure‑aware head/tail for JSON/YAML and source code

kantord
3pts0
www.youtube.com 10mo ago

Turn a spreadsheet into a web app using Django and SQLite MCP [video]

kantord
2pts0
github.com 1y ago

Show HN: Zeitgrep – ripgrep, but sorted by edit stats in Git history

kantord
3pts0
www.youtube.com 1y ago

Create a Product People Will Buy [video]

kantord
2pts0
github.com 1y ago

Show HN: Frecenfile – Instantly rank Git files by edit activity

kantord
2pts1
techcrunch.com 1y ago

Stacklok donates Minder supply chain security project to OpenSSF

kantord
2pts0
news.ycombinator.com 2y ago

Ask HN: Must-have features for a compile-to-WASM native/web UI language?

kantord
3pts4
news.ycombinator.com 2y ago

Ask HN: How do you maintain your job security in the AI age?

kantord
6pts3
github.com 2y ago

Show HN: SeaGOAT – local, “AI-based” grep for semantic code search

kantord
240pts39
arxiv.org 2y ago

Summary of research related to ChatGPT and the future of LLMs

kantord
2pts0
news.ycombinator.com 3y ago

Ask HN: Strategy to establish yearly personal objectives?

kantord
2pts1
github.com 3y ago

Show HN: Markdown Presentations with Webcam in Background

kantord
3pts0
en.wikipedia.org 4y ago

M2 CPU was invented in the Soviet Union

kantord
3pts1
www.youtube.com 4y ago

Marco Pierre White – Full Address and Q&A – Oxford Union

kantord
1pts0
news.ycombinator.com 4y ago

Ask HN: How to map/catalog/inventory all the code and tech at company?

kantord
1pts0
github.com 5y ago

A curated list of JavaScript tooling not written in JavaScript

kantord
117pts82
github.com 5y ago

Streetmix3d – Design 3D Streets

kantord
3pts0
github.com 5y ago

Show HN: Grayscale/reading mode for i3 and other WMs

kantord
2pts1
github.com 5y ago

Show HN: Visual summary of your day using a single line of emoji

kantord
3pts0
www.youtube.com 5y ago

Latin Language Spoken

kantord
2pts0
orbit.kiwi 6y ago

Orbit – open-source design system

kantord
122pts11
gist.github.com 6y ago

GitHub Collapsible Markdown

kantord
74pts25
github.com 6y ago

LibreLingo Is Looking for a mascot

kantord
1pts0
librelingo.app 6y ago

Show HN: Building an open-source language-learning platform

kantord
159pts68
github.com 6y ago

Spain 3rd country after Russia and China to request GitHub takedowns

kantord
2pts0
www.bloomberg.com 6y ago

Orban Loses Budapest as Hungary’s Opposition Breaks His Hegemony

kantord
3pts0
orbit.kiwi 6y ago

Kiwi.com's Design System

kantord
2pts0
dev.to 6y ago

Chart every developer must understand

kantord
1pts0

For this incentive to exist, the app needs to be such an obvious memory hog that users start identifying it as the source of the problem.

Even then, a lot is required for most businesses to prioritize this (presumably) temporary issue at the cost of things like: participation in the AI race, other features, bug fixes, new markets etc.

Heck, sometimes software is so inefficient that it costs developer and tester productivity but a fix is not prioritized for years.

This is not the technical solution you want, but I think it provides the result that you want: https://github.com/devcontainers

tldr; devcontainers let you completely containerize your development environment. You can run them on Linux natively, or you can run them on rented computers (there are some providers, such as GitHub Codespaces) or you can also run them in a VM (which is what you will be stuck with on a Mac anyways - but reportedly performance is still great).

All CLI dev tools (including things like Neovim) work out of the box, but also many/most GUI IDEs support working with devcontainers (in this case, the GUI is usually not containerized, or at least does not live in the same container. Although on Linux you can do that also with Flatpak. And for instance GitHub Codespaces runs a VsCode fully in the browser for you which is another way to sandbox it on both ends).

honestly, I interpreted your comment as "Taskwarrior is unusable shit" since it had a pretty negative tone and came from a user named throwaway27448.

Actual accessibility is a different topic. Honestly I don't know much about the a11y of CLI apps in general. Is there something that makes Taskwarrior bad in that regard? Is it about the way it forms things like list outputs or tables?

there might be some gaps (let me know) but you can actually pipe the output to another program.

for instance here's how you'd download all the unread blog posts by combining blogtato and wget:

blog .unread read | wget \ --recursive --level=1 \ --page-requisites \ --convert-links \ --adjust-extension \ --no-parent \ --directory-prefix="$HOME/offline-posts" \ --input-file=-

I was considering adding a full offline mode but here is my thinking: that is actually a feature/concern that would be separately useful, so it should not be baked into blogtato. And there might be already some pretty good options out there.

For instance, `wget` is a pretty widely used HTTP client that is able to mirror links for offline access. Then you can use standard tools such as `grep` to search in all the offline content. And `blogtato` does already have an export feature, so it is almost trivial to write a script that saves all posts for online content.

So perhaps what should be done here is find a user friendly tool for offline access/search for web content and just add some convenience features to `blogtato` so that they integrate very easily.

that was actually a lot of fun. I think it has the potential to grow into a bigger game.

Bug Tux Racer vibes btw! I think adding some music and perhaps snowfall could make it even more immersive

edit: and i think you could easily make it feel more detailed by adding a texture for the snow,and increasing the resolution of nearby terrain by modulating it with some precomputed fractalized perlin noise. So basically "free" detail that only exists in the rendering logic, does not influence the complexity of the heightmap. and perhaps you could replace the trees with sprites that are images of real trees (stylized to the visual style you're going for)

FreeCAD 5 months ago

It's possible that the training data (and research data) is already out there, just not (yet) combined into a single open source CAD kernel.

Then again, the success of such a project might depend on other factors. Given the complexity of the task, I can imagine that just "lucking into" the right design decisions early on could have a major impact.

FreeCAD 5 months ago

I only used it for some hobby modeling, but I have to say it's fantastic and very impressive.

It seems like it's fully community-maintained, there is no big company or foundation behind it. Honestly it's hard to believe!

There was just one major problem, the infamous "topological naming problem" which caused issues downstream is you edited a non-leaf node. That was pretty frustrating to deal with, but in later releases they fixed it I think. (Have not tried it since because I didn't have anything to model)

embeddings are done using ChromaDB

support for more complex queries could be useful, but probably not using a query language since that would make it more difficult to use free-form text input.

You can already use it using an API: https://kantord.github.io/SeaGOAT/0.27.x/server/#understandi... so probably the best way to add support for more complex queries would be to have additional query parameters, and also to expose those flags/options/features through the CLI