Readit News logoReadit News
tmzt commented on Poor man's bitemporal data system in SQLite and Clojure   evalapply.org/posts/poor-... · Posted by u/adityaathalye
throw-qqqqq · 3 days ago
> as a momento

FWIW I think you’re thinking of “memento”

     an object or item that serves to remind one of a person, past event, etc.; keepsake; souvenir.

tmzt · 2 days ago
Oddly it works as a neologism as well. "moment" conveying that it was short-lived or fleeting.

A memory or artifact of a short period of time.

tmzt commented on Chomsky on what ChatGPT is good for (2023)   chomsky.info/20230503-2/... · Posted by u/mef
papaver-somnamb · 3 months ago
There was an interesting debate where Chomsky took a position on intelligence being rooted in symbolic reasoning and Asimov asserted a statistical foundation (ah, that was not intentional ;).

LLM designs to date are purely statistical models. A pile, a morass of floating point numbers and their weighted relationships, along with the software and hardware that animates them and the user input and output that makes them valuable to us. An index of the data fed into them, different from a Lucene or SQL DB index made from compsci algorithms & data structure primitives. Recognizable to Azimov's definition.

And these LLMs feature no symbolic reasoning whatsoever within their computational substrate. What they do feature is a simple recursive model: Given the input so far, what is the next token? And they are thus enabled after training on huge amounts of input material. No inherent reasoning capabilities, no primordial ability to apply logic, or even infer basic axioms of logic, reasoning, thought. And therefore unrecognizable to Chomsky's definition.

So our LLMs are a mere parlor trick. A one-trick pony. But the trick they do is oh-so vastly complicated, and very appealing to us, of practical application and real value. It harkens back to the question: What is the nature of intelligence? And how to define it?

And I say this while thinking of the marked contrast of apparent intelligence between an LLM and say a 2-year age child.

tmzt · 3 months ago
Perhaps the next question we are asking is "what happens if you give a statistical model symbolic input" and the answer appears to be, you get symbolic output.

Even more strangely, the act of giving a statistical model symbolic input allows it to build a context which then shapes the symbolic output in a way that depends on some level of "understanding" instructions.

We "train" this model on raw symbolic data and it extracts the inherent semantic structure without any human ever embedding in the code anything resembling letters, words, or the like. It's as if Chomsky's elusive universal language is semantic structure itself.

tmzt commented on I ditched my laptop for a pocketable mini PC and a pair of AR glasses   tomsguide.com/computing/i... · Posted by u/T-A
jareds · 5 months ago
I got excided looking at this hoping there was a laptop with out a screen. I'm totally blind so the power draw of a screen is pointless. I currently use my ROG Alli with a Bluetooth keyboard to connect to my more powerful laptop which has a keyboard that's going bad. While this setup works well and the battery life is pretty good it would be much nicer if I didn't have to put a keyboard on my lap, and the Alli on a table. At least the Alli doesn't need to be somewhere where I can look at it.
tmzt · 5 months ago
I'm not sure if this would work for you, but there are inexpensive devices that plug into an HDMI port. They appear to the computer as a monitor. I use them for screen sharing to a remote display, but they should enable to think there is a monitor attached. It negotiates the display information as if it was an actual monitor.

Here's the pack of three I purchased on Amazon.

Woieyeks 3 Pack HDMI Dummy Plug https://www.amazon.com/dp/B0CKKLTWMN

tmzt commented on Convert Linux to Windows   philipbohun.com/blog/0007... · Posted by u/pbohun
coderenegade · 5 months ago
It's possible to use docker as a package manager. I worked jobs where did exactly that, because we needed to compile certain dependencies for our application, and it streamlined the whole process.

There's zero reason you couldn't create a small abstraction layer around docker so you can install "executables" that are really just launching within a container. I mean, isn't that the whole idea behind flatpak, snaps, and appimages?

The point is to leverage modern abstraction techniques so that people don't need to learn a new system.

tmzt · 5 months ago
This could be done using something like llamafile, in the sense that it would be a small universal executable containing a package.

It could even support running as a self contained application on Windows, with all needed DLLs provided.

tmzt commented on With AI you need to think bigger   rodyne.com/?p=1828... · Posted by u/boznz
tux3 · 6 months ago
There is this repository: https://github.com/tejado/android-usb-gadget

They have some examples that emulate an USB keyboard and mouse, and the app shows how to configure the Gadget API to turn the phone into whatever USB device you want.

