Lt_Riza_Hawkeye
|
23 hours ago
|
on: What I Always Wanted to Know about Second Class Values
Even if you use C++, and your lambdas allocate to the heap when created and deallocate when going out of scope, this paper could still help reduce the need for heap allocation for capturing lambdas in the first place, improving performance.
Lt_Riza_Hawkeye
|
2 months ago
|
on: Warren Buffett steps down as Berkshire Hathaway CEO after six decades
I think they just meant it's very stereotypically american to drive a very walkable distance and eat McDonald's every day
Lt_Riza_Hawkeye
|
3 months ago
|
on: Memories of .us
They need to, as when the "." is not present, your search domains are used, but they are not used when the trailing "." is present.
For example, if you enter "ajdfajkhdfkajd.com", and your search domains contain one item called "mycompany.tld", then the browser will first query DNS servers for "ajdfajkhdfkajd.com.", and when an NXDOMAIN is returned, they will try "ajdfajkhdfkajd.com.mycompany.tld." next. If you type "ajdfajkhdfkajd.com." in the browser directly, only the first query is attempted.
Lt_Riza_Hawkeye
|
5 months ago
|
on: Paged Out Issue #7 [pdf]
I think gp meant a physical/print copy in the snail mail
Lt_Riza_Hawkeye
|
8 months ago
|
on: Abusing copyright strings to trick SW into thinking it's running competitor's PC
it absolutely shipped in the beta...
Lt_Riza_Hawkeye
|
1 year ago
|
on: Initial details about why CrowdStrike's CSAgent.sys crashed
It is not so bad with Mastodon but much fedi software gets slower the longer it's been running. "Akkoma Rot" is the one that's typically most talked about but the universe of misskey forks experiences the same problems, and Mastodon can sometimes absolutely crunch to a halt on 4GB of ram even for a single user instance.
Lt_Riza_Hawkeye
|
1 year ago
|
on: CrowdStrike Update: Windows Bluescreen and Boot Loops
presumably they handle credit card transactions
Lt_Riza_Hawkeye
|
1 year ago
|
on: How Convex Works
Thank you!
Lt_Riza_Hawkeye
|
1 year ago
|
on: How Convex Works
Curious about the choice to send requests with WebSocket connections instead of just plain old POST forms. This precludes anyone with javascript disabled from using any of these sites. I don't think there's anything in the business logic preventing it
Lt_Riza_Hawkeye
|
1 year ago
|
on: I Have Deleted Systemd
Why not chroot in and use your now-connected internet to reinstall systemd?
Lt_Riza_Hawkeye
|
2 years ago
|
on: Over 100k Infected Repos Found on GitHub
The heartbleed vulnerability was hidden in plain sight for the better part of a decade, no?
Lt_Riza_Hawkeye
|
2 years ago
|
on: VATSIM: The International Online Aviation Network
While IVAO is more popular in Europe than IVAO is in North America, VATSIM is still more popular in any given region. If you think ATC could be more realistic, or take into consideration anything you think might have been overlooked, I definitely encourage reaching out to your regional vice president. I highly suspect they will share your feelings, but they may be able to expand on what's technically and logistically possible. Sometimes the only barrier is a lack of volunteers! Even VATUSA was without a social media management team lead for several weeks until just a few days ago, due mainly to lack of volunteers.
Lt_Riza_Hawkeye
|
2 years ago
|
on: Will the new judicial ruling in the Vizio lawsuit strengthen the GPL?
I believe it only has to be provided to recipients of the binaries, so you can still charge money for linux modifications, such as grsec.
Lt_Riza_Hawkeye
|
2 years ago
|
on: JetBrains forces AI freemium plugin that cannot be completely removed into IDEs
Sure, but you should at least be able to uninstall the plugin. According to the thread it reinstalls itself on each launch
Lt_Riza_Hawkeye
|
2 years ago
|
on: Linux: Ext4 data corruption in 6.1.64-1
The problem here was Debian's distribution process. Any distro compiling linux from the releases on kernel.org was not affected.
Lt_Riza_Hawkeye
|
2 years ago
|
on: The 1988 shooting down of Flight 655 as a user interface disaster
It was an air france accident, it happened twice (both times to air france), one time it resulted in an accident, then it happened again later but it only resulted in an extremely stressful go around
Lt_Riza_Hawkeye
|
2 years ago
|
on: A Bit About Byte Magazine
I assume they meant they wrote it in 6502 assembly
Lt_Riza_Hawkeye
|
2 years ago
|
on: ClickHouse Keeper: A ZooKeeper alternative written in C++
Lt_Riza_Hawkeye
|
2 years ago
|
on: PostScript’s sudden death in Sonoma
I think they were correcting the spelling from depreciated to deprecated
Lt_Riza_Hawkeye
|
2 years ago
|
on: Parsing integers quickly with AVX-512
It bounds checks just fine, as long as you pass it a null-terminated string. It just returns 0 on error, so there's no way to know if the string was for example, larger than would fit in an int, or even just totally invalid, or if the user actually entered 0.