Readit News logoReadit News
milliams commented on Mozilla's New CEO Confirms Firefox Will Become an "AI Browser"   omgubuntu.co.uk/2025/12/m... · Posted by u/LopRabbit
milliams · a day ago
It bothers me that it's not even a "AI web browser", but an "AI browser". I don't want to browse "AI", I want access to the web.
milliams commented on Using Python for Scripting   hypirion.com/musings/use-... · Posted by u/birdculture
_jzlw · 11 days ago
How do you handle packages? I want scripts to a be a single file with a shebang, not a repo with a requirements.txt that I need to run in a venv. To me, this is the biggest blocker to using Python for any non-trivial scripting (which is precisely the kind where I wouldn't want to use bash), but I'd like to know how others deal with it.

C# scripts let you reference packages in a comment at the top of the file, for example:

https://devblogs.microsoft.com/dotnet/announcing-dotnet-run-...

milliams · 7 days ago
https://peps.python.org/pep-0723/, e.g.:

  # /// script
  # requires-python = ">=3.11"
  # dependencies = [
  #   "requests<3",
  #   "rich",
  # ]
  # ///
  
  import requests
  from rich.pretty import pprint
  
  resp = requests.get("https://peps.python.org/api/peps.json")
  data = resp.json()
  pprint([(k, v["title"]) for k, v in data.items()][:10])

milliams commented on UniFi 5G   blog.ui.com/article/intro... · Posted by u/janandonly
a3w · 14 days ago
Ah, this is a Ubiquity product. That explains it.

Why did AVM or Netgear Orbi not get this treatment for "works", though?

milliams · 14 days ago
Small aside, AVM have now formally rebranded as "FRITZ!"
milliams commented on Cloudflare outage on November 18, 2025 post mortem   blog.cloudflare.com/18-no... · Posted by u/eastdakota
tormeh · a month ago
Partial disagree. There should be lints against 'unwrap's. An 'expect' at least forces you to write down why you are so certain it can't fail. An unwrap is not just hubris, it's also laziness, and has no place in sensitive code.

And yes, there is a lint you can use against slicing ('indexing_slicing') and it's absolutely wild that it's not on by default in clippy.

milliams · a month ago

  [lints.clippy]
  dbg_macro = "deny"
  unwrap_used = "deny"
  expect_used = "deny"

milliams commented on IKEA launches new smart home range with 21 Matter-compatible products   ikea.com/global/en/newsro... · Posted by u/lemoine0461
pta2002 · a month ago
It’s a newer standard backed by multiple vendors (importantly, Apple, Google and Amazon, who make the devices that you ultimately want to use to control these things).

Zigbee is great for communication instead of WiFi, but it’s just one part of the equation - it says nothing about the specific commands a device will respond to. You couldn’t pair a Philips remote with an IKEA lightbulb.

Matter attempts to fix it by actually defining the protocol that these devices use. It’s also fully local and open source, which is great. The actual transport layer can be WiFi, but it can also be Thread, which is a newer standard based off Zigbee, and AFAIK some Zigbee controllers can be reprogrammed to support it.

They don’t specify what transport layer they are using here, but considering the kind of devices they are showing (battery-powered remotes) it’s almost definitely Thread.

milliams · a month ago
https://www.theverge.com/tech/814928/ikea-matter-thread-diri... has some quotes from IKEA saying that they're using Thread. It's strange they didn't say in this release though.
milliams commented on State of Terminal Emulators in 2025: The Errant Champions   jeffquast.com/post/state-... · Posted by u/SG-
audidude · 2 months ago
So the state of 2025 then tests a VTE that is from 2023? 4 major releases behind? And through a GTK 3 app, not even a GTK 4 one which will use the GPU?
milliams · 2 months ago
Likewise I noticed that Konsole was version 23.08. I've just submitted a PR (https://github.com/jquast/ucs-detect/pull/14) to update it to 25.08.
milliams commented on I built my own CityMapper   asherfalcon.com/blog/post... · Posted by u/ashfn
milliams · 2 months ago
Why are the table and the description of the RAPTOR algorithm in the article images rather than text?
milliams commented on From VS Code to Helix   ergaster.org/posts/2025/1... · Posted by u/todsacerdoti
milliams · 2 months ago
I'd also argue that VS Code is not open source - at least not the version that 98% of people run. If you download VS Code from almost anywhere (and are not using Codium) then you are subject to the licence terms at https://code.visualstudio.com/license which says you may not:

- reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software except and solely to the extent required by third party licensing terms governing use of certain open source components that may be included in the software;

- remove, minimize, block or modify any notices of Microsoft or its suppliers in the software;

- use the software in any way that is against the law;

- share, publish, rent or lease the software, or provide the software as a stand-alone offering for others to use.

milliams commented on Syntax highlighting is a waste of an information channel (2020)   buttondown.com/hillelwayn... · Posted by u/swyx
milliams · 2 months ago
KDevelop's semantic highlighting where each variable was given its own colour was always the one I found most useful. It made tracking the meaning of some code much easier than just highlighting by token category.

u/milliams

KarmaCake day2930March 8, 2012
About
[ my public key: https://keybase.io/milliams; my proof: https://keybase.io/milliams/sigs/9jCSaAwXNd_cxXj7VmK4ba_ivP8-lAYJ9z59AAPGI5U ]
View Original