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,792,800 | comment | ghaff | 2024-10-09T21:22:44 | null | Yes. If someone said they had been to <i>all</i> the states I’d expect they had been to Alaska and Hawaii. On the other hand McDs all across the country I’d interpret as having been to a lot of McDs in different states with a wide geographical distribution. | null | null | 41,792,702 | 41,792,055 | null | null | null | null |
41,792,801 | comment | TZubiri | 2024-10-09T21:22:46 | null | It's not that hard we just have the original not-for profit and then a non-profit llc, and then 503c, all of that gets grouped under a Hybrid profit holding, which funds the PBS but has no ownership relationship. Meanwhile a sister L3C invests in the original NFP without profit motives, but retains call stock options WITH voting rights (only if the option is NOT executed). The for profit LLC is just a holder of the stock and IP in Ireland, nothing suspicious about it, do not concern yourself with this entity.<p>Source: I made it up | null | null | 41,791,583 | 41,790,026 | null | null | null | null |
41,792,802 | comment | nchmy | 2024-10-09T21:22:50 | null | That's obviously a lie. And one of his lawyers - the fool that he is - literally confirmed it earlier today in another thread<p><a href="https://news.ycombinator.com/item?id=41784343">https://news.ycombinator.com/item?id=41784343</a><p>"Despite our sometimes fervent wishes, lawyers don't control clients. We are not puppeteers" | null | null | 41,790,240 | 41,791,369 | null | [
41796144
] | null | null |
41,792,803 | story | chmaynard | 2024-10-09T21:22:51 | Upgrading Homebrew and avoiding the "failed to verify attestation" error | null | https://til.simonwillison.net/homebrew/no-verify-attestations | 47 | null | 41,792,803 | 40 | [
41793415,
41794464,
41794055,
41796781,
41794919,
41797630,
41797708,
41795693
] | null | null |
41,792,804 | comment | fluoridation | 2024-10-09T21:22:52 | null | You can if you can convince others to protect it for you. | null | null | 41,790,800 | 41,780,569 | null | null | null | null |
41,792,805 | comment | daenney | 2024-10-09T21:22:53 | null | I’ve been very happy and impressed with the Framework AMD edition. I’d steer clear of their Core Ultra Intel edition since that’s Meteor Lake. I use mine for open source development things I do on my own time.<p>If work supplied me with one of them I’d happily use it. Support has been great and they live up to their upgradable promise. | null | null | 41,792,570 | 41,792,570 | null | [
41793805
] | null | null |
41,792,806 | comment | TheCoelacanth | 2024-10-09T21:22:56 | null | And even much later under feudalism, property as we know it didn't really exist. Land (essentially the only productive asset that existed) was owned by the government, but the government was a loose network of aristocrats instead of a faceless state. | null | null | 41,790,800 | 41,780,569 | null | null | null | null |
41,792,807 | comment | skybrian | 2024-10-09T21:23:21 | null | Yes, it's annoying. I share your optimism. This is how the JavaScript (and now TypeScript) community figures things out.<p>Note that TypeScript had competitors, too. It got better. Zod has an early lead and is good enough in a lot of ways, but I'm not sure it will be the one.<p>Perhaps someday there will be a bun/deno-like platform with TypeScript++ that has validation merged in, but it's probably good that it's not standardized yet. | null | null | 41,791,038 | 41,764,163 | null | null | null | null |
41,792,808 | comment | akira2501 | 2024-10-09T21:23:23 | null | Yep. And the value they have is _your data_. It'd be a similar situation if Zuckerberg was playing "fealty games" with who could and couldn't get an API key. | null | null | 41,792,727 | 41,791,369 | null | null | null | null |
41,792,809 | story | andrelaszlo | 2024-10-09T21:23:24 | Months Before Ethiopian Crash, Boeing Turned Aside Carrier's Questions | null | https://www.nytimes.com/2024/10/09/us/politics/boeing-ethiopian-airlines-crash-questions.html | 3 | null | 41,792,809 | 0 | null | null | null |
41,792,810 | comment | yu3zhou4 | 2024-10-09T21:23:32 | null | brew deps eza --tree prints:<p>eza<p>└── libgit2<p><pre><code> ├── libssh2
│ └── openssl@3
│ └── ca-certificates
└── openssl@3
└── ca-certificates</code></pre> | null | null | 41,792,738 | 41,791,708 | null | null | null | null |
41,792,811 | comment | jerf | 2024-10-09T21:23:36 | null | "I'm often thwarted by the fact that for anything requiring remotely decent speeds, python most of the time already delegates to C extensions and so any rewrite is not as useful"<p>Be sure you verify this is the case for whatever you think it is, though. Pure Python is so much slower than compiled languages (not just Rust) that you don't have to do much percentage-wise in pure Python before you've badly fallen behind in performance versus the pure-compiled alternatives.<p>I think this is asserted a lot more often then it is benchmarked. I am reminded of the way people for a long time asserted that the performance of web languages doesn't matter because you spend all your time waiting for the database, so it never mattered. People would just whip this argument out reflexively. It turns out that if you take a non-trivial codebase written in such a language and actually benchmark it, it is often not true, because as applications grow they tend to rapidly outgrow "all my code is just running a SELECT and slamming the results with minimal processing out to the web stream". I hear this a lot less often than I used to, probably through the slow-but-effective process of a lot of individuals learning the hard way this isn't true.<p>I've seen a lot of Python code. Very little of it that was not "data science" was just a bit of scripting around lots of large C-based objects, such that Python wasn't doing much actual work. And even some of that "data science" was falling back to pure Python without realizing because NumPy actually makes that shockingly easy. | null | null | 41,792,418 | 41,791,773 | null | [
41798961
] | null | null |
41,792,812 | comment | hauntsaninja | 2024-10-09T21:23:36 | null | You don't need to use pytz, you can use the following on all Python 3:
tz_UTC = datetime.timezone.utc | null | null | 41,788,559 | 41,788,026 | null | null | null | null |
41,792,813 | comment | wewtyflakes | 2024-10-09T21:24:18 | null | We really did! :) Though, there were some unfun challenges around that, like getting distribution to work without having to get people to go through the pains of installing the JDK. Thankfully, since our UI is just a web browser, we did not have to go down the path of JavaFX or anything like that; our UI is just plain JS/HTML making API requests to a propped up server on localhost:31000 (for the curious). | null | null | 41,792,610 | 41,789,633 | null | null | null | null |
41,792,814 | comment | null | 2024-10-09T21:24:31 | null | null | null | null | 41,758,870 | 41,758,870 | null | null | true | null |
41,792,815 | comment | AdamJacobMuller | 2024-10-09T21:24:38 | null | “WP Engine is free to offer their hacked up, bastardized simulacra of WordPress’s GPL code to their customers, and they can experience WordPress as WP Engine envisions it"<p>Does anyone know what the context about this is? What did WP-Engine change which Matt disliked?<p>As I understand they were disabling page revision history (but would enable it if you asked) and only because they had some other proprietary to wp-engine method of versioning and rollbacks but this seems like a massive overreaction to that. | null | null | 41,791,369 | 41,791,369 | null | [
41793353,
41793143,
41793025,
41793014
] | null | null |
41,792,816 | story | gniting | 2024-10-09T21:24:54 | TypeScript 5.7 Beta | null | https://devblogs.microsoft.com/typescript/announcing-typescript-5-7-beta/ | 2 | null | 41,792,816 | 0 | null | null | null |
41,792,817 | comment | getcrunk | 2024-10-09T21:24:58 | null | fantastic! most of these come down to diet and exercise. fast, eat less, eat anti inflammatory, take some supplements/vitamins. exercise well, sleep well, get some sunlight and meditate. | null | null | 41,791,658 | 41,791,658 | null | null | null | null |
41,792,818 | comment | KneeAwn | 2024-10-09T21:25:00 | null | I love these tools. A few more I like are:
eget - good for getting these little tools (<a href="https://github.com/zyedidia/eget">https://github.com/zyedidia/eget</a>)
dust - fd is to find as dust is to du (<a href="https://github.com/bootandy/dust">https://github.com/bootandy/dust</a>)
yank - nice to quickly copy things from the command line (<a href="https://github.com/mptre/yank">https://github.com/mptre/yank</a>) | null | null | 41,791,708 | 41,791,708 | null | [
41793756,
41793679
] | null | null |
41,792,819 | story | luu | 2024-10-09T21:25:02 | A lesson from my days in the Mod Wars in one of Twitch's more busy channels | null | https://infosec.exchange/@0xabad1dea/113276428960491911 | 2 | null | 41,792,819 | 0 | null | null | null |
41,792,820 | comment | Narishma | 2024-10-09T21:25:06 | null | What makes you think they're a team? | null | null | 41,792,541 | 41,791,773 | null | [
41794418
] | null | null |
41,792,821 | comment | istultus | 2024-10-09T21:25:14 | null | This has to take the cake for "most spurious correlation."
The most coherent reading is "places which report more homocide data are correlated with reporting more left-handedness" | null | null | 41,787,560 | 41,758,870 | null | [
41796416
] | null | null |
41,792,822 | comment | mensetmanusman | 2024-10-09T21:25:29 | null | Governments can not compete on infra with trillion dollar computer companies. | null | null | 41,790,650 | 41,784,287 | null | null | null | null |
41,792,823 | comment | mabdullahkhalil | 2024-10-09T21:25:30 | null | Does these directories also cost extra to list you? | null | null | 41,765,102 | 41,763,213 | null | null | null | null |
41,792,824 | comment | al_borland | 2024-10-09T21:25:36 | null | Here is a quick 30 second trailer of what's on the site, from Green Day's YouTube.<p><a href="https://www.youtube.com/watch?v=ziZ8SLooNx8" rel="nofollow">https://www.youtube.com/watch?v=ziZ8SLooNx8</a> | null | null | 41,792,173 | 41,790,295 | null | null | null | null |
41,792,825 | comment | vrosas | 2024-10-09T21:25:39 | null | In my experience those specific sets of constraints come sooner or later. Someone is going to ask for some complex auth or routing rules and it’s easier to just write it in go than it is to learn a whole new DSL or lua to implement it. | null | null | 41,792,294 | 41,790,619 | null | [
41792993,
41793621
] | null | null |
41,792,826 | story | bobertlo | 2024-10-09T21:25:40 | Core War: Tournament Weekend 2024 (Celebrating 40 years) | null | https://corewar.co.uk/tournamentweekend2024.htm | 2 | null | 41,792,826 | 0 | null | null | null |
41,792,827 | comment | null | 2024-10-09T21:25:50 | null | null | null | null | 41,792,738 | 41,791,708 | null | null | true | null |
41,792,828 | comment | davidashe | 2024-10-09T21:25:58 | null | “There's nothing wrong with caring for your child. The cause of this situation is insufficient paternal leaves, not having and raising children.”<p>Tell me you’ve never been a working parent, without telling me… | null | null | 41,792,041 | 41,791,570 | null | [
41795020
] | null | null |
41,792,829 | comment | ponector | 2024-10-09T21:26:09 | null | Smaller companies are also soul-draining in many cases. Why to exclude only faangs? Let's exclude banks, insurance etc | null | null | 41,792,502 | 41,792,055 | null | [
41792985,
41794525
] | null | null |
41,792,830 | comment | aidenn0 | 2024-10-09T21:26:13 | null | > Golden hashbrowns, gravy-smothered biscuits and crispy waffles with a hearty helping of maple syrup are among the classic Southern comfort foods<p>There are a lot of foods I associate with the south, but <i>maple</i> syrup is definitely not one of them. | null | null | 41,791,693 | 41,791,693 | null | [
41793001,
41798999,
41793953,
41793183,
41793456
] | null | null |
41,792,831 | comment | roughly | 2024-10-09T21:26:17 | null | > ends up at the same point as a completed folding simulation.<p>Well, that's the hope, at least.<p>> Or more representative sequences and enough variants by additional metagenomic surveys, for example. Of course, this might not be easily achievable.<p>For sure, but for ostensibly profit-generating enterprises, it's pretty much out of the picture.<p>I think the reason an actual computational solution for folding is interesting is that the existing set of experimentally verified protein structures are for proteins we could isolate and crystalize (which is also the training set for AlphaFold, so that's pretty much the area its predictions are strongest, and even within that, it's only catching certain conformations of the proteins) - even if you can get a large set of metagenomic surveys and a large sample of protein sequences, the limitations on the methods for experimentally verifying the protein structure means we're restricted to a certain section of the protein landscape. A general purpose computationally tractable method for simulating protein folding under various conditions could be a solution for those cases where we can't actually physically "observe" the structure directly. | null | null | 41,792,595 | 41,786,101 | null | null | null | null |
41,792,832 | comment | nioj | 2024-10-09T21:26:35 | null | See also: <a href="https://news.ycombinator.com/item?id=41792500">https://news.ycombinator.com/item?id=41792500</a> | null | null | 41,792,614 | 41,792,614 | null | null | null | null |
41,792,833 | comment | AnthonyMouse | 2024-10-09T21:26:41 | null | That isn't really the main concern. It's really a question of alienability.<p>If your great grandfather invested in something a hundred years ago and now 99% of its value is appreciation (or inflation), you may or may not want to continue investing in it. If you do, the step up in basis doesn't really matter because you're not going to sell it anyway.<p>But if you now think it's a mediocre investment, you may be inclined to sell it and invest in something else. Except that you won't if you'd lose a significant proportion of its value to taxes. This is a problem with capital gains taxes in general, but it's especially a problem for anything held intergenerationally (i.e. for a very long time) because not only will the appreciation be large, the <i>inflation</i> by itself would represent most of the value of the "gain". So the step-up in basis is a stupid hack to avoid this and let children make different choices than their parents and grandparents without being punished by the tax code.<p>There are probably better ways to handle this, but "delete it and replace it with nothing" is not one of them. | null | null | 41,790,699 | 41,780,569 | null | [
41793139
] | null | null |
41,792,834 | story | gslin | 2024-10-09T21:26:43 | Kim Dotcom Fends Off Arrest Before Conspiracy Theories and Reality Collide | null | https://torrentfreak.com/kim-dotcom-fends-off-arrest-before-conspiracy-theories-reality-collide-241009/ | 2 | null | 41,792,834 | 0 | null | null | null |
41,792,835 | comment | reustle | 2024-10-09T21:26:44 | null | Letting the public trips be visible would make the most sense. I'll create an account when I'd like to make my own trip. | null | null | 41,789,675 | 41,788,246 | null | null | null | null |
41,792,836 | comment | nemothekid | 2024-10-09T21:26:55 | null | ><i>Given that most billionaires have their billions as imaginary ownership of gigantic corporations, how exactly would someone steal their shares from them such that government needs to enforce their property rights?</i><p>You have it backwards. "imaginary ownership of gigantic corporations" doesn't exist without government. The government doesn't "protect" Zuckerbergs shares, the government is the vehicle that gives Zuckerbergs shares value. Without the government Zuckerberg's billions is worthless.<p>In this fairytale world where Zuckerberg is somehow made a persona non grata, then all his shares would become worthless as he wouldn't be able to sell them, nor would he be able to enforce Facebook (the entity) to do anything on his behalf. | null | null | 41,789,334 | 41,780,569 | null | null | null | null |
41,792,837 | comment | muziq | 2024-10-09T21:27:00 | null | Nice one Demis & Chums! | null | null | 41,786,101 | 41,786,101 | null | null | null | null |
41,792,838 | comment | int_19h | 2024-10-09T21:27:12 | null | It was definitely horrible, but given how pervasive Flash was on the web then, I think a more reasonable takeaway is to say that no mobile device had first-class browser support until HTML5 <video> became prevalent. To me, "first class" implies "I can visit any popular website and expect it to work", which was decidedly not the case for iPhone at introduction. | null | null | 41,791,481 | 41,769,657 | null | null | null | null |
41,792,839 | comment | fiedzia | 2024-10-09T21:27:14 | null | No. Nobody is going read those (because most people won't even know that some unsafe is buried 5 layers of dependencies below what they work with). The author should make reasonable effort to prove the code is working correctly (and cannot be abused) by other means if possible. It might be a domain issue, so far all my apps are 100% safe (not counting libraries). | null | null | 41,792,726 | 41,791,773 | null | [
41794505,
41793264
] | null | null |
41,792,840 | comment | wryoak | 2024-10-09T21:27:14 | null | Is there an API available to access recipes for use outside the application, eg in another application?<p>My specific use case is associating (usually liquid) media recipes with microbial cultures | null | null | 41,792,753 | 41,792,753 | null | null | null | null |
41,792,841 | story | PaulHoule | 2024-10-09T21:27:16 | A Tomato Recognition and Rapid Sorting System Based on Improved YOLOv10 | null | https://www.mdpi.com/2075-1702/12/10/689 | 2 | null | 41,792,841 | 0 | null | null | null |
41,792,842 | comment | verteu | 2024-10-09T21:27:17 | null | > [A]ccording Chris McManus, the researchers made a "very subtle error"...<p>> Halpern and Coren took a list of the people who had recently died and contacted their families, asking whether or not their relative had been right- or left-handed.<p>> Looking at 2,000 cases, they saw that the average age at death of the left-handers was about nine years younger than of the right-handers.<p>> On that basis, they concluded that left-handers died earlier.<p>> At first glance, that seems persuasive. What did the researchers do wrong?<p>> "Their mistake was that they only looked at the dead," Chris McManus explains.<p>> The point is that left-handers are more common now than they used to be, so - at least at the time the research was published - left-handers were on average younger than right-handers.<p><a href="https://www.bbc.com/news/magazine-23988352" rel="nofollow">https://www.bbc.com/news/magazine-23988352</a> | null | null | 41,792,784 | 41,758,870 | null | null | null | null |
41,792,843 | comment | ghayes | 2024-10-09T21:27:38 | null | Geoffrey Hinton had an excellent series on neural networks from 2011 for Coursera available here <a href="https://m.youtube.com/playlist?list=PLoRl3Ht4JOcdU872GhiYWf6jwrk_SNhz9" rel="nofollow">https://m.youtube.com/playlist?list=PLoRl3Ht4JOcdU872GhiYWf6...</a> detailing the fundamentals of machine learning. The series was later wholesale replaced by another led by Andrew Ng of Google. I really adored Geoffrey’s lectures and recommend it to anyone looking to get into the space. It ends with him hinting at the idea of attention networks, but sadly I can’t find any later lectures from him on the topic. | null | null | 41,791,692 | 41,791,692 | null | [
41793765
] | null | null |
41,792,844 | comment | jasonpeacock | 2024-10-09T21:27:38 | null | Because most of those are dependencies required to <i>build</i> the actual dependencies.<p>There's (generally) 4 types of dependencies:<p><pre><code> - Toolchains (frameworks, compilers)
- Build (headers and libraries)
- Runtime (libraries)
- Test (frameworks, headers, libraries)
</code></pre>
And those dependencies all bring their own dependencies... | null | null | 41,792,586 | 41,791,708 | null | null | null | null |
41,792,845 | comment | altruios | 2024-10-09T21:27:40 | null | I'm left handed and play the piano.<p>I think if I had a learned on a reversed piano - it would not transfer to a regular piano - I would be able to play better.<p>What which hand is responsible for (melody, accompaniment/rhythm) have very different dexterity requirements. Learning melody on the dominate hand would be preferable to me, in hindsight.<p>With an electronic keyboard, reversing the tones should be easy enough to do. However, I have not noticed that feature. | null | null | 41,787,454 | 41,758,870 | null | null | null | null |
41,792,846 | comment | MarcoZavala | 2024-10-09T21:27:45 | null | [dead] | null | null | 41,792,500 | 41,792,500 | null | null | null | true |
41,792,847 | comment | aidenn0 | 2024-10-09T21:27:49 | null | This article is contrary to my understanding of the WHI. Waffle House doesn't know any more about a coming storm than FEMA, but how quickly (and fully) the Waffle Houses open <i>after</i> a storm is a good indicator of how much damage was done and how quickly the area is bouncing back. | null | null | 41,791,693 | 41,791,693 | null | [
41793899,
41793140
] | null | null |
41,792,848 | comment | vram22 | 2024-10-09T21:27:50 | null | Looks like the word "denounce" is not used in the right sense here, at least based on what I know, and on a quick google, although it may have another meaning that matches what was intended by the writer of the article.<p><a href="https://dictionary.cambridge.org/dictionary/english/denounce" rel="nofollow">https://dictionary.cambridge.org/dictionary/english/denounce</a> | null | null | 41,791,369 | 41,791,369 | null | [
41793281,
41792936,
41792923
] | null | null |
41,792,849 | comment | dekhn | 2024-10-09T21:27:50 | null | Most proteins don't fold to their global energy minimum- they fold to a collection of kinetically accessible states. Many proteins fail to reach the global minimum because of intermediate barriers from states that are easily reached from the unfolded state.<p>Attempting to predict structures using mechanism that simulate the physical folding process waste immense amount of energy and time sampling very uninteresting areas of space.<p>You don't want to use a supercomputer to simulate folding; it can be done with a large collection of embarassingly parallel machines much more cheaply and effectively. I proposed a number of approaches on supercomputers and was repeatedly told no because the codes didn't scale to the full supercomputer, and supercomputers are designed and built for codes that scale really well on non-embarassingly parallel problems. This is the reason I left academia for google- to use their idle cycles to simulate folding (and do protein design, which also works best using embarassingly parallel processing).<p>As far as I can tell, only extremely small and simple proteins (like ribonuclease) fold to somewhere close to their global energy minimum. | null | null | 41,792,595 | 41,786,101 | null | null | null | null |
41,792,850 | comment | conqrr | 2024-10-09T21:27:52 | null | levels.fyi has been of good use for the industry at providing tools to navigate the incosistencies with leveling across companies. Somewhat similar to what Leetcode did as well (not saying Im happy with the standard).<p>There's a lot more refinement that's needed for levels.fyi data:<p>1. Data goes stale pretty quickly. Salaries are on a downtrend now and many averages don't reflect it yet.<p>2. Data is overreported in the few popular reigons and companies. Bay area/FAANGetc<p>3. Values are inflated with stocks that aren't public companies.<p>4. Lots of companies are following weird vesting schedule now and that calculation isn't the simplified 4 year average of stock value. | null | null | 41,792,055 | 41,792,055 | null | [
41794222
] | null | null |
41,792,851 | comment | mattmanser | 2024-10-09T21:27:53 | null | Great insights and a truly informative read.<p>Shame it didn't get more traction, possibly because it was so long. Would have loved to see where the comments would have taken it. | null | null | 41,790,499 | 41,790,499 | null | null | null | null |
41,792,852 | comment | Izkata | 2024-10-09T21:27:55 | null | Their second paragraph made it clear they were asking about the style of post, not the contents of that particular post. | null | null | 41,791,868 | 41,782,118 | null | [
41795241
] | null | null |
41,792,853 | comment | zrail | 2024-10-09T21:27:56 | null | Sure, and now that their threat model includes devastating landslides they will probably make different choices. | null | null | 41,792,160 | 41,764,095 | null | null | null | null |
41,792,854 | story | CrankyBear | 2024-10-09T21:28:02 | Starlink's Hurricane relief offer is not quite as free as advertised | null | https://www.zdnet.com/home-and-office/networking/starlinks-hurricane-relief-offer-not-quite-as-free-as-advertised/ | 10 | null | 41,792,854 | 5 | [
41794462,
41797210,
41795031
] | null | null |
41,792,855 | comment | nioj | 2024-10-09T21:28:04 | null | Related submission: <a href="https://news.ycombinator.com/item?id=41792614">https://news.ycombinator.com/item?id=41792614</a> | null | null | 41,792,500 | 41,792,500 | null | null | null | null |
41,792,856 | comment | ljsprague | 2024-10-09T21:28:05 | null | It's a thought experiment. And my end goal would be to save lives in the long run. | null | null | 41,785,960 | 41,764,486 | null | null | null | null |
41,792,857 | story | janandonly | 2024-10-09T21:28:14 | Elon Musk Owes You $100 • Cards Against Humanity Saves America Day 7 | null | https://www.cahsuesmusk.com/ | 21 | null | 41,792,857 | 2 | [
41795037,
41794438
] | null | null |
41,792,858 | comment | Krasnol | 2024-10-09T21:28:22 | null | I'm one of those lefties who have been forced to write using my right hand too.<p>It cost me grades throughout my whole time at school and university. This is why I write with my right hand. It's ugly, but most of the time I can read it. Luckily, we have devices today which make handwriting not so necessary anymore.<p>It was a blessing when I learned spreading butter on bread with my left hand...in my late 20s. Those many times I just ripped through the bread. Also forced upon me on some church vacation where me doing it with my left hand was just uncomfortable for my table neighbor and why I had to stop it according to the adult watching us.<p>Yeah...it is more than "a bit annoying" in this right-handed world sometimes.<p>Get those lefty scissors. They are such a blessing! | null | null | 41,787,365 | 41,758,870 | null | null | null | null |
41,792,859 | comment | nick3443 | 2024-10-09T21:28:27 | null | You in bozo too? | null | null | 41,792,788 | 41,792,055 | null | null | null | null |
41,792,860 | comment | xtrapol8 | 2024-10-09T21:28:50 | null | Does that come with infinite resources?<p>Build a monument of brutalism unlike anything this world has yet seen (and I’m well aware of what that covers.) | null | null | 41,792,713 | 41,792,713 | null | null | null | null |
41,792,861 | comment | terminaltrove | 2024-10-09T21:28:51 | null | If you're looking for more or new tools, we have lots at Terminal Trove and continuously add new ones.<p><a href="https://terminaltrove.com/new/" rel="nofollow">https://terminaltrove.com/new/</a><p><a href="https://terminaltrove.com/tool-of-the-week/" rel="nofollow">https://terminaltrove.com/tool-of-the-week/</a><p>Every tool added has images/gifs and a quick way to install it.<p>We love this list and sponsored the development of fd which we heavily use ourselves! | null | null | 41,791,708 | 41,791,708 | null | [
41793164
] | null | null |
41,792,862 | comment | JSDevOps | 2024-10-09T21:29:07 | null | It’s not been ruined by “AI” | null | null | 41,771,917 | 41,766,704 | null | null | null | null |
41,792,863 | comment | Hugsun | 2024-10-09T21:29:09 | null | This guy gets it! | null | null | 41,790,258 | 41,789,242 | null | null | null | null |
41,792,864 | comment | bubblethink | 2024-10-09T21:29:12 | null | >My guess would be that a lot of non-Indians at these companies are rejected on the basis of "vibes"<p>Are you sure it's not just money ? You can pay Indians on H1B less and keep them tied to you. At a place like Cognizant, you aren't trying to get the best talent. You want the cheapest talent that gets the job done. | null | null | 41,786,148 | 41,785,265 | null | null | null | null |
41,792,865 | comment | dylan604 | 2024-10-09T21:29:19 | null | This whole bit of drama really makes me glad I never invested time/energy in WordPress. It's like Real Housewives of Computer Nerds level of whining, and feels just as fake. Regardless of right/wrong, the whole thing has just turned into a 80s made for TV type of situation. There was a much better way at handling this, but somebody had access to social media and the wheels promptly fell off. | null | null | 41,791,369 | 41,791,369 | null | [
41793142,
41793040,
41792972,
41795542
] | null | null |
41,792,866 | comment | Wowfunhappy | 2024-10-09T21:29:24 | null | Archive.org is now down. Could anyone explain what it used to show? | null | null | 41,792,500 | 41,792,500 | null | [
41792893
] | null | null |
41,792,867 | comment | nosmokewhereiam | 2024-10-09T21:29:35 | null | Build techno-forward sound systems and share them. | null | null | 41,792,713 | 41,792,713 | null | null | null | null |
41,792,868 | comment | jcgrillo | 2024-10-09T21:29:40 | null | One could argue that writing a timestamp as a string which then has to be parsed is silly and instead it should be delta-of-delta encoded and packed into variable width integers, but even then double integrating and constructing a datetime for each one would still be expensive in python, only less so. | null | null | 41,792,659 | 41,791,773 | null | null | null | null |
41,792,869 | comment | nemothekid | 2024-10-09T21:29:52 | null | Only issue I can forsee is that every loan, except a credit card, personal loan, and student loan, is typically loaned against an asset. I guess you could make carve outs for mortgages and auto loans. | null | null | 41,790,363 | 41,780,569 | null | [
41793091
] | null | null |
41,792,870 | comment | sahmeepee | 2024-10-09T21:29:58 | null | The axe element will be the same each time, but you can do that without any AI shenanigans - just run it in a normal Playwright test.<p>My question was really about the page interactions and the assertions being driven by AI: if they are going to be generating different code every time the test runs, how can you have any confidence in the test not having false positives and false negatives at least some of the time, unless you read the generated script each time?<p>That sounds like a lot more work than just writing the test once in the traditional way (codegen or manually) and tweaking it only when there's a breaking change to the page.<p>If people are genuinely using this approach then there must be something I'm missing. | null | null | 41,792,048 | 41,789,633 | null | [
41792997
] | null | null |
41,792,871 | comment | dekhn | 2024-10-09T21:29:58 | null | The value in BLAST wasn't in its (very fast) alignment implementation but in the scoring function, which produced calibrated E-values that could be used directly to decide whether matches were significant or not. As a postdoc I did an extremely careful comparison of E-values to true, known similarities, and the E-values were spot on. Apparently, NIH ran a ton of evolution simulations to calibrate those parameters.<p>For the curious, BLAST is very much like pairwise alignment but uses an index to speed up by avoiding attempting to align poorly scoring regions. | null | null | 41,789,928 | 41,786,101 | null | [
41793422
] | null | null |
41,792,872 | comment | Shadow1337 | 2024-10-09T21:30:13 | null | It looks like it is running the service that was part of the supply chain attacker earlier this year. <a href="https://github.com/polyfillpolyfill/polyfill-service/issues/2890">https://github.com/polyfillpolyfill/polyfill-service/issues/...</a> | null | null | 41,792,752 | 41,792,500 | null | [
41793062,
41793039,
41793077
] | null | null |
41,792,873 | comment | nosmokewhereiam | 2024-10-09T21:30:19 | null | Live. | null | null | 41,792,713 | 41,792,713 | null | null | null | null |
41,792,874 | comment | hyperman1 | 2024-10-09T21:30:25 | null | Would you do it again? | null | null | 41,783,049 | 41,773,784 | null | null | null | null |
41,792,875 | story | xlinux | 2024-10-09T21:30:26 | Going Between Finder and the Terminal | null | https://alexwlchan.net/2024/finder-terminal-tools/ | 3 | null | 41,792,875 | 0 | null | null | null |
41,792,876 | comment | al_borland | 2024-10-09T21:30:28 | null | This was my first thought when checking out their website and other projects. Just more digital than physical.<p><a href="https://brain.wtf" rel="nofollow">https://brain.wtf</a> | null | null | 41,791,569 | 41,790,295 | null | null | null | null |
41,792,877 | comment | esskay | 2024-10-09T21:30:29 | null | Just need to find someone with ~220pb of storage and the ability to increase that by approximately 50% annually forever more. | null | null | 41,792,166 | 41,789,815 | null | [
41795129,
41793720
] | null | null |
41,792,878 | comment | trgn | 2024-10-09T21:30:37 | null | i know what you're saying, but really now, you know what i mean. some scribbles on a pancard or some fish monger shouting above the crowd, it's not the same as the mass media ads that find you everywhere willingly and unwillingy, 24/7. so before 1900, why not, to make it easy. let's go back there. | null | null | 41,792,319 | 41,784,287 | null | null | null | null |
41,792,879 | story | codedrivendev | 2024-10-09T21:30:48 | How Video (Playback/Delivery/Processing) Works | null | https://howvideo.works/ | 2 | null | 41,792,879 | 0 | null | null | null |
41,792,880 | story | todsacerdoti | 2024-10-09T21:31:06 | Internet Archive Hacked (Probably) | null | https://words.theresnotime.co.uk/2024/internet-archive-hacked-probably/ | 47 | null | 41,792,880 | 2 | [
41792987
] | null | null |
41,792,881 | comment | pclmulqdq | 2024-10-09T21:31:09 | null | > Piano music is mostly written by right-handers for right-handers<p>Even if that does not directly say that people (right-handers, specifically) insert their handedness bias into the things they write, it does certainly imply that that is important for people who write piano music to put the athletic part (the melody) in the more dextrous hand. It is not. The reason for the right hand to carry the melody is the sound projection of high notes, nothing to do with handedness.<p>Incidentally, many famous composers in the piano canon were lefties. Rachmaninov, Prokofiev, and Ravel all have strong evidence of being left-handed. CPE Bach may have also been a lefty, as may have Mozart and Beethoven. This is not "right-handed people making right-handed music" by any means. | null | null | 41,792,755 | 41,758,870 | null | null | null | null |
41,792,882 | comment | mensetmanusman | 2024-10-09T21:31:12 | null | I just bring this up as a reminder that the government did kill Bell Labs by breaking up a trust. There are pros and cons to every corporation system. | null | null | 41,790,502 | 41,784,287 | null | null | null | null |
41,792,883 | comment | BeretEnjoyer | 2024-10-09T21:31:17 | null | It's not unclear at all without the apostrophe, because in German, compound words are written without spaces. If it was indeed a bar that specialized in a drink called "Rosis", it would be spelled "Rosisbar". The space makes it immediately apparent that it's a bar operated by someone called Rosi. | null | null | 41,791,964 | 41,787,647 | null | [
41796605
] | null | null |
41,792,884 | comment | wbl | 2024-10-09T21:31:22 | null | Not all goods are nontradeable. Flights and lodging at a destination cost the same to everyone as do iPhones etc. | null | null | 41,792,730 | 41,792,055 | null | [
41793640
] | null | null |
41,792,885 | comment | fiedzia | 2024-10-09T21:31:22 | null | > this is practically impossible to hunt down in a big codebase<p>use linters, they keep getting smarter | null | null | 41,792,751 | 41,791,773 | null | [
41793245
] | null | null |
41,792,886 | comment | fngjdflmdflg | 2024-10-09T21:31:29 | null | I wonder if this is a large enough catalog for IA to fly out to the Netherlands to ship these in as they do with entire libraries:<p>>We will be very accepting of materials that you will pack, ship and de-dupe, and we are more selective when we have to pay and coordinate. But we can do this and we have done so for many many collections of items we do not have. For full libraries our Away Team will travel to your location to pack and ship.[0]<p>See also "Preserving the legacy of a library when a college closes."[1]<p>[0] <a href="https://help.archive.org/help/how-do-i-make-a-physical-donation-to-the-internet-archive/" rel="nofollow">https://help.archive.org/help/how-do-i-make-a-physical-donat...</a><p>[1] <a href="https://blog.archive.org/2019/12/10/preserving-the-legacy-of-a-library-when-a-college-closes/" rel="nofollow">https://blog.archive.org/2019/12/10/preserving-the-legacy-of...</a> | null | null | 41,789,815 | 41,789,815 | null | null | null | null |
41,792,887 | comment | kylehotchkiss | 2024-10-09T21:31:33 | null | Caste is not the driving factor in Indian culture. | null | null | 41,787,492 | 41,785,265 | null | [
41799542,
41794417
] | null | null |
41,792,888 | comment | CryZe | 2024-10-09T21:31:34 | null | > huge pain in the ass<p>Maybe if you structure your code weirdly? I haven't encountered a major borrow checker issue that I couldn't easily resolve in many years. | null | null | 41,792,677 | 41,791,773 | null | [
41796168
] | null | null |
41,792,889 | story | indigodaddy | 2024-10-09T21:31:41 | Password Pusher: Securely share sensitive information with automatic expiration | null | https://github.com/pglombardo/PasswordPusher | 1 | null | 41,792,889 | 0 | null | null | null |
41,792,890 | comment | saulpw | 2024-10-09T21:31:51 | null | I mean sure, it can make things up just like any fake CEO can. I can ask ChatGPT for a list of goals and values right now and they might even sound reasonable.<p>But there's no discernment, no conviction. No actual 'seeing', just words and concepts thrown together in an attempt to pass muster. You can argue that's all that humans are doing, and to be sure, there are many people who are faking it like this all the time, sometimes through their entire life, and even in high-level positions. One of them is even running for president right now. But when you compare one of these fakers with someone who has actual principles and values and meaningful goals, there's clearly a bright line difference. And there's no way the current round of AI/LLMs could have that, no matter how much they sell it or say that's around the corner. | null | null | 41,792,117 | 41,771,331 | null | null | null | null |
41,792,891 | comment | tsimionescu | 2024-10-09T21:32:14 | null | So what you're saying is that many asset values are purely fictional and don't correspond to a real value that anyone would pay. But, you think this is a good thing and that the government would ruin things if it foced asset values to be closer to what someone would actually pay for them.<p>I don't think your argument is as strong as you think it is. The value of an asset in a market economy is supposed to be what someone would pay for it. If you can't sell your Tesla stock for it's value, then it doesn't actually have that value. | null | null | 41,790,639 | 41,780,569 | null | null | null | null |
41,792,892 | comment | NemoNobody | 2024-10-09T21:32:14 | null | I had a book when I was a kid that talked about global warming with a very 1990s distant future point of view on the situation but it did discuss how it would play out, what would happen first, what would be the point of no return that kind of stuff.<p>Everything that it talked about happening in a hundred years has already happened.<p>The melting of the permafrost in Siberia was one of the books examples of a world ending highly unlikely/near impossible scenario - of course that's also happening rn.<p>I can't recall the name of the book for the life of me but the reality is that my entire life the people that run the world have known about this problem and only made it worse. | null | null | 41,789,455 | 41,789,455 | null | null | null | null |
41,792,893 | comment | Mr-Hyde | 2024-10-09T21:32:21 | null | A pop-up that said,<p>"Have you ever felt like the Internet Archive runs on sticks and is constantly on the verge of suffering a catastrophic security breach? It just happened. See 31 million of you on HIBP!" | null | null | 41,792,866 | 41,792,500 | null | [
41792971
] | null | null |
41,792,894 | comment | jerlam | 2024-10-09T21:32:21 | null | The article says that the oxygen is mainly for guests, who aren't going to have time to acclimate. Or the elderly for whom acclimation is much more difficult. It's not trying to be a perfect solution of any kind. | null | null | 41,792,517 | 41,791,807 | null | null | null | null |
41,792,895 | comment | lovethevoid | 2024-10-09T21:32:23 | null | He sounds like a multi faceted person to me | null | null | 41,792,543 | 41,791,369 | null | [
41793024,
41793510
] | null | null |
41,792,896 | comment | roymurdock | 2024-10-09T21:32:26 | null | interesting perspective....agree nothing is permanent but competition keeps monopolies from forming and stagnation/rot from setting in... | null | null | 41,792,451 | 41,787,967 | null | null | null | null |
41,792,897 | comment | spc476 | 2024-10-09T21:32:30 | null | C++ programmers decided against NULL, and for well over a decade, recommended using a plain 0. It was only recently that they came up with a new name: nullptr. Sigh. | null | null | 41,788,653 | 41,758,371 | null | [
41793542
] | null | null |
41,792,898 | comment | __float | 2024-10-09T21:32:37 | null | It's also been called that in a software engineering context[0], though it looks the post didn't get much traction on HN when it was submitted[1].<p>[0] <a href="https://lethain.com/no-wrong-doors/" rel="nofollow">https://lethain.com/no-wrong-doors/</a><p>[1] <a href="https://news.ycombinator.com/item?id=40450485">https://news.ycombinator.com/item?id=40450485</a> | null | null | 41,791,522 | 41,765,127 | null | [
41793152,
41796347
] | null | null |
41,792,899 | comment | burningChrome | 2024-10-09T21:32:41 | null | >> Perhaps Ma Bell taught us lessons to avoid this time around.<p>I hope this is true. I'm not sure breaking up Ma Bell was a good thing long term. All they did was break them up and then all the regional bells and smaller companies just re-constituted themselves again in some other form. The deregulation created more competition, but it was short lived because of economic pressures.<p>For many business customers, their first dealings with local telecom companies that were competing with Qwest at the time were horrific. Business customers would lose their landline and internet service for days without any idea when it would be restored. Cutovers were problematic and a total crap shoot if they went smoothly. Qwest regularly tagged the wrong lines that needed to be cut over. The billing nightmares of moving off of Qwest to a local company were too numerous to remember. Many businesses would switch for the savings and within a few months, would switch back because it was just one thing after another these companies couldn't get right. Suddenly paying a little more for the peace of mind far outweighed any savings they were getting.<p>I suspect Google customers will have the same experience so I'm still on the fence whether it will be worth it long term. The one argument you can make is that Google isn't simply a company that needs competition, but that's its actually doing damage by how they manipulate their search rankings and what results they're delivering to people - so in that regard, they absolutely need to be broken up. | null | null | 41,792,314 | 41,784,287 | null | null | null | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.