HackerLangs
TopNewTrendsCommentsPastAskShowJobs

sn

no profile record

comments

sn
·قبل 9 أيام·discuss
I got excited thinking maybe another one was going to be held, because it was a lot of fun to do! Oh well.

If I put my submission up on github, is that considered unethical in the days of LLMs?
sn
·قبل 18 يومًا·discuss
This sounds like fun, but I'm not sure how changing build systems fixes the vendor problem. They will just ship their proprietary blobs built on top of this new build system instead of the old one, and will not change other behavior. Buying from vendors who upstream or minimally open source their work might help.

Yes, skipping builds from source can be faster, and, I don't know that you need to throw away yocto to do that https://rootcommit.com/pub/conferences/2024/elce/yocto-binar...

From the statement about "Caches builds so no piece of software is built twice." I'm guessing that the author has not enabled sstate caching https://docs.yoctoproject.org/dev/overview-manual/concepts.h...

I'm a little doubtful on the post's assertion that yocto is only needed for "deeply embedded regulated products." For products that have to follow the https://en.wikipedia.org/wiki/Cyber_Resilience_Act coming up, they will almost certainly need:

* SBOM management https://docs.yoctoproject.org/next/dev-manual/sbom.html

* CVE (or its successor) tracking https://docs.yoctoproject.org/dev/security-manual/vulnerabil...

* License management https://docs.yoctoproject.org/next/dev-manual/licenses.html

And I'll echo what some other folks have said here: if you don't need features like that, bundle your custom bootloaders and kernel with a binary distribution like Debian and call it a day.
sn
·قبل 23 يومًا·discuss
There's a relatively easy technological solution to mold: buy a dehumidifier.

We bought two after moving to Ireland. Both have drainage hoses. One has a pump and empties into the kitchen sink, the other has no pump and the drainage hose empties into the shower. No more mold problems.
sn
·قبل 3 أشهر·discuss
I'm not sure if I would have started using Linux but for buying an n800, so thanks for that.

We never did get around to our funeral for Nokia, sadly.
sn
·قبل 4 أشهر·discuss
It's great marketing! But yes. He considers it an error to specify "Use the same knife for the jelly" even though it's considered correct to state "Wipe the knife clean before using it for jelly". The latter statement implies the former, and if you follow all the instructions both are not wrong.

I also consider some of the instructions to be under specified. For example, a piece of bread could be said to have 6 sides, but only 2 of those are helpful for making a sandwich.
sn
·قبل 7 أشهر·discuss
Yes, the price is higher, maybe partially because it's not ad-subsidized. I was happy to pay it, this is what I bought: https://www.sharp.eu/sharp-nec-multisync-e868

There's historical speculation that a smart TV could connect to an open wireless access point, or more realistically, that it refuses to operate without internet access, perhaps after a certain number of power on hours.
sn
·قبل 8 أشهر·discuss
I think this is partially restating "try smarter, not harder" with a lot more words.

I also think it's unkind not to recognize that we have limited time and energy and it's simply not possible to address everything all at once.

IMO the better takeaway is to learn to admit when we're doing that (deprioritizing a problem we don't have the resources to address,) rather than pretending there is no choice, so it occurs to us to revisit the problem if and when there are the resources to do so. My personal approach to this would be to add it a todo list with no assigned due date.

Also, I don't know who the author is talking about, but when I read:

"These are people who could successfully launch a product in a foreign country with little instruction, but who complain that there aren’t any fun people to meet on the dating apps."

I hear someone who maybe isn't valuing romantic relationships but also views admitting that as socially taboo, so they come up with an excuse for why they're not in a relationship. I don't necessarily perceive someone who isn't applying agency to all areas of their life.
sn
·قبل 8 أشهر·discuss
With clothes, make it cheap so if you make the wrong decision it's not a big deal.

Also recognize you're engaging in the sunk cost fallacy by keeping clothes you don't actually want, and you're making the world better by allowing it to go to an owner who would better appreciate it.

Some more concrete ideas:

1. thrift stores

2. clothes rentals

3. clothing swaps

4. Buy the cheap version of what you think you might like (if it exists) first before buying the expensive version

5. Don't make your entire wardrobe trendy clothes. Make most of it relatively classic / basic and limit "trendy" to a subset of items.
sn
·قبل سنتين·discuss
My reading of the commit message is they're claiming the "data" should look random.
sn
·قبل سنتين·discuss
For bad-3-corrupt_lzma2.xz, the claim was that "the original files were generated with random local to my machine. To better reproduce these files in the future, a constant seed was used to recreate these files." with no indication of what the seed was.

I got curious and decided to run 'ent' https://www.fourmilab.ch/random/ to see how likely the data in the bad stream was to be random. I used some python to split the data into 3 streams, since it's supposed to be the middle one that's "bad":

I used this regex to split in python, and wrote to "tmp":

    re.split(b'\xfd7zXZ', x)
I manually used dd and truncate to strip out the remaining header and footer according to the specification, which left 48 bytes:

    $ ent tmp2 # bad file payload
    Entropy = 4.157806 bits per byte.
    
    Optimum compression would reduce the size
    of this 48 byte file by 48 percent.
    
    Chi square distribution for 48 samples is 1114.67, and randomly
    would exceed this value less than 0.01 percent of the times.
    
    Arithmetic mean value of data bytes is 51.4167 (127.5 = random).
    Monte Carlo value for Pi is 4.000000000 (error 27.32 percent).
    Serial correlation coefficient is 0.258711 (totally uncorrelated = 0.0).
    
    $ ent tmp3 # urandom
    Entropy = 5.376629 bits per byte.
    
    Optimum compression would reduce the size
    of this 48 byte file by 32 percent.
    
    Chi square distribution for 48 samples is 261.33, and randomly
    would exceed this value 37.92 percent of the times.
    
    Arithmetic mean value of data bytes is 127.8125 (127.5 = random).
    Monte Carlo value for Pi is 3.500000000 (error 11.41 percent).
    Serial correlation coefficient is -0.067038 (totally uncorrelated = 0.0).
    
The data does not look random. From https://www.fourmilab.ch/random/ for the Chi-square Test, "We interpret the percentage as the degree to which the sequence tested is suspected of being non-random. If the percentage is greater than 99% or less than 1%, the sequence is almost certainly not random. If the percentage is between 99% and 95% or between 1% and 5%, the sequence is suspect. Percentages between 90% and 95% and 5% and 10% indicate the sequence is “almost suspect”."