The repo is unfortunately inactive, but the underlying feature is exposed through a stable Linux kernel API (via ConfigFS), so everything will continue working as long as Android leaves the feature enabled.

You do need to be root, however, since you will essentially be writing a USB device. Then all you have to do is open `/dev/hidg0`, and when you read from this file you will be reading USB HID packets. Write your response and it is sent on the cable.

tmzt · 6 months ago
There is also support for doing this without being root:

https://developer.android.com/develop/connectivity/usb

tmzt commented on Show HN: Slime OS – An open-source app launcher for RP2040 based devices   github.com/abeisgoat/slim... · Posted by u/abeisgreat
tmzt · 6 months ago
I watched the video and am curious about the protocol loading apps from add-ons. Do the resistors j7st say what k8nd of connection is used (i2c, serial, etc)?

Also, I've been looking for cyberdeck and clamshell designs using CM4 and am impressed with how you sourced the keyboard. Is there a reason the replace the matrix chip with an i2c extender and not use the original chip?

tmzt commented on Linux as co-operative Windows process (2017)   colinux.org/... · Posted by u/begoon
da-x · 7 months ago
Hi. I'm Dan Aloni, original author of this project. It still warms my heart to see this pops in HN every few years. The others who have worked on it and myself are keeping that site as the good relic that it obviously should be :)

It still amazes me how breakthrough it was to have that working, given the lack of hardware virtualization for PCs in late 2003.

tmzt · 7 months ago
Hello there,

Any idea why Microsoft didn't use this in WSL1 or 2?

Is it more efficient than hyper-v with hardware acceleration?

Can you see it being useful again? Or does it make sense to have a hybrid where the code runs using hardware acceleration but the timers are cooperative?

tmzt commented on TinyX: Small Featured X Server   github.com/tinycorelinux/... · Posted by u/nateb2022
st_goliath · 7 months ago
Well, "at the time" is a funny way to put it. That thread is from 2023. The first commit in the repository is from 2013, importing the already existing source tree.

I recall having played around with DSL/TCL (Damn Small Linux & Tiny Core Linux) around 2010 or so and IIRC they already had their minimalist X11-but-not-Xorg server even back then, which I found fascinating at the time. I'm pretty sure I took a curious peak at the source code back then, IIRC it simply didn't live in git yet (tarball and a few patches?).

The XVesa code base that this is forked off of is of course much older.

tmzt · 7 months ago
At one point I believe DSL used Kdrive which has a slightly different DDX and driver structure but the same DIX.
tmzt commented on ELKS: Linux for 16-bit Intel Processors   github.com/ghaerr/elks... · Posted by u/emersonrsantos
gregw2 · 8 months ago
Couldnt find that quote on the 2001 version of the site.

https://web.archive.org/web/20010626233912/http://www.elks.e...

Not sure if you are confusing that with the original Linux/Linus announcement post:

https://groups.google.com/g/comp.os.minix/c/dlNtH7RRrGA/m/Sw...

tmzt · 8 months ago
I searched archive a while ago and couldn't find it. It's probably referencing the announcement but I clearly remember a pull quote on the ELKS site, probably the same one quoted above.

I happened upon the site when first playing with a (z80) Gameboy compiler (probably SDCC) and wanting to port Linux to it.

I fully admit i could be imagining it.

Yes, I should have said 386.

tmzt commented on Apple squandered the Holy Grail   xeiaso.net/blog/2025/squa... · Posted by u/caust1c
iTokio · 8 months ago
What I want is simple :

A smart assistant, that can understand and speak to me like Advanced Voice Mode, use a vast knowledge database, is tailored to my needs and can act on my behalf.

And it would be great if it’s able to run locally.

tmzt · 8 months ago
I would say Gemini Live is getting there. It's lacking integration with NotebookLM and Keep. It would be amazing if I started a project conceptually and wanted to move to code it could fire up VS Code and let me get to work.

Gemini's home automation works nicely and it can understand comments like it's too dark in here or it's cold inside and act appropriately. This is using the Android app as an assistant, not live mode.

OpenAI's implementation is apparently similar but I haven't tried the voice mode as a free user.

I haven't tried Apple Intelligence yet on my M1 and don't have an iPhone, so I can't compare.

I've been looking at offline capabilities with open weight models but they aren't there either. A full speech-to-speech model [1] working on an M1 Mac would be incredible.

[1] https://arxiv.org/abs/2410.00037

u/tmzt

KarmaCake day762March 12, 2011
About
Email: info@lanceject.com
View Original