HackerTrans
TopNewTrendsCommentsPastAskShowJobs

justinsaccount

no profile record

comments

justinsaccount
·hace 18 días·discuss
Sonic the Hedgehog 3 launch price was $69.99. in 1994.

That's $159.89 in today's dollars.
justinsaccount
·hace 19 días·discuss
> You can't use many of the features it's capable of in gaming mode

It is trivial to switch between gaming mode and desktop mode. I'm not sure what point you are trying to make here.
justinsaccount
·el mes pasado·discuss
> The Zig implementation that powered Bun is gone.

The Zig implementation is literally still there.

You can make predictions of what might happen in the future, but hard to take the rest of the article seriously when it has the basic facts wrong.
justinsaccount
·el mes pasado·discuss
Wait, the example held up for "Stop ruining it" is a company that sells snake oil audiophile bullshit?
justinsaccount
·el mes pasado·discuss
that quote seems to be a bit of an oversimplification to the point of being completely wrong.

> Without them, your system accepts arbitrary data from the public network.

Neither of these features change if you are accepting arbitrary data from the public network. They limit what an exploited process can do. It's explained properly in the 'Security' section, so I'm not sure where this came from.
justinsaccount
·hace 3 meses·discuss
I ran into the same thing with Kinesis. The Kinesis API has strict limits on batch size, message size, and rate limiting. Any client writing to Kinesis must deal with all of these constraints and handle errors properly.

I briefly looked at localstack to see how they implemented the Kenesis api and other than a `KINESIS_ERROR_PROBABILITY` option to simulate rate limiting, they did not implement any of the constraints.
justinsaccount
·hace 4 meses·discuss
> none of my dockers

Containers ran using docker are called containers, not dockers.
justinsaccount
·hace 5 meses·discuss
One interesting thing with zram (which OS X also does by default) is that certain memory leaks... effectively don't. I have a little raspberry pi where I have zram enabled. If I make a string in python and keep appending 'a's to it, eventually zram just soaks it up:

  $ zramctl
  NAME       ALGORITHM DISKSIZE  DATA COMPR TOTAL STREAMS MOUNTPOINT
  /dev/zram0 zstd          3.8G  2.3G 13.2M 17.2M       4 [SWAP]
2.3GB of 'a's that gets compressed down to 20MB.
justinsaccount
·hace 5 meses·discuss
Did you consider clicking the "Click here for more information" to learn what the reason was?
justinsaccount
·hace 5 meses·discuss
The end result is the same as the regular way of tying it. perhaps you are doing a https://www.fieggen.com/shoelace/crossedianknot.htm by mistake
justinsaccount
·hace 6 meses·discuss
> Stop trying to make everyone act like you act.

Yeah! Telling people what to do is rude!

> Anyone still using Linux on the desktop in 2026 should switch

Oh.
justinsaccount
·hace 6 meses·discuss
I have a few older models lying around too, there's some other minor benefits as well:

  * They have full sized HDMI ports 
  * They will happily run using any random old USB charger and not overheat.
justinsaccount
·hace 6 meses·discuss
That sort of mechanism is not a "joke" and is often used for trademark/legal reasons, not technical ones.
justinsaccount
·hace 7 meses·discuss
If the effectiveness of mining is represented as profit divided by the cost of running the infrastructure, then a CPU that someone else is paying for is worth it as long as the profit is greater than zero.
justinsaccount
·hace 7 meses·discuss
> It seems like AV stuff used to be so simple.

> without a bulky expensive receiver box

A "receiver" has been one of the standard options for making bookshelf speakers work for more than 50 years. A receiver is also not expensive. You can get a basic used one for under $100. I paid $30 for a perfectly working 5.1 Denon receiver with HDMI.

Your problem is that you aren't even using "Modern" AV stuff. If you were, your speakers and TV would both have HDMI Arc ports. Arc has been a thing since 2009.

> That's harder than it sounds though because you have to navigate the menu blind using short and long button presses with the one button.

Or you could unplug it and plug it back in.
justinsaccount
·hace 7 meses·discuss
Not that simple.

If they added latency to all packets then London would still have the lowest latency.
justinsaccount
·hace 7 meses·discuss
Odd that it came up with

  pattern_start = 1 if half_digits == 1 else 10 ** (half_digits - 1)
when

  10 ** (half_digits - 1)
is fine.
justinsaccount
·hace 8 meses·discuss
You seem to be forgetting the framework desktop which is very similar in form factor to the new steam machine: https://frame.work/desktop
justinsaccount
·hace 9 meses·discuss
run `tailscale status` and ensure that your local machines are connected to each other `direct` and not using a relay.
justinsaccount
·hace 9 meses·discuss
The most common use for rsync is to run it over ssh where it starts the receiving side automatically. cdc is doing the exact same thing.

You were misinformed if you thought using rsync required setting up an rsync service.