Does closing the M-series laptop lid no longer throttle the CPU like it did on the Intel ones?
HN user
dcan
Canadian Electrical Engineer in Training
Comments are my own and do not represent my employer
Buisness: dbristow (at) ontrackcontrols.ca
I will agree - async rust on an operating system isn’t all that impressive - it’s a lot easier to just have well defined tasks and manually spawn threads to do the work.
However, in embedded rust async functions are amazing! Combine it with a scheduler like rtic or embassy, and now hardware abstractions are completely taken care of. Serial port? Just two layers of abstraction and you have a DMA system that shoves bytes out UART as fast as you can create them. And your terminal thread will only occupy as much time as it needs to generate the bytes and spit them out, no spin locking or waiting for a status register to report ready.
09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0
Patents and licensing, usually
I see 15g CO2(eq)/km in the bottom left-hand corner
Terminating HDCP is difficult, you’d have to downgrade it to HDCP 1.4 and then have a 1.4 ‘compliant’ (see: device on the end for it to be a dummy monitor. If you need anything newer than HDCP 1.4, it’s likely not possible.
Try reading a 40+ page document with track changes enabled (and 100+ changes) - it pins a full CPU core for 5 seconds when you go to the next page!
Gray text on a black background is an awful colour choice for this website
I tried Portal RTX on a 9070 XT and got 20 FPS at full resolution (no frame generation). There’s no driver limitations, but I have no idea what the expected FPS is
To be more precise, four CPUs - two ARM and two RISC. There is just a mux for the instruction and data buses - see chapter 3 of the [datasheet](https://datasheets.raspberrypi.com/rp2350/rp2350-datasheet.p...).
It’s space-inefficient as half of the CPUs are shutdown, but architecturally it’s all on the same bus.
They already do - most of the components buck the 12V down to the 1.3ish volts that the GPU core needs
I would argue the opposite - DisplayPort has won the computing format war, especially on laptops. Most laptops will have at least two USB-C ports with DisplayPort tunneling. Most business PCs have only DisplayPort connectivity, with the assumption that you'll buy a DisplayPort to HDMI adapter (if you have an older monitor that only supported HDMI).
True, we will never see them on the TV, but on the computer it is all DisplayPort.
Does Half Life Alyx not come with the headset anymore?
That github link gives a 404 - is the repo private?
Ah. I ran into this last weekend when installing Linux to a secondary partition. I just disabled secure boot, good to know there is a proper workaround
"The plane had been cruising at 17,000 feet until 1:21 p.m., when it dropped approximately 250 feet in 10 seconds. It then climbed approximately 400 feet in about eight seconds."
The last sentence suggests that they were actively trying to get back to their assigned altitude of 17,000′.
I believe the author is implying that if the pilots attempted to maintain speed rather than altitude, the aerodynamic stall wouldn't have occurred - if they descended below 12000', the icing would be reversible.
For your first point, does ../../user/repo.git not work? I have a self hosted GitLab and that’s how I’ve specified all my submodules and it survived a top-level url change (with a new clone or changing the origin)
I think you misunderstand the whole concept of P2P payment apps - it’s meant to be digital cash and replace physical money.
Credit cards can afford to protect you from fraud because of the high level of trust between companies and the point of sales - too many fraudulent purchases and they stop accepting the transactions. Not to mention the fees they charge to both the purchasers and sellers!
If you get scammed with a debit card, cash, or a P2P app, that’s a matter for small claims courts, and if you’re lucky, maybe the police will charge them with a crime. But the risk is on the individual, and that’s a feature, not a bug.
It was rolled out through Windows update, so I'm not confident the end users authorized it.
I wrote a USB host driver for the STM32F4 a couple months ago, and the most difficult part was the lack of good documentation - the peripheral had r/w registers mapped as read-only in the SVD, there was a bit you had to set that wasn't mentioned in the documentation, and then the whole USB bulk-only-transport pointing to a non-existent SCSI spec. I ended up finding a blog post stating that you have to basically copy what Windows does in order for USB drives to work.
Luckily I had an oscilloscope that could decode USB frames to save me a whole bunch of time to understand why things weren't working.
USB seems to depend on a whole lot of tribal knowledge, which makes it impressive that it is so ubiquitous and works out of the box for the most part.
Any plans to sell just the display?
I wouldn’t consider passport, social security, or bank account numbers “public records”.
Nope, parking brakes are usually a separate (and traditionally mechanical) system on automatics. Electronic parking brakes are still rare
Not quite the same - automatic transmissions have a pawl that locks the axle in place, it’s not just the engine like in a manual transmission.
How much do you know about getting into this field? I’d be interested to know more.
We're regressing back to fiefdom in Canada thanks to the unaffordability of housing and people in the United States have a similar situation with employer provided medical coverage combined with at-will employment.
True, many more people are out of poverty, but few are truly prosperous anymore compared to the "American Dream" in the latter half of the 20th century.
The most bizarre thing in my experience is that they removed "Refresh" from that context menu, yet Explorer will a) not update when an application writes a new file, and b) when you rename a file, it does not get automatically sorted.
I’m using Rust in embedded systems for this reason - sure C is the ‘native’ language, but the engineers before me couldn’t tame the beast and made barely working software. The HAL provided by STMicro is functional but riddled with side-effects and is incompatible with an RTOS.