HackerLangs
TopNewTrendsCommentsPastAskShowJobs

qrios

no profile record

Submissions

Gen AI Consumer Apps – 6th Edition

a16z.com
2 points·by qrios·4 bulan yang lalu·0 comments

Generic MCP for OpenAPI Compatible APIs

github.com
2 points·by qrios·8 bulan yang lalu·0 comments

comments

qrios
·15 hari yang lalu·discuss
A new CUDA API? For DOS?
qrios
·21 hari yang lalu·discuss
Thanks for sharing! I had no idea about the “3-30-300 test,” even though I always pay attention to city trees.

I can, however, easily explain the division in Europe: In Italy (for example, in Palermo), the vigorous growth of many species very often leads to significant damage to infrastructure.

Here in Vienna, there’s a directory of trees[1] where you can see, among other things, the species and age.

[1] https://baumkarte.at/
qrios
·27 hari yang lalu·discuss
> burning tokens like there was no tomorrow

Literaly.
qrios
·bulan lalu·discuss
Another „great filter“: How to handle dagerous information?
qrios
·2 bulan yang lalu·discuss
We are using it for "old-fashioned" use cases (sentiment, classification) for some clients here in Europe. Mistral Small 3.2 8bit is good enough for most well-defined cases.

It may just be greenwashing to check “AI sovereignty” off the list.
qrios
·2 bulan yang lalu·discuss
When I read this thread, "Interstellar" immediately comes to mind.

Thanks for sharing!
qrios
·4 bulan yang lalu·discuss
It’s been a while since I’ve struggled with Xilinx tools, but I can’t imagine there aren’t any hardware limitations these days. Does this run on a Spartan 6, or do you need the latest UltraScale for it?

Or does this only run in simulation anyway?
qrios
·5 bulan yang lalu·discuss
A simple skill markdown for Claude Code was enough to use the local Wolfram Kernel.

Even the documentation search is available:

```bash

/Applications/Wolfram.app/Contents/MacOS/WolframKernel -noprompt -run '

Needs["DocumentationSearch`"];

result = SearchDocumentation["query term"];

Print[Column[Take[result, UpTo[10]]]];

Exit[]'

```
qrios
·5 bulan yang lalu·discuss
Works on my computer: RTX 3090, CUDA 12.6

Interesting project! I haven't really worked with Vulkan myself yet. Hence my question: how is the code compiled and then loaded into the cores?

Or is the entire code always compiled in the REPL and then uploaded, with only the existing data addresses being updated?
qrios
·5 bulan yang lalu·discuss
Very interesting! I'll definitely give it a try. However, the documentation link[1] isn't working at the moment (404).

[1] https://crux-ecosystem.github.io/MOL/
qrios
·5 bulan yang lalu·discuss
https://archive.is/0PLa6
qrios
·5 bulan yang lalu·discuss
Via certificate invalidation, or turning off services for certificate pinning?
qrios
·6 bulan yang lalu·discuss
Text:

https://www.weforum.org/stories/2026/01/davos-2026-special-a...
qrios
·6 bulan yang lalu·discuss
Same for me with ISP from Austria.
qrios
·7 bulan yang lalu·discuss
https://archive.ph/VZpQ0
qrios
·7 bulan yang lalu·discuss
> … what human intelligence is because intelligence is best described as a side-effect of consciousness …

Is "human intelligence" and "intelligence" equal?

And: How to become conscious before being intelligent?

Or: If intelligence is a side-effect, how often this side-effect can't be observed?

Xor: What if an intelligent being denies being conscious?
qrios
·7 bulan yang lalu·discuss
"low hanging" is relative. At least from my perspective. A significant part of my work involves cleaning up structured and unstructured data.

An example: More than ten years ago a friend of mine was fascinated by the german edition of the book "A Cultural History of Physics" by Károly Simonyi. He scanned the book (600+ pages) and created a PDF (nearly) same layout.

Against my advice he used Adobe tools for it instead of creating an epub or something like DocBook.

The PDF looks great, but the text inside is impossible to use as training data for a small LLM. The lines from the two columns are mixed and a lot of spaces are randomly placed (makes it particularly difficult because mathematical formulas often appear in the text itself).

After many attempts (with RegEx and LLMs), I gave up and rendered each page and had a large LLM extract the text.
qrios
·7 bulan yang lalu·discuss
duplicate: https://news.ycombinator.com/item?id=46046916 9 days ago 117 comments
qrios
·8 bulan yang lalu·discuss
https://archive.is/Ya9Am
qrios
·8 bulan yang lalu·discuss
> This is actually a clever way to distinguish if the browser supports XSLT or not. Actual content is XHTML in https://xslt.rip/index.xsl

I agree it is a clever way. But it also shows exactly how hard it is to use XML and XSLT in a "proper way": Formal everything is fine to do it in this way (except the server is sending 'content-type: application/xml' for the /index.xsl, it should be 'application/xslt+xml').

Almost all implementations in XML and XSLT that I have seen in my career showed a nearly complete lack of understanding of how they were intended to be used and how they should work together. Starting with completely pointless key/value XMLs (I'm looking at you, Apple and Nokia), through call-template orgies (IBM), to ‘yet-another-element-open/-close’ implementations (almost every in-house application development in PHP, JAVA or .NET).

I started using XSLT before the first specification had been published. Initially, I only used it in the browser. Years later, I was able to use XSLT to create XSDs and modify them at runtime.