HackerTrans
TopNewTrendsCommentsPastAskShowJobs

sour-taste

no profile record

comments

sour-taste
·9 maanden geleden·discuss
Can they sue, and if they do are they likely to win? My laymans gut feeling is they will lose because the constitution says nothing about the government being required to provide press access to facilities. However, if they allow access to one organization but not another seems there could be an argument that they're policing speech? Would be great to hear a more informed take.
sour-taste
·9 maanden geleden·discuss
Overlapping intervals were a question back in 2023 so yeah, it's useful
sour-taste
·9 maanden geleden·discuss
Doing this today I'd just have a std::function parameter and have callers pass in a lambda. I may use a third party std::function that doesn't have the weird copy semantics though
sour-taste
·9 maanden geleden·discuss
Having spent a lot of time in Japan, construction there was a way to provide money to poor regions. You build some big project and pay people good wages and encourage growth of local industry. Not saying it's good or bad but the economics may be secondary to these goals
sour-taste
·9 maanden geleden·discuss
I'm pretty ignorant here, but as I understand it

* The design time on a new plane is going to be tens of years

* Boeing is already losing customers to Airbus as a result of the max disaster, doors blowing off, etc.

* The major thing keeping Boeing in business is long delivery time orders of their older planes, and those are drying up

Given these things can this help them in time?
sour-taste
·10 maanden geleden·discuss
Because it's relevant to many on this site, most bay area cities are users
sour-taste
·10 maanden geleden·discuss
> the sad reality is that the majority of the criminals are not amenable to rehabilitation

What evidence do you have for this?
sour-taste
·10 maanden geleden·discuss
I agree standard bikes are a poor fit for luggage. There are cargo (e)bikes that can comfortably hold large bags (e.g. https://larryvsharry.com/products/ebullitt). They may make sense at major rail stations, but the logistics of keeping them in stock at the station would be hard, and of course this doesn't solve the infrastructure or physical disabilities/age problem.
sour-taste
·10 maanden geleden·discuss
Is this corporate Goofus and Gallant?
sour-taste
·10 maanden geleden·discuss
Seems very inspired by gmock. Wondering if there's a comparison somewhere?
sour-taste
·10 maanden geleden·discuss
Even baseless accusations like this are likely to lead to capitulation by companies out of fear of reprisal from the rest of the trump administration. We can look forward to explicitly allowlisted winred advertising from here on out I'm sure.
sour-taste
·10 maanden geleden·discuss
My belief is that modules were designed for big tech companies that do massive builds parallelized across thousands of machines. Such an environment makes the complexity bearable and you get massive speedups from cached build artifacts. I think smaller companies and hobbyists kinda got screwed.
sour-taste
·11 maanden geleden·discuss
Thanks for taking the time to round up these posts for me!
sour-taste
·11 maanden geleden·discuss
I guess the driver was the one that runs on Mac that they were able to refer to? Not sure you have any links to blog posts about this process it sounds so cool
sour-taste
·11 maanden geleden·discuss
Didn't all the asahi Linux Mac m1 drivers essentially get reverse engineered with little to no support from apple and no public docs? If I'm remembering correctly then I guess it's possible with enough effort and reverse engineering skills
sour-taste
·11 maanden geleden·discuss
* The vast majority aren't compiled into any given kernel

* Those that are are only loaded when needed

It's not that bad
sour-taste
·11 maanden geleden·discuss
Storage on spinning disks does. Storage on ssds does as well but should be much less. Cold backups don't. Now, the idea that people can just delete their cat pictures to meaningful impact cooling in the dcs is just garbage, particularly now when most of the energy used in the dcs goes to gpus
sour-taste
·11 maanden geleden·discuss
Since the limit you ran into was number of open files could you just raise that limit? I get blocking the spammy traffic but theoretically could you have handled more if that limit was upped?
sour-taste
·vorig jaar·discuss
The reason it works better on Mac and windows is because they're designed to be desktop OSs. On Linux the funding goes to things cloud services and Android use, which decidedly does not include suspension or other desktop features
sour-taste
·2 jaar geleden·discuss
Some interesting things that would be interesting to add to this:

- thread safety ( not too hard to add on top of your liked list) - variable sized allocations. Ideally something more akin to malloc. Could be done wastefully by rounding up to the nearest chunk size - (as mentioned in the article) variable chunk sizes - zeroing of memory before handing it back to users - double free detection or even better full asan support