HackerLangs
TopNewTrendsCommentsPastAskShowJobs

qrios

no profile record

Submissions

Gen AI Consumer Apps – 6th Edition

a16z.com
2 points·by qrios·قبل 4 أشهر·0 comments

Generic MCP for OpenAPI Compatible APIs

github.com
2 points·by qrios·قبل 8 أشهر·0 comments

comments

qrios
·قبل 15 يومًا·discuss
A new CUDA API? For DOS?
qrios
·قبل 21 يومًا·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 يومًا·discuss
> burning tokens like there was no tomorrow

Literaly.
qrios
·الشهر الماضي·discuss
Another „great filter“: How to handle dagerous information?
qrios
·قبل شهرين·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
·قبل شهرين·discuss
When I read this thread, "Interstellar" immediately comes to mind.

Thanks for sharing!
qrios
·قبل 4 أشهر·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 أشهر·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 أشهر·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 أشهر·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 أشهر·discuss
https://archive.is/0PLa6
qrios
·قبل 5 أشهر·discuss
Via certificate invalidation, or turning off services for certificate pinning?
qrios
·قبل 6 أشهر·discuss
Text:

https://www.weforum.org/stories/2026/01/davos-2026-special-a...
qrios
·قبل 6 أشهر·discuss
Same for me with ISP from Austria.
qrios
·قبل 7 أشهر·discuss
https://archive.ph/VZpQ0
qrios
·قبل 7 أشهر·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 أشهر·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 أشهر·discuss
duplicate: https://news.ycombinator.com/item?id=46046916 9 days ago 117 comments
qrios
·قبل 8 أشهر·discuss
https://archive.is/Ya9Am
qrios
·قبل 8 أشهر·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.