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,804,100 | comment | null | 2024-10-10T22:13:13 | null | null | null | null | 41,804,032 | 41,799,068 | null | null | true | null |
41,804,101 | comment | AnthonyMouse | 2024-10-10T22:13:21 | null | > I’m saying we should eliminate the step up in basis for inherited assets. In what scenario would that force someone to sell something?<p>The proposal has been floated recently that unrealized capital gains should be taxed. This would nominally mitigate a major problem with your proposal, which is that it would heavily discourage people from switching from long-held mediocre investments with a low tax basis to better investments. So they're often proposed together or as the mechanism to remove the step-up in basis, i.e. it's unconditionally stepped up to market value every year but then you have to pay the tax immediately.<p>But if you tax unrealized gains then you force the sale of assets any time the tax is more than the owner's liquid cash, which is its own major problem.<p>Whereas if you don't do this, now you haven't solved the original problem that the owner suffers a huge tax penalty for switching from a long-held mediocre investment to a better one. | null | null | 41,793,750 | 41,780,569 | null | null | null | null |
41,804,102 | comment | surgical_fire | 2024-10-10T22:13:22 | null | Twitter was by very far always the most toxic cesspool in the internet.<p>The format creates incentives for the most inane but inflammatory posts to gain traction, and the userbase it cultivated was all in for the drama. So many witch hunts started on Twitter, for the most asinine reasons, and the mob mentality of the userbase made it the norm. | null | null | 41,803,195 | 41,801,795 | null | null | null | null |
41,804,103 | comment | GiorgioG | 2024-10-10T22:13:31 | null | What a complete shitshow - who on earth would trust starting a new project using Wordpress after this. | null | null | 41,803,650 | 41,803,650 | null | null | null | null |
41,804,104 | comment | DoesntMatter22 | 2024-10-10T22:13:32 | null | I'm thinking shelves are way more efficient take up less space, no repair or electricity needed. | null | null | 41,803,985 | 41,803,518 | null | null | null | null |
41,804,105 | comment | jeffchuber | 2024-10-10T22:13:40 | null | Thanks ChatGPT!<p>Yes - that's a great explanation. | null | null | 41,803,616 | 41,803,154 | null | null | null | null |
41,804,106 | comment | elihu | 2024-10-10T22:13:43 | null | Continuing to burn fossil fuels forever isn't really an option. At some point we'll effectively run out, but before then we'll have caused catastrophic climate change due to our CO2 emissions.<p>Synthetic or plant-based fuels are plausible options, but synthetic fuels can't compare with battery EVs in terms of energy efficiency, and plant based fuels need crop land that's probably better used to grow food.<p>Electric vehicles aren't a temporary fad. They're here to stay. Liquid fuels aren't going away either, but I expect eventually they'll be used mostly for military and aviation applications, not ground transportation. | null | null | 41,803,259 | 41,757,808 | null | null | null | null |
41,804,107 | comment | dunham | 2024-10-10T22:13:56 | null | > there's absolutely no reason to use var any more.<p>So I also thought. And then I recently learned that typescript uses `var` internally for performance.<p>From src/compiler/checker.ts:<p><pre><code> // Why var? It avoids TDZ checks in the runtime which can be costly.
// See: https://github.com/microsoft/TypeScript/issues/52924
/* eslint-disable no-var */
var deferredDiagnosticsCallbacks: (() => void)[] = [];</code></pre> | null | null | 41,802,341 | 41,787,041 | null | null | null | null |
41,804,108 | comment | pc86 | 2024-10-10T22:13:59 | null | Being right is not license to be an insufferable asshole to the people you work with. | null | null | 41,800,156 | 41,765,594 | null | null | null | null |
41,804,109 | comment | elpocko | 2024-10-10T22:14:04 | null | Some movies in various genres that I like:<p>* Everything Everywhere All At Once<p>* The Matrix<p>* Fight Club<p>* Weird: The Al Yankovic Story<p>* Pulp Fiction<p>* Shutter Island<p>* Inception<p>It's hard to pick one "best" movie. | null | null | 41,803,780 | 41,803,780 | null | null | null | null |
41,804,110 | comment | benmmurphy | 2024-10-10T22:14:09 | null | It is a complex situation. The worst case scenario from these entrapment operations is the FBI incentives people into a committing a crime they would otherwise not have committed. The end result is more crime, but maybe it kind of nets out because FBI has 100% success and victims are made whole but then you have the sunk cost of this FBI work. The more optimal case is the FBI nabs people who would have otherwise committed another crime and this is a more efficient way of dealing with these people than investigating real crimes.<p>My concern is the FBI doesn’t actually try and determine which is the best allocation of resources but just presses the button that makes the FBI look best. Investigating real crimes is a lot more difficult than investigating these ‘sting’ crimes so if investigating ‘sting’ crimes was less efficient then it might be incorrectly priotized. | null | null | 41,804,031 | 41,802,823 | null | null | null | null |
41,804,111 | comment | LightHugger | 2024-10-10T22:14:22 | null | Hmm, the user was a lunatic who made violent threats and then was spreading misinformation about their ban, which in turn was getting picked up by lazy journalists. What did he do wrong here? | null | null | 41,804,006 | 41,803,650 | null | [
41804137
] | null | null |
41,804,112 | comment | aftbit | 2024-10-10T22:14:36 | null | Is there a reason you need specialized assertions over something like Python's generic assert?<p><pre><code> >>> big = 2; small = 3
>>> assert big >= small, "big is smaller than small"
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AssertionError: big is smaller than small
</code></pre>
In pytest, assertions are rewritten[1] to return something more useful like:<p><pre><code> def test():
big = 2
small = 3
> assert big > small
E assert 2 > 3
test/test_dumb.py:4: AssertionError
========== short test summary info ==========
FAILED test/test_dumb.py::test - assert 2 > 3
</code></pre>
1: <a href="https://github.com/pytest-dev/pytest/blob/f373974707f57a0b28d12563e4d03c7cd54c70d9/src/_pytest/assertion/rewrite.py#L610">https://github.com/pytest-dev/pytest/blob/f373974707f57a0b28...</a> | null | null | 41,801,600 | 41,754,386 | null | null | null | null |
41,804,113 | comment | grahamm | 2024-10-10T22:14:37 | null | Always have blue ink on the side of my hand where I have dragged my hand across the page and through my writing. Fountain pens were particularly messy. | null | null | 41,794,201 | 41,758,870 | null | null | null | null |
41,804,114 | comment | intothemild | 2024-10-10T22:15:02 | null | The java tooling is the number one thing I hate about using the language. It's all just bad.<p>Then. You get forced into using intelij because it seems to smooth over a lot of the toolings problems with "magic".<p>It's horrible. | null | null | 41,802,236 | 41,787,041 | null | null | null | null |
41,804,115 | comment | the_gorilla | 2024-10-10T22:15:10 | null | This is apparently a controversial opinion but I don't think the government should be allowed to break the law. And no cheating by writing a law that laws don't apply to you. | null | null | 41,804,060 | 41,802,823 | null | [
41804141,
41804177
] | null | null |
41,804,116 | comment | Novosell | 2024-10-10T22:15:46 | null | Android allows you to create directories. | null | null | 41,803,769 | 41,801,334 | null | [
41804150
] | null | null |
41,804,117 | comment | jrs235 | 2024-10-10T22:15:56 | null | Latency also is determined by the length of the road from start to destination and the number of "hops" or intersections and turns. | null | null | 41,797,899 | 41,793,658 | null | null | null | null |
41,804,118 | comment | 1oooqooq | 2024-10-10T22:16:00 | null | every news about kleptocurrencies is paid advertisement to move the price | null | null | 41,793,872 | 41,793,872 | null | null | null | null |
41,804,119 | comment | thebruce87m | 2024-10-10T22:16:05 | null | I can’t find a specific statement that says the car has a certificate that can expire, but it’s maybe related to this: <a href="https://www.sae.org/news/2020/08/iso-ev-plug-and-charge-standard-faces-security-concerns" rel="nofollow">https://www.sae.org/news/2020/08/iso-ev-plug-and-charge-stan...</a> | null | null | 41,804,061 | 41,795,075 | null | null | null | null |
41,804,120 | comment | talldayo | 2024-10-10T22:16:41 | null | But if anyone can name a non-Windows platform that does it better, I'll wait! | null | null | 41,804,055 | 41,799,068 | null | null | null | null |
41,804,121 | comment | MetaWhirledPeas | 2024-10-10T22:16:43 | null | > If people and companies took the bigger picture in to account, they likely wouldn't do these things.<p>That's part of the issue. There are very real financial rewards for short term gain; meanwhile <i>vision</i> and <i>legacy</i> have been greatly devalued at both the personal and corporate level.<p>How many CEOs do we honor for years of dedicated service and company growth? Respect is shown in the form of monetary compensation, and that's granted based on short term shareholder results.<p>And it doesn't help that some companies succeed in spite of their brand tanking (FAANG, etc.). Why would you care about your brand if it doesn't seem to be affecting your bottom line? The brand at that point is <i>for the shareholders</i> first and foremost, and what's a terrible brand to many consumers can be a great brand to investors (Facebook). | null | null | 41,800,677 | 41,797,719 | null | null | null | null |
41,804,122 | comment | xenadu02 | 2024-10-10T22:16:46 | null | We might as well be brain surgeons.<p>Software is everywhere. It manages life and safety critical things for millions (billions?) of people every day. So much of everything that goes on at every level is affected by software. Software is also unique in that one engineer's work output can be sold, at near zero cost, to a billion people in theory. That isn't <i>actually</i> true but you get the idea.<p>Software Engineer is just a new professional class. Its value proposition is high and it turns out a relatively small number of people have the mental model and aptitude to be really good at it. | null | null | 41,793,757 | 41,792,055 | null | null | null | null |
41,804,123 | comment | ceejayoz | 2024-10-10T22:16:58 | null | It’s only entrapment if you push someone into doing something they wouldn’t normally do.<p>If the FBI threatens your family to get you to commit a crime, that’s entrapment.<p>If you pull up to a sex worker and proposition them, but it turns out to be a cop, that’s not entrapment. Because you were looking to commit the crime. | null | null | 41,804,007 | 41,802,823 | null | null | null | null |
41,804,124 | story | hhs | 2024-10-10T22:17:17 | The anti-status watch: why men in finance love cheap, cheesy watches | null | https://www.wsj.com/style/fashion/the-anti-status-watch-why-men-in-finance-love-cheap-cheesy-watches-d3c905fc | 1 | null | 41,804,124 | 0 | null | null | null |
41,804,125 | comment | kergonath | 2024-10-10T22:17:20 | null | You’d need to compare with what can be done on macOS including with things like crossover and the GPT. AFAICT, the Linux side is making progress, but still more games can be run from macOS. | null | null | 41,803,779 | 41,799,068 | null | null | null | null |
41,804,126 | comment | null | 2024-10-10T22:17:21 | null | null | null | null | 41,803,858 | 41,803,858 | null | null | true | null |
41,804,127 | story | d_silin | 2024-10-10T22:17:30 | All asteroids in Solar System, visualized | null | https://github.com/DarkStar1982/Orbidium | 1 | null | 41,804,127 | 0 | null | null | null |
41,804,128 | comment | lo_zamoyski | 2024-10-10T22:17:30 | null | This still doesn't establish why one should regard gold as "ostentatious". Are you working from some private definition of the term? I make use of the common pejorative meaning, given by Merriam Webster as:<p><pre><code> attracting or seeking to attract attention, admiration, or envy often by gaudiness or obviousness : overly elaborate or conspicuous : characterized by, fond of, or evincing ostentation
</code></pre>
The key to ostentation is vulgarity or crudeness, ugliness. You even use the word "tacky", so clearly you aren't blind to at least the general idea of bad taste, even if we may be in disagreement about what constitutes bad taste.<p>Obviously, gold can be used to signify the importance of something, but that doesn't make it ostentatious. What I contest is the pejorative.<p>> that’s a judgement about what should be venerated not the intent behind the use of gold.<p>The use of gold is a matter of intention. A judgement is made that something is worthy of honor, another that gold is an aesthetically suitable material that, in some way, can be used to assist in honoring said thing, and the intention is made to honor said thing in such a manner. | null | null | 41,789,914 | 41,761,409 | null | null | null | null |
41,804,129 | comment | null | 2024-10-10T22:17:32 | null | null | null | null | 41,804,089 | 41,804,089 | null | null | true | null |
41,804,130 | comment | akira2501 | 2024-10-10T22:17:34 | null | Safeway is owned by Albertsons. So is Lucky's. There are 58 total Ranch 99's in the USA. Costco requires membership up front. Cardenas is owned by KKR. Pak N Save is a subsidary of Safeway and also owned by Albertons. Walmart is not a grocery store.<p>So, no, not a lot of competition.<p>You really should look into grocery M&A's over the past few years. This is all easy to see if you care to _actually_ look. | null | null | 41,803,950 | 41,765,006 | null | null | null | null |
41,804,131 | comment | paulgerhardt | 2024-10-10T22:17:52 | null | My understanding was that Tarsnap was just fine and that was the preferred solution for hacker news outside Dropbox. | null | null | 41,798,359 | 41,798,359 | null | null | null | null |
41,804,132 | comment | null | 2024-10-10T22:17:56 | null | null | null | null | 41,804,068 | 41,804,068 | null | null | true | null |
41,804,133 | story | tomohawk | 2024-10-10T22:17:58 | null | null | null | 1 | null | 41,804,133 | null | [
41804147
] | null | true |
41,804,134 | comment | justin_oaks | 2024-10-10T22:18:00 | null | It seems like the doctor has fallen victim to the politician's fallacy [0], summarized well on Wikipedia as<p>1. We must do something.<p>2. This is something.<p>3. Therefore, we must do this.<p>People seem to feel like there's merit in "trying something, anything" even if by trying something you may actively make the problem worse. We need to accept that we only have limited control. Bad things happen.<p>0. <a href="https://en.wikipedia.org/wiki/Politician%27s_syllogism" rel="nofollow">https://en.wikipedia.org/wiki/Politician%27s_syllogism</a> | null | null | 41,795,061 | 41,786,768 | null | null | null | null |
41,804,135 | comment | wooque | 2024-10-10T22:18:02 | null | My social life took a hit as well when I switched to remote work. I'm too comfortable being alone.<p>When I worked at office I had to get out of my comfort zone and socialize a bit with colleagues, chit chat, going for launch together, and in the retrospect it was nice to get small daily doze of social interactions.<p>I sometimes miss going to the office, hybrid thing (2-3 days
in the office) would be probably ideal. | null | null | 41,803,127 | 41,802,378 | null | null | null | null |
41,804,136 | comment | null | 2024-10-10T22:18:06 | null | null | null | null | 41,804,054 | 41,804,054 | null | null | true | null |
41,804,137 | comment | mossTechnician | 2024-10-10T22:18:07 | null | He followed one of his users to a different social network and started posting private information about them | null | null | 41,804,111 | 41,803,650 | null | null | null | null |
41,804,138 | story | beny23 | 2024-10-10T22:18:07 | AI Is the Enshittification of Recruitment | null | https://beny23.github.io/posts/spearheading_nothing/ | 1 | null | 41,804,138 | 0 | null | null | null |
41,804,139 | comment | daniel_iversen | 2024-10-10T22:18:11 | null | Came here to ask the same. I guess it's entrapment when law enforcement induces a person to commit a crime they otherwise wouldn't have.. so maybe it depends on how hard and well they marketed it? :) It's such a fine line - both legally maybe (IANAL) but certainly morally I feel. | null | null | 41,804,007 | 41,802,823 | null | null | null | null |
41,804,140 | comment | grinich | 2024-10-10T22:18:13 | null | we at workos wrote about it here: <a href="https://workos.com/blog/the-developers-guide-to-sso" rel="nofollow">https://workos.com/blog/the-developers-guide-to-sso</a> | null | null | 41,803,804 | 41,801,883 | null | null | null | null |
41,804,141 | comment | ceejayoz | 2024-10-10T22:18:18 | null | So, emergency vehicles should do the speed limit and wait for red lights? | null | null | 41,804,115 | 41,802,823 | null | null | null | null |
41,804,142 | comment | jsheard | 2024-10-10T22:18:29 | null | IANAL but my understanding is it's only entrapment if they encouraged the other parties to commit crimes they may not have otherwise, if those other parties approached FBIcoin with a proposal to do crimes entirely of their own accord then it's a kosher sting operation. | null | null | 41,804,007 | 41,802,823 | null | null | null | null |
41,804,143 | story | ValentineC | 2024-10-10T22:18:36 | The Wait Is Over: FreeWP Is Here to Shake Up the WordPress Ecosystem | null | https://freewp.com/the-wait-is-over-freewp-is-here-to-shake-up-the-wordpress-ecosystem/ | 3 | null | 41,804,143 | 0 | null | null | null |
41,804,144 | comment | ttepasse | 2024-10-10T22:18:36 | null | My impression is completely different, it's less the state but more the media.<p>Some first standardisations started with the beginning of the printed media, especially Luther's bible translation, then later printed grammar manuals. In the 19th century newspapers and publishing had an impact which streamlined the written word, becoming "Standard German" which through these influences is rather descended from central Germany, not Prussia.<p>AFAIK the "high" in high German doesn’t come from class but from geographical position - high is more upriver than the low countries in the north.<p>As for oral dialects: There was no concerted campaign against dialects like in France as far as I know; here it is actual more of a class thing. Again the media plays a role: the rise of radio and television in the latter half of the 20th century has a harmonising effect, deemphasising dialects. | null | null | 41,789,589 | 41,787,647 | null | null | null | null |
41,804,145 | comment | labster | 2024-10-10T22:18:41 | null | At least it worked as a ToS canary. The repo goes down, and you know shenanigans are incoming. | null | null | 41,802,902 | 41,802,800 | null | null | null | null |
41,804,146 | comment | reducesuffering | 2024-10-10T22:18:43 | null | The way people write Typescript these days is very functional. A huge amount of modern code are React apps written functionally | null | null | 41,796,406 | 41,792,304 | null | null | null | null |
41,804,147 | comment | null | 2024-10-10T22:18:51 | null | null | null | null | 41,804,133 | 41,804,133 | null | null | true | null |
41,804,148 | comment | Geeek | 2024-10-10T22:19:02 | null | Why not? | null | null | 41,804,060 | 41,802,823 | null | [
41804169
] | null | null |
41,804,149 | comment | the_mitsuhiko | 2024-10-10T22:19:05 | null | Normally it just plays the scale: <a href="https://www.youtube.com/watch?v=-SDYdHzT7Qw" rel="nofollow">https://www.youtube.com/watch?v=-SDYdHzT7Qw</a><p>But it can be configured to play other sounds. Here is a rare recording of it playing the Austrian anthem: <a href="https://www.youtube.com/watch?v=UkdQmDGU9AM" rel="nofollow">https://www.youtube.com/watch?v=UkdQmDGU9AM</a> | null | null | 41,804,038 | 41,757,808 | null | null | null | null |
41,804,150 | comment | Retr0id | 2024-10-10T22:19:07 | null | As does iOS, but the instructions given were for a desktop device. | null | null | 41,804,116 | 41,801,334 | null | null | null | null |
41,804,151 | comment | craftkiller | 2024-10-10T22:19:19 | null | You can do code blocks on HN by prefixing your lines with four spaces.<p><pre><code> #!/bin/bash
swaymsg create_output
OUTPUT=$(swaymsg -r -t get_outputs | jq '.[].name' | grep HEADLESS | tr -d '"')
# No need to reduce res, it defualts to 1080p
# swaymsg output "$OUTPUT" resolution 1280x720
wl-mirror "$OUTPUT"
swaymsg output "$OUTPUT" unplug</code></pre> | null | null | 41,803,977 | 41,800,602 | null | null | null | null |
41,804,152 | comment | pjkundert | 2024-10-10T22:19:26 | null | I’m <i>certain</i> they’ll stop after Israel is gone… | null | null | 41,803,922 | 41,803,922 | null | null | null | null |
41,804,153 | comment | simmons | 2024-10-10T22:19:49 | null | I've been doing this for years, as well. I've also found that the majority of companies I give an email address to are actually surprisingly good stewards of that information. However, I have found a number of email leaks. It looks like my block list is up to 31 addresses. Most of those are leaks that led to spam. (Although one was a smoothie chain that insisted on sending me email every single day, and their unsubscribe page always seemed to be "malfunctioning".)<p>I don't think all or most of these companies on the list are intentionally selling my address to spammers. I suspect most of these leaks are due to poor handling of the data or server compromises. (Surely Adobe, for example, isn't so desperate that they would sell my address to spammers.) But whether by malice or incompetence, I can easily block them. | null | null | 41,803,910 | 41,801,594 | null | null | null | null |
41,804,154 | comment | FactKnower69 | 2024-10-10T22:19:49 | null | why that reaction? what impact does one or the other entail? | null | null | 41,803,797 | 41,777,995 | null | null | null | null |
41,804,155 | comment | null | 2024-10-10T22:19:51 | null | null | null | null | 41,804,033 | 41,804,033 | null | null | true | null |
41,804,156 | comment | steveBK123 | 2024-10-10T22:20:09 | null | Yes I've worked nearly 20 years with teammates in London and watched how much even London & NYC have diverged in that time.<p>There was a brief period post GFC where it seemed like the US had lost its way and Europe had the right idea. Europe leaned hard into austerity and self immolated while the US just grew our way out of it and into the future.<p>As an American, I've always sort of held the stereotype of Europe as being a fun place to vacation. Nice lifestyle if you've made your money already, probably elsewhere.<p>Unintentionally or not, Eurocrats seem to have done everything they can to perpetuate this further and further. Between austerity, regulation, bureaucracy, etc it just seems like the whole continent is encased in amber, focussed on how to slice up a static/shrinking pie. | null | null | 41,803,919 | 41,799,016 | null | null | null | null |
41,804,157 | comment | neonsunset | 2024-10-10T22:20:27 | null | > sometimes modern C# code from experts looks unreadable to me<p>This is a culture issue and has always existed in C#, Java and C++ communities sadly (and I'm seeing this now with TS just as much, some Go examples are not beacons of readability either, I assume other languages suffer from this similarly).<p>In the past, people abused BinaryFormatter, XML-based DSLs, occasionally dynamic, Java-style factories of factories of factories, abuse of AOP, etc. Nowadays, this is supplanted by completely misplaced use of DDD, Mediatr, occasional AutoMapper use (oh god, at least use Mapperly or Mapster) and continuous spam of 3 projects and 57 file-sized back-ends for something that can be written under ~300 LOC split into two files using minimal API, records and pattern matching (<i>with</i> EF Core even!).<p>Neither is an example of good code, and the slow but steady realization that simplicity is the key makes me hopeful, but the slow pace of this, and new ways to make the job of a developer and a computer more difficult that are sometimes introduced by community and libraries surrounding .NET by MS themselves sour the impression. | null | null | 41,802,034 | 41,787,041 | null | null | null | null |
41,804,158 | comment | null | 2024-10-10T22:20:29 | null | null | null | null | 41,803,987 | 41,803,987 | null | null | true | null |
41,804,159 | comment | haolez | 2024-10-10T22:20:39 | null | In the same vein, I had a lot of fun reading a game programming book with logic programming, but instead of Prolog it used CLIPS:<p>Adventures in Rule-Based Programming: A CLIPS Tutorial <a href="https://a.co/d/7wVOcZp" rel="nofollow">https://a.co/d/7wVOcZp</a> | null | null | 41,800,764 | 41,800,764 | null | null | null | null |
41,804,160 | comment | jauntywundrkind | 2024-10-10T22:20:46 | null | Meh. Everything that's happened has been stupid as hell. There used to be some really interesting & helpful info streams on Twitter, weather alerts and streams of edits. There used to be academic research & people understanding trends of the world via Twitter. But now Twitter is trying to extract as much value as it can, make itself as opaque and unreadable as it can. Absurd API prices, no access for researchers, and you can't read much at all unless you are logged in.<p>Twitter has done amazing job at incinerating the value it once had as connective matter of society.<p>Also the algorithm now top-ranks a bunch of paid-for blue-check musk-ites and batshit-crazy-right-winger trash. | null | null | 41,803,402 | 41,801,795 | null | null | null | null |
41,804,161 | comment | potato3732842 | 2024-10-10T22:20:54 | null | >How is this not entrapment?<p>Look at the majority of the replies to your comment. Now imagine twelve of those people on a jury and a defendant who isn't mother teresa.<p>That's how. | null | null | 41,804,007 | 41,802,823 | null | [
41804170
] | null | null |
41,804,162 | comment | pessimizer | 2024-10-10T22:20:55 | null | I still have no idea why people think that he's a dick for not giving away his trademark. The code is GPL, the trademark is the only thing of Wordpress that he really owns. He should withdraw permission whenever he feels like it, especially when it's most financially useful to him. If taking away the usage of the mark sabotages an unfriendly competitor, he should do it.<p>Forking is beautiful, but WPE should do it somewhere else, like this FreeWP person.<p>I'm pretty sure everyone should be grateful for "WP." Didn't he say that using those two letters was fine? Everybody still gets to trade on Wordpress's goodwill, even if they can't use the full name. And if the company goes belly up, the community gets the full name. I've been struggling to see the other perspective.<p>The lawsuit claims are hysterical. I hope he doesn't give an inch. I hope it serves as a warning to others. I hope FreeWP is successful, and I don't know why anyone who isn't an employee or owner would care if WPE continues successfully or unsuccessfully. That's between Automattic and WPE. I certainly don't care that they can't advertise themselves as "Wordpress." | null | null | 41,803,650 | 41,803,650 | null | null | null | null |
41,804,163 | comment | JetSpiegel | 2024-10-10T22:20:56 | null | Well, technically NSO needs permission from the government to sell Pegasus, so those aren't really "private companies" either. They are private arms of the state. | null | null | 41,785,800 | 41,783,867 | null | null | null | null |
41,804,164 | comment | kergonath | 2024-10-10T22:21:01 | null | Sure, and it’s the same for quite a lot of people. It does not mean that anyone can do it, for a whole lot of reasons. | null | null | 41,804,003 | 41,799,068 | null | null | null | null |
41,804,165 | comment | tomohawk | 2024-10-10T22:21:05 | null | Brazil<p>The Princess Bride | null | null | 41,803,780 | 41,803,780 | null | null | null | null |
41,804,166 | comment | Capricorn2481 | 2024-10-10T22:21:14 | null | Entrapment would be if they encouraged people to break the law who otherwise wouldn't be pre-disposed to doing that. It's a fairly difficult thing to prove, but nothing they talk about here rises anywhere close to that. They just made their own coin. | null | null | 41,804,007 | 41,802,823 | null | null | null | null |
41,804,167 | comment | ungreased0675 | 2024-10-10T22:21:45 | null | You are correct. That’s what I meant but the wording should have been more precise. | null | null | 41,801,266 | 41,797,009 | null | null | null | null |
41,804,168 | comment | mananaysiempre | 2024-10-10T22:21:50 | null | In my experience, vectorization is very simple—just running multiple instsnces of Xoroshiro (or one of the weaker variants) inside a vector works quite well. Fitting the resulting peg into the hole of a preexisting API is difficult, but that’s always a problem. | null | null | 41,802,574 | 41,798,475 | null | null | null | null |
41,804,169 | comment | mschuster91 | 2024-10-10T22:22:23 | null | A reasonable argument can be made that the government enticed people to break the law. In some jurisdictions (like Germany) this kind of behavior is illegal for the police to use, only the secret services can do so (but only very limited in scope, and their discoveries are all but impossible to share with police). | null | null | 41,804,148 | 41,802,823 | null | null | null | null |
41,804,170 | comment | Capricorn2481 | 2024-10-10T22:22:23 | null | No it's just not entrapment. If an FBI agent sells you a baseball bat and you kill someone with it, that's hardly entrapment. | null | null | 41,804,161 | 41,802,823 | null | null | null | null |
41,804,171 | comment | system2 | 2024-10-10T22:22:31 | null | Nice application. I wish there was a Windows version since the entire corporate world uses Windows computers and Windows software even if they are working from home. | null | null | 41,800,602 | 41,800,602 | null | null | null | null |
41,804,172 | comment | geenkeuse | 2024-10-10T22:22:42 | null | Top 5 Classics<p>V for Vendetta
Fight Club
Phonebooth
Idiocracy
Holy Motors<p>Newer Stuff I liked recently<p>Fresh
Blink Twice<p>Both have real Psycho vibes, with a bit of a twist. | null | null | 41,803,780 | 41,803,780 | null | null | null | null |
41,804,173 | comment | inemesitaffia | 2024-10-10T22:22:48 | null | The world is a big place. I remember a country in Africa selling at $35/Mbps. | null | null | 41,804,015 | 41,793,658 | null | null | null | null |
41,804,174 | comment | tptacek | 2024-10-10T22:22:51 | null | Look, I know there are bare metal Java runtimes (I've done assessment projects for some of them), I just don't want to litigate the point. I'm fine with a definition of "kernel programming" that fits Linux and the NT kernel and nothing else. | null | null | 41,802,536 | 41,791,773 | null | null | null | null |
41,804,175 | comment | kirubakaran | 2024-10-10T22:23:02 | null | [delayed] | null | null | 41,766,704 | 41,766,704 | null | null | null | null |
41,804,176 | comment | m463 | 2024-10-10T22:23:14 | null | I think there's an app in the US like that, too good to go. | null | null | 41,779,235 | 41,775,298 | null | null | null | null |
41,804,177 | comment | axlee | 2024-10-10T22:23:14 | null | Wash traders are the ones breaking the law. | null | null | 41,804,115 | 41,802,823 | null | null | null | null |
41,804,178 | comment | beginnings | 2024-10-10T22:23:15 | null | you only need to roll your own auth once and you can drop it in anywhere | null | null | 41,801,883 | 41,801,883 | null | null | null | null |
41,804,179 | comment | staplung | 2024-10-10T22:23:21 | null | Please tell me they called it HooverCoin.<p>Such entrapment.<p>Very problem.<p>Wow. | null | null | 41,802,823 | 41,802,823 | null | null | null | null |
41,804,180 | comment | null | 2024-10-10T22:23:22 | null | null | null | null | 41,803,852 | 41,803,852 | null | null | true | null |
41,804,181 | comment | jdhendrickson | 2024-10-10T22:23:32 | null | Driving through dead forests covered in this vine on my way to PA from TX, I would respectfully disagree with their premise. When allowed to proliferate it strangled everything visible from the highway, and covered every inch of the hundreds of standing dead wood trees it had killed. | null | null | 41,780,229 | 41,780,229 | null | [
41804330,
41804376
] | null | null |
41,804,182 | comment | popcalc | 2024-10-10T22:23:42 | null | The only reason anyone accepts it from you as payment is because they believe one of a million speculating gamblers (who prefer to be called day-traders) will in turn take it off their hands for liquid cash. Also we cannot deny the impact Tether has on propping up all cryptocurrencies by way of printing USD value out of thin air.<p>Imagine using BBBY shares as a store of value and you have pretty much the same situation. | null | null | 41,803,978 | 41,802,823 | null | [
41804577
] | null | null |
41,804,183 | comment | mrighele | 2024-10-10T22:23:52 | null | Plenty of countries have neither checks and balances nor rule of law. | null | null | 41,804,063 | 41,802,823 | null | [
41806151
] | null | null |
41,804,184 | comment | JumpCrisscross | 2024-10-10T22:24:28 | null | > <i>being disingenuous if you are asserting financials are the only aspect to Twitter's value</i><p>Straw man. We’re talking about the value of X, the company, not Twitter, the community. The former is what Fidelity and Musk own; the latter is what X ostensibly controls, but we’re getting into WeWork-style Narnia metrics when we start community adjusting numbers.<p>> <i>given the opportunity to purchase Twitter - what would someone pay for it?</i><p>Not the purchase price! X’s minority holders have offered at a 50%+ discount. Nothing trading. The banks will sell you the <i>loans</i> at a haircut. Nothing trading.<p>We have a testably falsifiable level, and it’s somewhere below half what Musk paid. (Where, we don’t know, because the bonds are saying the equity is worthless while there are buyers of the equity at a positive price.) | null | null | 41,803,402 | 41,801,795 | null | null | null | null |
41,804,185 | story | flykespice | 2024-10-10T22:24:32 | Ktor 3.0 Is Now Available with New Features and Improved Performance | null | https://blog.jetbrains.com/kotlin/2024/10/ktor-3-0/ | 2 | null | 41,804,185 | 0 | null | null | null |
41,804,186 | comment | Capricorn2481 | 2024-10-10T22:24:33 | null | And where did they break the law? | null | null | 41,804,115 | 41,802,823 | null | null | null | null |
41,804,187 | comment | null | 2024-10-10T22:24:36 | null | null | null | null | 41,803,983 | 41,803,983 | null | null | true | null |
41,804,188 | comment | nobody9999 | 2024-10-10T22:24:39 | null | >These posts are tiresome. They all boil down to "my view should be the middle".<p>I don't claim that my views are, or should be, "the middle".<p>In fact, I didn't share my views <i>at all</i>.<p>Rather, I contrasted the US Republican Party with the US Democratic Party through the lens of the political spectrum.<p>Perhaps <i>you</i> think your views are "middle-of-the-road" and maybe they are. I have no idea what you think or believe.<p>But making the claim you did added absolutely nothing to the discussion, nor did it address anything I wrote. And more's the pity. | null | null | 41,676,538 | 41,672,599 | null | null | null | null |
41,804,189 | comment | fovc | 2024-10-10T22:25:05 | null | It’s Python. Does L1 matter at all? I assume anything you’re accessing is behind a few pointers and __dict__ accesses anyway.<p>For me it’s mostly about .attribute being more in line with the rest of the language. Kwargs aside, I find overuse of dicts to clunky in Python | null | null | 41,804,093 | 41,801,415 | null | [
41804250,
41804692
] | null | null |
41,804,190 | comment | debacle | 2024-10-10T22:25:13 | null | > I don’t think websites were ever intended to be made only by “web professionals.”<p>I absolutely agree with this, in both directions - the tools we have kind of suck if the web WAS meant for professionals, but also that I remember learning HTML from tutorials in 1995, and back then there wasn't much of a difference between a good website or a great website except that a good website used a table based layout and didn't have prev/next navigation. | null | null | 41,801,334 | 41,801,334 | null | null | null | null |
41,804,191 | comment | jauntywundrkind | 2024-10-10T22:25:19 | null | I really don't get the "Twitter was always terrible" crowd.<p>Tech Twitter brought tons of great interesting citations & references to discussions. Even amid the rest of Twitter, there was such a massive global brain at work: the associations & connections people would make was amazing. It's remarkable to me that such rank cynicism often goes unchecked. I pity those who so deeply missed out, who didn't see or grasp the amazing power of a good network of follows. | null | null | 41,802,624 | 41,801,795 | null | [
41805221
] | null | null |
41,804,192 | comment | carom | 2024-10-10T22:25:28 | null | Can someone explain the "restartable function" aspect of the proposal? I'm not familiar with that term and I don't see an explanation in the proposal or blog. | null | null | 41,786,924 | 41,786,924 | null | [
41804443,
41804425
] | null | null |
41,804,193 | comment | tptacek | 2024-10-10T22:25:33 | null | I feel like I've had this debate many, many times, and it always ends in the same place: I'm willing to concede that there are a subset of correctness/reliability bugs that Rust's error handling and type system mitigate, but not that any of those bugs are material to security, which is what most people are talking about when the discussion turns to memory safety. And, of course, Rust admits concurrency bugs too! We just ran into a huge one. | null | null | 41,802,678 | 41,791,773 | null | [
41805645
] | null | null |
41,804,194 | comment | jjulius | 2024-10-10T22:25:37 | null | The post you're responding to says that they shouldn't break the law. Emergency vehicles are allowed, <i>by written law</i>, to exceed the speed limit and move through red lights. Here's one, for instance...<p><a href="https://oregon.public.law/statutes/ors_820.300" rel="nofollow">https://oregon.public.law/statutes/ors_820.300</a> | null | null | 41,804,141 | 41,802,823 | null | [
41804289,
41804828
] | null | null |
41,804,195 | comment | drogus | 2024-10-10T22:25:38 | null | That's not the point, though. The author says:<p>> Rust has arrived at the complexity of Haskell and C++, each year requiring more knowledge to keep up with the latest and greatest. Go was designed as the antidote to this kind of endlessly increasing language surface area.<p>Yes, Rust learning curve is much steeper and the "language surface area" is big, but it's not changing much in recent years. Go getting generics is much bigger change than anything that Rust got in a long while. | null | null | 41,794,034 | 41,791,773 | null | null | null | null |
41,804,196 | comment | pentagrama | 2024-10-10T22:25:41 | null | Thank you but will be too difficult change browser. They usually have the whole Google ecosystem, for example password autofill on Android is not good with Firefox pass manager, with Chrome the UX is good. Stuff like that. I know is sad but I don't want to create issues on they digital lives. | null | null | 41,802,309 | 41,757,178 | null | null | null | null |
41,804,197 | comment | wizzwizz4 | 2024-10-10T22:26:01 | null | Not all emergency vehicles are the government. | null | null | 41,804,141 | 41,802,823 | null | null | null | null |
41,804,198 | comment | TechDebtDevin | 2024-10-10T22:26:07 | null | Been rolling my own auth today for luls. Thanks for this :) | null | null | 41,803,206 | 41,801,883 | null | null | null | null |
41,804,199 | comment | null | 2024-10-10T22:26:15 | null | null | null | null | 41,804,143 | 41,804,143 | null | null | true | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.