id
int64 0
12.9M
| type
large_stringclasses 5
values | by
large_stringlengths 2
15
⌀ | time
timestamp[us] | title
large_stringlengths 0
198
⌀ | text
large_stringlengths 0
99.1k
⌀ | url
large_stringlengths 0
6.6k
⌀ | score
int64 -1
5.77k
⌀ | parent
int64 1
30.4M
⌀ | top_level_parent
int64 0
30.4M
| descendants
int64 -1
2.53k
⌀ | kids
large list | deleted
bool 1
class | dead
bool 1
class |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
41,799,500 | comment | simiones | 2024-10-10T14:56:14 | null | You can actually (almost) make it work, you just need to add an extra type parameter to keep Go's silly limitations happy [0]:<p><pre><code> strs := []string{"abc", "defgh", "klmnopqrst"}
ints := From[string, int](strs).
Map(func(a string) int { return len(a) }).
Filter(func(a int) bool { return a >= 4 })
Iterator[int, float32](ints).
Map(func(a int) float32 { return float32(a) }).
Each(func(a float32) { fmt.Printf("%v\n", a) })
//prints 5, then 10
</code></pre>
If they allowed the postfix cast syntax to work for non-interface types too, it could have been a single chain, actually (you could do `.(Iterator[int, float32])` inline instead of needing the extra variable.<p>Note that the original implementation in the article modifies the collections in place, in which case this issue doesn't come up at all: you can't put strings in an array of ints. My implementation creates copies of these collections so that the concept of mapping to a new type actually makes sense.<p>[0] <a href="https://go.dev/play/p/ggWrokAk7nS" rel="nofollow">https://go.dev/play/p/ggWrokAk7nS</a> | null | null | 41,798,757 | 41,769,275 | null | null | null | null |
41,799,501 | comment | fractallyte | 2024-10-10T14:56:28 | null | OK, I misunderstood - apologies! You're right about the tablet; I'd forgotten about that... | null | null | 41,778,439 | 41,749,296 | null | null | null | null |
41,799,502 | comment | yakz | 2024-10-10T14:56:37 | null | They are objectively bad for some definitions of bad. What do you want for them? Universal respect? Just because taking something good and making it shitty is one way to make money doesn't mean that it is the only way to make money. | null | null | 41,799,350 | 41,797,719 | null | [
41799532,
41799921
] | null | null |
41,799,503 | comment | Doxin | 2024-10-10T14:56:38 | null | The real trick there is that not() isn't a function call. It's not applied to the empty tuple. The empty tuple is False, so not () returns True. | null | null | 41,779,645 | 41,763,239 | null | null | null | null |
41,799,504 | comment | jamincan | 2024-10-10T14:56:53 | null | > These arguments get said a lot and they are all fine in theory, but in practice, all code over a certain size has a tremendous number of latent bugs, even Rust code.<p>Are you claiming this from direct experience, or do you have some data to back it up? Apparently the rollback rate for Rust code in Android is less than half that of C++. [1]<p>1. <a href="https://security.googleblog.com/2024/09/eliminating-memory-safety-vulnerabilities-Android.html" rel="nofollow">https://security.googleblog.com/2024/09/eliminating-memory-s...</a> | null | null | 41,794,679 | 41,791,773 | null | null | null | null |
41,799,505 | comment | brettkromkamp | 2024-10-10T14:56:55 | null | Excellent write up. Especially the part about SQLite PRAGMAs is very helpful (my web application is also SQLite-based). Thanks for sharing your experience. | null | null | 41,799,082 | 41,799,082 | null | [
41799587
] | null | null |
41,799,506 | comment | mikro2nd | 2024-10-10T14:56:59 | null | Beer certainly is an odd one! Some (craft) craft beers will age gracefully -- improving, even -- for <i>years</i>. Industrial lagers... <i>not so much</i>.<p>I scored once with an imported (Belgian) craft beer at the local supermarket, heavily marked down price because the sell-by date was approaching. Some days later, marked down by half again because the date had passed. Needless to say, I bought all I could carry. | null | null | 41,799,438 | 41,765,006 | null | [
41799593,
41799595
] | null | null |
41,799,507 | comment | cannonpr | 2024-10-10T14:57:03 | null | I think you will find that cocaine actually compares very favourably and exceeds most current ones, except for the addiction potential, and the damage it did to the US foreign currency balance way back when they made it illegal. | null | null | 41,798,129 | 41,787,798 | null | [
41800915
] | null | null |
41,799,508 | comment | taylodl | 2024-10-10T14:57:10 | null | <i>> Tesla has pushed out numerous updates to FSD over the years, so it can be tough to pin down what exactly is wrong with Tesla’s approach. Often, users flag a problem — the vehicle fails to recognize certain signage or a specific driving maneuver — and almost just as quickly, Tesla has an update available. That seems like a good thing — Tesla is responsive to problems and moves quickly to fix them — until you remember that real people’s lives are at stake. And the pedestrians and cyclists outside the vehicle never consented to participating in this experiment to teach cars to drive themselves.</i><p>I have the same visceral reaction to my never having consented to be part of Tesla's experiment, but I remind myself that the NHTSA has provided them that consent on my behalf, and that the NTSB hasn't recommended the revocation of that consent. Assuming these agencies are doing their jobs, and AFAIK there's no reason to believe they aren't, then I can only conclude these systems are statistically as safe as a human driver or maybe even safer.<p>As a consumer though, I'm not buying FSD until Tesla assumes all legal responsibility for the vehicle's actions and I don't have to babysit the thing. Until then, Tesla can call it whatever they want - but it's <i>not</i> Full Self Driving. | null | null | 41,798,862 | 41,798,862 | null | null | null | null |
41,799,509 | comment | bluefirebrand | 2024-10-10T14:57:12 | null | > Ideally, I want engineers focused on building, not taking discovery meetings with potential customers, messing around in Figma, projecting financials, writing ads, or any other role.<p>Maybe engineers shouldn't be bothering writing ads, or projecting financials<p>But if you want good builders, they should absolutely be in contact with the clients and building mockups (which you describe as messing around in Figma)<p>Assembly line style development where devs just churn through endless tickets is fine for junior devs but cannot be what your senior and principal devs are doing. | null | null | 41,798,087 | 41,797,009 | null | [
41801242
] | null | null |
41,799,510 | comment | MichaelZuo | 2024-10-10T14:57:18 | null | After spending and upgrading all these facilities, wouldn’t this make America, and every other country, less safe in aggregate?<p>Since in the current environment it’s impossible to imagine decision makers in other world capitals wouldn’t respond and enact countermeasures accordingly. | null | null | 41,798,916 | 41,798,916 | null | [
41800322,
41801335,
41799739
] | null | null |
41,799,511 | comment | zero_k | 2024-10-10T14:57:20 | null | Cadence is a good one. There are also bus/train schedule optimization startups/companies. AWS is also hiring in this field, a lot, but I wouldn't recommend it. Even though many people there are very good, and I respect some of the individual people there very much. | null | null | 41,798,613 | 41,753,626 | null | null | null | null |
41,799,512 | comment | stuaxo | 2024-10-10T14:57:24 | null | When counting your tax in the US add in your health insurance cost to compare to most of Europe.<p>Or if it's parts of Europe like Portugal where there is health insurance check the cost - looks like 14 euros to 90 euros a month:<p><a href="https://www.beportugal.com/health-insurance-in-portugal/" rel="nofollow">https://www.beportugal.com/health-insurance-in-portugal/</a> | null | null | 41,799,398 | 41,799,016 | null | [
41801695,
41800154
] | null | null |
41,799,513 | comment | pdyc | 2024-10-10T14:57:28 | null | Public sheets don't require oauth, i am using public sheet as test url to display csv in my tool. | null | null | 41,798,583 | 41,798,477 | null | null | null | null |
41,799,514 | comment | bjornsing | 2024-10-10T14:57:33 | null | > Then one day the business owner (my father) said “hey this customer is going to come by and pick up the order so don’t print a shipping label.” Yikes had to figure that out. Then one day another customer said “hey can we pay cash on delivery?” C.O.D. used to be a thing. Then I had to add that.<p>What happens if you just say no? I have a feeling a lot of complexity stems from the fact that these exceptions are easy to handle when you’re doing things manually, so it’s hard to say no. But if you think about the business case I would not be surprised if the correct answer is no more often than not. | null | null | 41,765,594 | 41,765,594 | null | [
41801098,
41799964
] | null | null |
41,799,515 | comment | bilekas | 2024-10-10T14:57:37 | null | I'm actually super curious about that too, as far as I know pathogens cant live in beer, so I don't know how it can go bad.<p>I wonder though if local brewery's or more artigianale brewing processes are different and maybe could be a bit riskier ? | null | null | 41,799,438 | 41,765,006 | null | [
41799646,
41799571,
41800348
] | null | null |
41,799,516 | comment | _visgean | 2024-10-10T14:57:45 | null | you can get Fuji GFX with detachabke eye finder. | null | null | 41,796,953 | 41,760,076 | null | null | null | null |
41,799,517 | comment | simiones | 2024-10-10T14:57:49 | null | You often end up with a lot of extraneous variables with no useful names if you do that. A lot of the time the intermediate results in a pipeline are almost meaningless. | null | null | 41,799,176 | 41,769,275 | null | [
41799723
] | null | null |
41,799,518 | story | pauloxnet | 2024-10-10T14:57:50 | Ubuntu – Oracular Oriole Release Notes | null | https://discourse.ubuntu.com/t/oracular-oriole-release-notes/44878 | 2 | null | 41,799,518 | 1 | [
41799925,
41799727
] | null | null |
41,799,519 | comment | tgv | 2024-10-10T14:57:54 | null | Excel, but linear, without the reference mess. It looks cool for mocking up dashboards. Some form of grid with nested documents could make it more useful. | null | null | 41,798,477 | 41,798,477 | null | [
41799538
] | null | null |
41,799,520 | comment | mthoms | 2024-10-10T14:57:56 | null | Thanks Neil. I disagree strongly about dot org being non-commercial. Jetpack and Akismet (Automattic commercial products) have been "featured" plugins since time immemorial. That means they show up ahead of 60,000 other plugins, every time. There is <i>massive</i> commercial benefit to that.<p>Just one more question if you don't mind -<p>Where does this distinction between commercial and non-commercial use come from? The trademark assignment does not appear to make any such distinction: "..an exclusive, fully-paid, royalty-free, perpetual, irrevocable, worldwide, sublicensable right and license to use and otherwise exploit the trademarks...". | null | null | 41,796,276 | 41,781,008 | null | [
41800351
] | null | null |
41,799,521 | comment | dotnet00 | 2024-10-10T14:58:06 | null | While it's good to have an understanding of which things the date does and does not matter for, when it comes to judging these things, I prefer to lean towards caution. It isn't worth getting sick over a little food. | null | null | 41,766,817 | 41,765,006 | null | null | null | null |
41,799,522 | comment | eschulz | 2024-10-10T14:58:10 | null | I feel this has also been a challenge for Greece among other places. Can they adapt within the economic zone, say to become tourist havens while the bigger states provide industry and services? Should they leave the Euro? | null | null | 41,799,451 | 41,799,016 | null | [
41801994
] | null | null |
41,799,523 | comment | soheil | 2024-10-10T14:58:22 | null | Are you surprised every year that he's not included? | null | null | 41,777,101 | 41,775,463 | null | null | null | null |
41,799,524 | comment | hello_computer | 2024-10-10T14:58:26 | null | It would be helpful to have a built-in bignum type. Excel’s usage of float is performant, but it is also a mistake. A complex number type would also be nice to have. | null | null | 41,798,477 | 41,798,477 | null | null | null | null |
41,799,525 | comment | youngtaff | 2024-10-10T14:58:32 | null | Depends… if you run an ad server then you can get some information on who sees the ads | null | null | 41,795,773 | 41,784,287 | null | null | null | null |
41,799,526 | comment | ctxcode | 2024-10-10T14:58:33 | null | Sounds like this is going to cost alot of money. (more than it should) | null | null | 41,797,041 | 41,797,041 | null | null | null | null |
41,799,527 | comment | teddyh | 2024-10-10T14:58:35 | null | Many people <i>believe</i> that the loss is great, especially web site owners, which would certainly explain such messages. But lived experience shows at least me that most people don’t even know what an ad blocker <i>is</i>. | null | null | 41,799,420 | 41,797,719 | null | null | null | null |
41,799,528 | comment | vel0city | 2024-10-10T14:58:36 | null | > Most of the food that sits on the shelf for weeks shouldn't be consumed.<p>Salt? Flour? Oil? Oats? Rice? Garlic? Black pepper? Most ground spices? Nuts? Beans? Honey? Vinegar? Quinoa? All of these can reasonably sit on a shelf for weeks. I guess none of these are safe to be consumed, all just "toxins". | null | null | 41,799,367 | 41,765,006 | null | [
41802024,
41801349,
41799774,
41799860
] | null | null |
41,799,529 | comment | mindaslab | 2024-10-10T14:58:40 | null | Scrum is the problem. | null | null | 41,797,009 | 41,797,009 | null | null | null | null |
41,799,530 | comment | FirmwareBurner | 2024-10-10T14:58:42 | null | Firstly, this isn't google maps, HN is a private platform, and they don't have to do jack shit just because some random person said something bad about them. Responding would only give oxigen to the fire the claimant started.<p>Secondly, in my country due to the law, if you make unproven claims in your reviews on Google Maps or other public spaces, Google has to take the review down at your request and you can also get sued for defamation, so unless you have receipts you gotta be careful what claims you make in public about someone, especially when you call people alt-right.<p>Like I said, innocent until proven guilty, especially if you're gonna make wild accusations like that.<p>The boy who cried wolf comes to mind. If you go around calling everyone who disagrees with you "alt-right", that term looses it's meaning and everyone becomes desensitized and won't care anymore even when actual right wing behavior shows up. | null | null | 41,799,447 | 41,799,011 | null | [
41800059
] | null | null |
41,799,531 | comment | zero_k | 2024-10-10T14:58:45 | null | Other than cryptography? Like, you see a use-case for it there? Please do educate me! IMO there's nothing there. It's a barren landscape. The desert is more alive. | null | null | 41,798,646 | 41,753,626 | null | [
41800867
] | null | null |
41,799,532 | comment | rideontime | 2024-10-10T14:59:05 | null | I think the point is that if we want this to stop happening, we have to address the cause of the problem, not just complain about its effects. | null | null | 41,799,502 | 41,797,719 | null | [
41799900,
41799757
] | null | null |
41,799,533 | comment | epiccoleman | 2024-10-10T14:59:05 | null | Every time I wind up on some garbage Fandom page I reminisce about the good old days of Wikia. I remember many a fun night trawling through pages while playing Fallout or Skyrim or whatever - all the information you could ever need, right there at your fingertips. It's an ethos you don't see so much on the modern net. | null | null | 41,799,319 | 41,797,719 | null | [
41802560
] | null | null |
41,799,534 | comment | sandworm101 | 2024-10-10T14:59:11 | null | I'm with Bell for my home internet. I had no choice. It was either them or a cellular connection. Install went ok, but the kid got a panicked look in his eyes when he realized I knew what "1.5gb" actually meant. He had me plugged in using some shoddy cables that couldn't handler more than 100mbps. I fixed it once he left. | null | null | 41,798,707 | 41,793,658 | null | null | null | null |
41,799,535 | comment | allknowingfrog | 2024-10-10T14:59:14 | null | Does anyone know of a good tutorial for getting starting with Tcl/Tk that still makes sense in 2024? I'm really intrigued by the idea of building and shipping simple, cross-platform GUIs, but I'm completely overwhelmed by all of the installation and configuration options. It seems like tclkit is supposed to be the go-tool tool for self-contained executables, but I honestly can't even figure out which site is the source-of-truth for downloading it, let alone installing it. | null | null | 41,791,875 | 41,791,875 | null | [
41800386
] | null | null |
41,799,536 | comment | pdyc | 2024-10-10T14:59:35 | null | i do my taxes with org spreadsheet i doubt it lacks and you also have the option to get output in html/pdf etc. with babel. | null | null | 41,799,483 | 41,798,477 | null | null | null | null |
41,799,537 | comment | slightwinder | 2024-10-10T14:59:39 | null | Seems they initial had telemetry activated by default, but deactivated it for the moment.<p>[..]Temporarily removed telemetry while we improve user choice[..]
from <a href="https://github.com/thunderbird/thunderbird-android/releases/tag/THUNDERBIRD_8_0b2">https://github.com/thunderbird/thunderbird-android/releases/...</a><p>Seems this is the issue where it's debated: <a href="https://github.com/thunderbird/thunderbird-android/issues/8199">https://github.com/thunderbird/thunderbird-android/issues/81...</a> | null | null | 41,799,206 | 41,798,615 | null | [
41801842
] | null | null |
41,799,538 | comment | deepmacro | 2024-10-10T14:59:52 | null | +1 this! I think writing helps you create a narrative that disambiguates the mess you can create in Excel. It also forces you to think more about what you do.
Good suggestions! Thanks | null | null | 41,799,519 | 41,798,477 | null | [
41800908
] | null | null |
41,799,539 | comment | AsianOtter | 2024-10-10T14:59:54 | null | But the demo does not work.<p>I tried "England is" and a few similar queries. It spends three seconds then shows that nothing is found. | null | null | 41,798,470 | 41,797,041 | null | [
41799890
] | null | null |
41,799,540 | comment | bityard | 2024-10-10T14:59:57 | null | I guess it still needs some work according to the reviews... <a href="https://play.google.com/store/apps/details?id=net.thunderbird.android.beta">https://play.google.com/store/apps/details?id=net.thunderbir...</a> | null | null | 41,798,615 | 41,798,615 | null | [
41799651
] | null | null |
41,799,541 | comment | rideontime | 2024-10-10T15:00:14 | null | I didn't think I could Fandom being worse than it already is, but imagining it stuffed with AI-generated slop... | null | null | 41,799,220 | 41,797,719 | null | [
41799657,
41800084,
41800924,
41802718
] | null | null |
41,799,542 | comment | Saline9515 | 2024-10-10T15:00:19 | null | Why are skin lightening products sales increasing every year? It's expected to double in the next 10 years.
<a href="https://edition.cnn.com/interactive/2021/11/health/skin-lightening-india-health-risks-intl-cmd/" rel="nofollow">https://edition.cnn.com/interactive/2021/11/health/skin-ligh...</a> | null | null | 41,792,887 | 41,785,265 | null | null | null | null |
41,799,543 | comment | darkwizard42 | 2024-10-10T15:00:21 | null | No shame intended! Just helping in case you didn't know! | null | null | 41,794,125 | 41,792,055 | null | null | null | null |
41,799,544 | comment | taylodl | 2024-10-10T15:00:22 | null | Or handle blowing snow and extreme wind buffeting. I'd be okay too if the vehicle was just honest and said it's not safe for it to drive - which would indicate it's not safe for me to drive either since it should be more capable than I am. | null | null | 41,799,385 | 41,798,862 | null | null | null | null |
41,799,545 | comment | Maximus9000 | 2024-10-10T15:00:29 | null | I've seen it on vinegar too. | null | null | 41,798,983 | 41,765,006 | null | null | null | null |
41,799,546 | comment | rightbyte | 2024-10-10T15:00:40 | null | There is something fundamental here. It used to be the case that you could form communities around commercial entities. But nowadays it seems to be too many short term profit vultures roaming around looking for targets, to not end up selling out the community. Efficient market I guess. | null | null | 41,797,719 | 41,797,719 | null | null | null | null |
41,799,547 | comment | Me000 | 2024-10-10T15:00:42 | null | In America the tax rate is higher? People are reacting like this is a lot haven’t seen a paycheck in the US in there lifetime. US is maybe 5% lower under some circumstances. I thought fake outrage was banned here? | null | null | 41,799,398 | 41,799,016 | null | [
41799618,
41799637,
41799669,
41799605
] | null | null |
41,799,548 | comment | ghaff | 2024-10-10T15:00:44 | null | There’s frankly a huge variation between the OMG it was roasted two weeks ago and the OK it’s only been a few months crowd. | null | null | 41,766,271 | 41,765,006 | null | null | null | null |
41,799,549 | comment | helpfulContrib | 2024-10-10T15:00:45 | null | Misnomer? I don't agree.<p>Its definitely "a big pointy tooth dominating the mouth" kind of feature.<p>Could also have been called a snaggle-tooth salmon, I guess ..<p>In any case, definitely an interesting fish. | null | null | 41,799,105 | 41,798,259 | null | null | null | null |
41,799,550 | comment | NeoTar | 2024-10-10T15:00:45 | null | Apparently in the UK, the largest four banks control 75% of all current accounts (en-us: checking account ). Admittedly a smaller market, but even more centralised. | null | null | 41,799,107 | 41,798,027 | null | null | null | null |
41,799,551 | comment | nickpsecurity | 2024-10-10T15:00:46 | null | One of the biggest struggles with neural networks is that backpropagation takes a lot of computation time. Real neurons are also more flexible, adaptive, energy-efficient, and learn continuously. Brain-inspired networks behave more like real neurons. Local, learning rules may let us avoid the computational cost of global backpropagation.<p>I thought Hacker News would be interested in this paper because it explains many of these things with some work examples. I’d like to see more research and applying local, learning rules to LLMs. Also, more hybrids that mostly use local rules with some backpropagation or other global optimization. | null | null | 41,799,491 | 41,799,491 | null | null | null | null |
41,799,552 | comment | bluefirebrand | 2024-10-10T15:00:50 | null | It's pretty dismissive to suggest that any form of software development is anywhere near as mindless as painting walls white endlessly<p>Software has decision making constantly, even at junior levels<p>Whitewashing walls has more or less no decisions other than what room to start in | null | null | 41,799,472 | 41,797,009 | null | [
41800101,
41800373
] | null | null |
41,799,553 | comment | benopal64 | 2024-10-10T15:00:52 | null | What happens to the unhealthy Americans? What happens to the Americans who are too poor they cannot pay health insurance and the cost of medicine/surgery.
I think only the wealthiest Americans have much more money in their bank accounts than they would in Europe. | null | null | 41,799,449 | 41,799,016 | null | [
41801746,
41802074,
41800046,
41801780,
41799728,
41799640,
41799609
] | null | null |
41,799,554 | comment | thinkmassive | 2024-10-10T15:00:54 | null | <p><pre><code> s/cloudflare/a CDN/</code></pre> | null | null | 41,799,256 | 41,797,719 | null | null | null | null |
41,799,555 | comment | dtaht | 2024-10-10T15:01:02 | null | I agree that the phrasing in the article is a bit confusing there!<p>Pie had a severe problem in the rate estimator which was fixed in 2018, in Linux, at least:<p><a href="https://www.sciencedirect.com/science/article/abs/pii/S1389128619313775" rel="nofollow">https://www.sciencedirect.com/science/article/abs/pii/S13891...</a><p>Pie's principal advantage is that it is slightly easier to implement in hardware, it's disadvantages are that it does tail drop, rather than head drop, and struggles to be stable at a target of 16ms, where codel can go down to us and targets 5ms by default. I haven't really revisited pie since the above paper was published.<p>COBALT in cake is a codel derivative. It is slightly tighter in some respects (hitting slow start sooner), and looser in others (it never drops the last packet in a queue, which fq_codel does.fq_codel scales to hundreds of instances and 10s of thousands of queues, still aiming for 5ms across that target, where it would be easier to essentially DOS that many instances of cake with tons of flows. | null | null | 41,795,399 | 41,793,658 | null | null | null | null |
41,799,556 | comment | BiteCode_dev | 2024-10-10T15:01:03 | null | WASM is a child of the browser community and built on top of existing infra.<p>Java was an outsider trying to get in.<p>The difference is not in the nature of things, but rather who championed it. | null | null | 41,795,946 | 41,795,561 | null | null | null | null |
41,799,557 | comment | zero_k | 2024-10-10T15:01:13 | null | Wow, nice work [1] ! I used to work on CryptoMiniSat a lot. Nowadays I'm doing model counting and maybe synthesis, if all goes well [2]<p>[1] <a href="https://github.com/leanprover/lean4/pulls/bollu">https://github.com/leanprover/lean4/pulls/bollu</a>
[2] <a href="https://x.com/SoosMate/status/1827308967208317241" rel="nofollow">https://x.com/SoosMate/status/1827308967208317241</a> | null | null | 41,799,286 | 41,753,626 | null | null | null | null |
41,799,558 | story | sylviangth | 2024-10-10T15:01:19 | null | null | null | 1 | null | 41,799,558 | null | null | null | true |
41,799,559 | comment | MichaelArnaldi | 2024-10-10T15:01:31 | null | <a href="https://effect.website/docs/other/myths#effect-should-be-a-language-or-use-a-different-language" rel="nofollow">https://effect.website/docs/other/myths#effect-should-be-a-l...</a> | null | null | 41,798,387 | 41,764,163 | null | null | null | null |
41,799,560 | comment | null | 2024-10-10T15:01:32 | null | null | null | null | 41,798,977 | 41,784,287 | null | null | true | null |
41,799,561 | comment | erremerre | 2024-10-10T15:01:32 | null | Yes, but they don't want unipersonal companies either. They want companies with certain size, and legal department, so if any issue arises, it will be between the legal teams to resolves, rather than support. | null | null | 41,729,402 | 41,727,933 | null | null | null | null |
41,799,562 | comment | BurningFrog | 2024-10-10T15:01:33 | null | You're making a theoretical argument about how things could work.<p>I'm telling you what actually happened in the real world. | null | null | 41,795,367 | 41,784,287 | null | null | null | null |
41,799,563 | comment | NiagaraThistle | 2024-10-10T15:01:36 | null | I love this!<p>I've been building something similar for far too long - and it is far too buggy still - for Europe-only travel.<p>Good luck with this. I know how hard it can be doing this sort of thing between job, life, family, and dreaming of your next trip :) | null | null | 41,788,246 | 41,788,246 | null | null | null | null |
41,799,564 | story | jeremiahlee | 2024-10-10T15:01:44 | RFC 9635 Grant Negotiation and Authorization Protocol (GNAP) | null | https://www.rfc-editor.org/rfc/rfc9635 | 1 | null | 41,799,564 | 1 | [
41799647,
41799648
] | null | null |
41,799,565 | comment | randomdata | 2024-10-10T15:01:47 | null | <i>> You say “retain managers” — plural. You’re putting words in their mouth.</i><p>The only use of "managers" was with respect to the use of Scrum itself, which is only tangentially related to what came before it. It logically cannot put words into anyone's mouth as it is not directly related to any mouths that may be near. It is only directly related to the comment that it is contained within by the additional context it setup.<p><i>> The article is basically suggesting POs shouldn’t control the backlog because engineers know better (essentially).</i><p>Yes, that is what Agile also says. Of course, it also says that you need the right people. We need to know more about the specific engineers to know if it is a valid take. Statistically it won't be, but perhaps it is under his unique circumstances? It is invalid to conflate his situation with someone else's.<p><i>> Sounds like they’ve had a bad experience and want to vent about it. Fine, but it’s an immature take imho.</i><p>I know Agile isn't cool anymore, but there was a time where the industry as a whole actually tried to embrace it. It wasn't considered immature then. Perhaps it is immature now only because it is no longer in fashion?<p><i>> I am an engineer myself and I think it’s insulting</i><p>If you are insulted by words on a screen, you might need to think about it harder. That is not logically sound. | null | null | 41,799,388 | 41,797,009 | null | [
41801370,
41799623
] | null | null |
41,799,566 | comment | dv35z | 2024-10-10T15:01:49 | null | For those curious about the Pivotal Labs product innovation process, check out this guide. In my opinion, it's the best end-to-end guide on how it all works together.<p>It's a product of 20+ years of iteration & weekly retrospectives - and was used to coach clients on how to collaborate as a team and build high quality products. Definitely download it, and review from time to time - many gold nuggets.<p><a href="https://tanzu.vmware.com/content/white-papers/vmware-tanzu-labs-product-manager-playbook" rel="nofollow">https://tanzu.vmware.com/content/white-papers/vmware-tanzu-l...</a><p>(Used to work at Pivotal) | null | null | 41,797,586 | 41,797,009 | null | null | null | null |
41,799,567 | comment | Qem | 2024-10-10T15:01:50 | null | > what I assume was a misfire.<p>Given the dispatching of drones and the effort to destroy UN monitoring cameras before the attack, I doubt it was a "misfire". See <a href="https://www.aljazeera.com/news/2024/10/10/israeli-forces-fire-on-un-peacekeepers-in-lebanon-wounding-two" rel="nofollow">https://www.aljazeera.com/news/2024/10/10/israeli-forces-fir...</a> | null | null | 41,799,457 | 41,798,445 | null | null | null | null |
41,799,568 | comment | ibash | 2024-10-10T15:01:52 | null | In addition to restic: rustic<p><a href="https://github.com/rustic-rs/rustic">https://github.com/rustic-rs/rustic</a><p>It’s a rewrite of restic in rust, but has a few more quality of life features and a config file for setting params (instead of restic only having cli flags).<p>It’s what changed my backups from something I’d poke at every few days to completely on autopilot. | null | null | 41,799,298 | 41,791,708 | null | [
41800921,
41799659
] | null | null |
41,799,569 | comment | Brajeshwar | 2024-10-10T15:02:00 | null | I don’t think Evernote will ever return, at least in its former avatar. It might live on among a niche set of users, though. | null | null | 41,799,486 | 41,799,486 | null | null | null | null |
41,799,570 | comment | ARandumGuy | 2024-10-10T15:02:01 | null | It's clearly enough of an impact for Google to spend effort killing uBlock on Chrome, and (attempting) to block it on Youtube. Obviously Google is huge, and even a small percentage of users is still a lot of money on the table. | null | null | 41,799,223 | 41,797,719 | null | [
41800080
] | null | null |
41,799,571 | comment | vel0city | 2024-10-10T15:02:08 | null | > pathogens cant live in beer<p>Depending on the beer there might be live yeasts in it.<p>Beers can still go bad. Not always from a "not safe to consume" but often at least a "not going to taste very good anymore" kind of thing. Beers will end up oxidizing, the stuff in the beer will degrade over time, etc. Not all beers age well, some need to be had within a certain period of freshness.<p>Generally I prefer a "born-on" date for beer. | null | null | 41,799,515 | 41,765,006 | null | [
41799607
] | null | null |
41,799,572 | comment | willcipriano | 2024-10-10T15:02:13 | null | The political will only exists to do money printing part in practice. The rest is a pipe dream. | null | null | 41,792,406 | 41,780,569 | null | [
41801545
] | null | null |
41,799,573 | comment | H1Supreme | 2024-10-10T15:02:21 | null | Since there seems to be a few others who use one hand or the other depending on the task at hand, here's my seemingly random list:<p>- writing, eating, soldering iron, painting: left hand<p>- throwing, kicking, anything that requires more strength: right hand<p>- guitar: right<p>- hand that holds a drink: left<p>Here's some weird ones:<p>- Chop an onion: right hand<p>- Butter a piece of bread: left hand<p>- Use a mouse: right hand. This one makes no sense. My left hand is my precision hand. I assume this was learned.<p>- Use a box cutter or exacto knife: left hand<p>- Scissors: right hand (Again, this must have been learned)<p>Here's a funny story from my youth: I worked part time at Wendy's in high school. Once when I was making sandwiches, a co-worker remarked "Why do you do that?". "Do what?" I said. "Why do you keep switching hands depending on what topping/condiment you're putting on the sandwich?". "Idk, I didn't even notice". | null | null | 41,758,870 | 41,758,870 | null | [
41799752,
41802368
] | null | null |
41,799,574 | comment | philwelch | 2024-10-10T15:02:30 | null | The only unserious argument here is your absurd analogy to banks. A homonym is when two words have totally unrelated meanings. Cocaine is the psychoactive drug found in coca leaves; we refer to cocaine hydrochloride (i.e. powder cocaine) as “cocaine” for the same reason we refer to Everclear as “grain alcohol”. | null | null | 41,795,808 | 41,787,798 | null | null | null | null |
41,799,575 | comment | AnimalMuppet | 2024-10-10T15:02:35 | null | If the US is trading with the EU, say, and the US is importing too much and exporting too little, eventually that affects the exchange rate between the dollar and the euro. That adjusts in a way that somewhat counteracts the trade imbalance.<p>But if Portugal imports too much from France and exports too little, and they're both using the euro, then there is no exchange rate to adjust, and so you're just left with the trade imbalance and no adjustment. | null | null | 41,799,477 | 41,799,016 | null | [
41799827,
41799718,
41799712
] | null | null |
41,799,576 | comment | TomNomNom | 2024-10-10T15:02:37 | null | Not directly relevant to the post, but seems like a good place to share.<p>My team and I once took on a very tricky automation project. At the time we had a complex software deployment done about once per month that involved a team of about a dozen people showing up at 4am to do it while traffic was low.<p>The deployment involved many manual steps and coordination of everybody involved. The person leading each deployment followed the documented list of steps and got each person to do their bit at the right time; people to run database migrations, people to install RPMs on particular servers, people to test and verify functionality. Mistakes and missed steps were not uncommon.<p>The very first thing we did was take the documentation and write a Jenkins job to post each step into a Slack channel specifically for coordinating the deployments. Someone clicked "go" and each step was posted as a message in that channel with a 'done' button to be clicked when that step was done. Clicking the button caused the next step to be posted.<p>The next release we did used that instead of one person reading the steps out of confluence. Everyone involved in the release could always see what step we were at, and when it was their turn to do their bit. This helped ensure no steps were ever missed too.<p>Over the following months we chipped away at that job a bit at a time. We'd pick a step in the process and automate just that step, starting with the low-hanging fruit first. The Slack message for that step went from "click to confirm you've done it" to "click to do it", with the result posted once it was done; followed by the next step to perform.<p>It was a long process, but it allowed the rest of the business (and us!) to gradually gain confidence in the automation, and lowered the risk of the project dramatically. Once several steps had been automated and battle-tested we removed the 'click to do' bits in between and the whole release became a couple of clicks followed by the odd bit of manual QA. | null | null | 41,765,594 | 41,765,594 | null | [
41800048,
41802822,
41800028,
41800502
] | null | null |
41,799,577 | comment | MichaelArnaldi | 2024-10-10T15:02:47 | null | Don't judge Effect based on Rambda they have completely different objectives, Rambda focused a lot on abstractions similar to fp-ts, Effect focuses almost exclusively on concrete implementations | null | null | 41,791,545 | 41,764,163 | null | [
41800014
] | null | null |
41,799,578 | comment | bobthepanda | 2024-10-10T15:02:49 | null | This is broadly true for any division of land with a single currency but it’s not as if going to tiny city states with unique currencies is also a good idea. | null | null | 41,799,451 | 41,799,016 | null | [
41799933
] | null | null |
41,799,579 | comment | evanfarrar | 2024-10-10T15:02:52 | null | They should promise not to become wikimedia board members. That is the main thing that allows fandom to be so bad. | null | null | 41,797,719 | 41,797,719 | null | null | null | null |
41,799,580 | comment | VyseofArcadia | 2024-10-10T15:02:56 | null | QT has been around for decades. So has GTK. Bindings for whatever language you could possibly want. Runs on whatever OS you want. We've had "truly portable" UI frameworks since the late 90s. This has not been an issue for my entire adult life. 20 years ago, I was using desktop applications that ran on Mac OS X, Windows, and *nix with no modifications. They were written in Python, used GTK, and just worked.<p>Web apps are popular because 1) people don't like installing things anymore for some reason and 2) it's easier to justify a subscription pricing model. | null | null | 41,799,125 | 41,795,561 | null | [
41801055
] | null | null |
41,799,581 | comment | gregwebs | 2024-10-10T15:03:00 | null | Neat little tool. I was looking for Excel in the examples but only saw charts.<p>For Excel + Word I use coda.io. You can also quickly create equations with sliders for variables to satisfy similar needs as Tenno but I haven't tried charting with it yet. | null | null | 41,798,477 | 41,798,477 | null | null | null | null |
41,799,582 | comment | tjbiddle | 2024-10-10T15:03:07 | null | Decided to give OSRS (Old School RuneScape) another try after more than a decade break from the game. Without their wiki, I don't think I would've continued to play; it's open constantly - incredibly easy to use, very well up to date, and just an all around wonderful resource. Above and beyond what used to exist. | null | null | 41,797,719 | 41,797,719 | null | null | null | null |
41,799,583 | comment | manwe150 | 2024-10-10T15:03:18 | null | The text of the law seems to be specific that the beer exemption (and other alcohol) is about a permission to put the vintage (year month, etc), since alcohol are expected to change over time even after bottling (some better some worse) so consumers would desire that information even though it does not conform to the normal "use by" or "best by" relevant to other products (any other placement or use of a date on a label being what is made illegal by the law) | null | null | 41,799,438 | 41,765,006 | null | null | null | null |
41,799,584 | comment | bloopernova | 2024-10-10T15:03:19 | null | So far they are the only one.<p>They're definitely "leadership material"! | null | null | 41,799,208 | 41,765,594 | null | [
41800156
] | null | null |
41,799,585 | comment | null | 2024-10-10T15:03:21 | null | null | null | null | 41,793,399 | 41,792,055 | null | null | true | null |
41,799,586 | comment | InDubioProRubio | 2024-10-10T15:03:26 | null | A expected step. Nobody has a intention, to build a anti-(age)-statistic protection wall.<p>Young, educated people are the gold of the western world- and the gold must not always flow towards rome as tax. | null | null | 41,799,016 | 41,799,016 | null | [
41799612
] | null | null |
41,799,587 | comment | eigenvalue | 2024-10-10T15:03:27 | null | Thanks! Glad you found it useful. SQLite actually works really well for tons of applications where people often assume you need Postgres, and the simplicity of setting it up and backing it up is extremely compelling.<p>You can really help things a lot with the PRAGMAs, and if that doesn't work, you can use something like an async DB write queue pattern to deal with the simultaneous write limitations (and also by doing more stuff with transactions and bulk insertions). | null | null | 41,799,505 | 41,799,082 | null | null | null | null |
41,799,588 | comment | yawnxyz | 2024-10-10T15:03:27 | null | Reminds me of Ink and Switch's Potluck: <a href="https://github.com/inkandswitch/potluck">https://github.com/inkandswitch/potluck</a>
but this has way better DX / is way easier to use | null | null | 41,798,477 | 41,798,477 | null | null | null | null |
41,799,589 | comment | rjprins | 2024-10-10T15:03:37 | null | Generated podcast on this.
<a href="https://notebooklm.google.com/notebook/c612a580-2990-44d7-9513-b76878c2614d/audio" rel="nofollow">https://notebooklm.google.com/notebook/c612a580-2990-44d7-95...</a> | null | null | 41,795,133 | 41,795,133 | null | null | null | null |
41,799,590 | comment | skybrian | 2024-10-10T15:03:51 | null | Yes it’s true that there’s more to the story, but also, Java really is more complicated and harder to secure than WASM. You need to look at the entire attack surface and not just the bytecode.<p>For example, Java was the first mainstream language with built-in threading and that resulted in a pile of concurrency bugs. Porting Java to a new platform was not easy because it often required fixing threading bugs in the OS. By contrast, JavaScript and WASM (in the first version) are single-threaded. For JavaScript it was because it was written in a week, but for WASM, they knew from experience to put off threading to keep things simple.<p>Java also has a class loader, a security manager that few people understand and sensitive native methods that relied on stack-walking to make sure they weren’t called in the wrong place. The API at the security boundary was not well-designed.<p>A lot of this is from being first at a lot of things and being wildly ambitious without sufficent review, and then having questionable decisions locked in by backward compatibility concerns. | null | null | 41,799,167 | 41,795,561 | null | null | null | null |
41,799,591 | comment | spookie | 2024-10-10T15:03:58 | null | Portugal is in a weird situation where it has high taxes and at the same time the median salary is too close to the minimum wage. This is difficult to overcome, and thus salaries are stagnated.<p>The government has no reason, in the medium to long term, to have such high taxes. Since, by keeping high taxation the state retrieves less money in absolute terms than they would if they let wages increase and steer away from the minimum wage.<p>I don't think you could say that about most EU countries. Portugal really is in a bad place.<p>(Edit: just clarifying that the situation is different, yes taxation is high as most others but in the case of Portugal its much worse) | null | null | 41,799,449 | 41,799,016 | null | [
41802044,
41799691
] | null | null |
41,799,592 | comment | Dwedit | 2024-10-10T15:03:59 | null | Ah Cloudflare, where you constantly get captchas for <i>attempting to read a web page</i>. | null | null | 41,798,956 | 41,797,719 | null | [
41800034,
41799760,
41799741,
41802984,
41799688
] | null | null |
41,799,593 | comment | crowcroft | 2024-10-10T15:04:07 | null | This is a tricky one, because at some point you need to think about the integrity of the product's packaging, and how well it's been stored.<p>Craft beer *in a can* will not age gracefully. Even in a bottle, while it will probably be fine, how much light exposure are the bottle getting, have they been left out in the sun at any point etc.<p>Best before dates, hard expiry dates (if required), and ideally including a packaged on date would be a pretty ideal amount of information. | null | null | 41,799,506 | 41,765,006 | null | [
41799619,
41801757
] | null | null |
41,799,594 | comment | newfocogi | 2024-10-10T15:04:10 | null | Could you share some links? I’m not familiar with this. | null | null | 41,799,342 | 41,798,027 | null | null | null | null |
41,799,595 | comment | idunnoman1222 | 2024-10-10T15:04:15 | null | Come on it has nothing to do with the industrial scale at which the beer is created it has to do with which ingredients malt, hops, etc. | null | null | 41,799,506 | 41,765,006 | null | null | null | null |
41,799,596 | comment | fenomas | 2024-10-10T15:04:27 | null | Very cool! A couple first-blush bits of feedback:<p>- The editable text fields currently lose focus after each keypress<p>- Error handling will be a hard nut to crack, but currently if you, say, add "a" to an editable textbox that expects a number, the live component reverts to text<p>- Minimal support for buttons would add a lot for simple interactive charts - something like:<p><pre><code> ::button
label="Set x to 5"
x = 5
::</code></pre> | null | null | 41,798,477 | 41,798,477 | null | null | null | null |
41,799,597 | comment | baruchthescribe | 2024-10-10T15:04:29 | null | The author did some very cool work with Raylib interpolating between animations to make transitions more natural. I remember being blown away at how realistic it looked from the videos he posted in the Discord. Glad to see he's still pushing the boundaries on what's possible with quality animation. And of course Cello rocks! | null | null | 41,797,462 | 41,797,462 | null | null | null | null |
41,799,598 | comment | PetrBrzyBrzek | 2024-10-10T15:04:37 | null | Thanks, I understand. This is a free tool and doesn’t have much to do with the main platform at the moment. Langtail is primarily for testing LLM apps. | null | null | 41,798,970 | 41,798,591 | null | null | null | null |
41,799,599 | comment | MichaelArnaldi | 2024-10-10T15:04:37 | null | Which is why our principle with Effect is NOT to port Haskell. For example we don't use Typeclasses which are big in haskell, we lean heavily on variance which is not in Haskell. It's an ecosystem though to write production-grade TypeScript, not Haskell in TypeScript | null | null | 41,797,391 | 41,764,163 | null | null | null | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.