Readit News logoReadit News
zerof1l commented on 15-Fold increase in solar thermoelectric generator performance   nature.com/articles/s4137... · Posted by u/bookofjoe
zerof1l · 18 hours ago
Could you combine them with solar panels?
zerof1l commented on Is Chain-of-Thought Reasoning of LLMs a Mirage? A Data Distribution Lens   arstechnica.com/ai/2025/0... · Posted by u/blueridge
zerof1l · 19 days ago
> ... that these "reasoning" models can often produce incoherent, logically unsound answers when questions include irrelevant clauses or deviate even slightly from common templates found in their training data.

I have encountered this problem numerous times, now. It really makes me believe that the models do not really understand the topic, even the basics but just try to predict the text.

One recent example was me asking the model to fix my docker-compose file. In it, there's the `network: host` for the `build` part. The model kept assuming that the container would be running with the host network and kept asking me to remove it as a way to fix my issue, even though it wouldn't do anything for the container that is running. Because container runs on `custom_net` network only. The model was obsessed with it and kept telling me to remove it until I explicitly told that it is not, and cannot be the issue.

``` services:

  app:

    build:

      network: host

    networks:

      custom_net:

    ...
```

zerof1l commented on Self-host is just waiting for its iPhone moment   robertmao.com/blog/en/sel... · Posted by u/robmao
zerof1l · a month ago
I've been through an iPhone moment, and I moved past it once I realized that I'm getting screwed and I have no control. Now I'm back to Android (Pixel with GrapheneOS specifically) and self-hosting.
zerof1l commented on Raspberry Pi 5 Gets a MicroSD Express Hat   cnx-software.com/2025/07/... · Posted by u/geerlingguy
zerof1l · a month ago
I would avoid using SD cards and go for something else like M.2 or NVMe for storage. SD cards tend to be on the lesser side in terms of performance, failure rate, and silicon quality in general.
zerof1l commented on LetsEncrypt Outage   letsencrypt.status.io/... · Posted by u/kenshaw
Kholin · a month ago
Let's Encrypt stopped its certificate expiration email notification service a while ago, and I hadn't found a replacement yet. As a result, I didn't receive an expiration notice this time and failed to renew my certificate in advance. The certificate expired today, making my website inaccessible. I logged into my VPS to renew it manually, but the process failed every time. I then checked my cloud provider's platform and saw a notification at the top, which made me realize the problem was with the certificate provider. A quick look at Hacker News confirmed it: Let's Encrypt was having an outage. I want to post this news on my website, but I can't, because my site is down due to the expired certificate.
zerof1l · a month ago
Because you're not supposed to rely on emails. You should have an automated certificate renewal in place. I'm under the impression that Let's Encrypt wants to reduce certificate validity even further from the current 90 days.
zerof1l commented on TCP-in-UDP Solution (eBPF)   blog.mptcp.dev/2025/07/14... · Posted by u/todsacerdoti
zerof1l · a month ago
Makes total sense to me. But why hasn't this been done a long time ago? Pretty sure people spotted this earlier in TCP and UDP but this was never implemented?
zerof1l commented on Basically Everyone Should Be Avoiding Docker   lukesmith.xyz/articles/ev... · Posted by u/Fred34
zerof1l · 2 months ago
I get the impression that the person who wrote this article doesn't know much about docker. Running 2 apps and a certbot can be done without containers easily. Try running 20 apps, some of which depend on having the same dependency but on a different version.

Regarding security, it depends on how you set up your containers. If you just run them all with default settings - the root user; and give them all the permissions, then yeah, quite insecure. But if you spend an extra minute and create a new non-root user for each container and restrict the permissions then it's quite secure. There are plenty of docker hardening tutorials.

Regarding ease of setup, it took me a while to learn docker. Setting up first containers took very long time. But now, it's quick and easy. I have templates for the docker compose file and I know how to solve all the common issues.

Regarding ease of management, it's very easy. Most of my containers is setup once and forget. Upgrading an app just requires changing the version in the docker-compose file.

zerof1l commented on New proof dramatically compresses space needed for computation   scientificamerican.com/ar... · Posted by u/baruchel
zerof1l · 2 months ago
Here's the gist:

For nearly 50 years theorists believed that if solving a problem takes t steps, it should also need roughly t bits of memory: 100 steps - 100bits. To be exact t/log(t).

Ryan Williams found that any problem solvable in time t needs only about sqrt(t) bits of memory: a 100-step computation could be compressed and solved with something on the order of 10 bits.

zerof1l commented on ICE test train reaches speeds of up to 405.0 km/h   deutschebahn.com/de/press... · Posted by u/doener
zerof1l · 2 months ago
I don't think Germans want faster trains, they want punctual ones. How about trying to set a record for trains being punctual?
zerof1l commented on New EU rules on digital accessibility to come into force   rte.ie/news/technology/20... · Posted by u/austinallegro
zerof1l · 2 months ago
There's a German version that has nice FAQ and is written in a more human friendly way going into all the details. You can use Google translate https://bfsg-gesetz.de/#faq

I'm very interested in how they've implemented Google Analytics. No external JS is loaded, just 9KB of packed JS embedded implementing a minimal call... and then it is being sent to their own script analytics4.php which acts like MITM. Does anyone know the name of the plugin or package they are using?

u/zerof1l

KarmaCake day662July 6, 2018View Original