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,808,800 | comment | pabs3 | 2024-10-11T12:13:23 | null | At a minimum, cars have LTE modems in them for telemetry and other things, those alone are complex enough to need security updates.<p>Next up are the wireless unlock systems, if there was a security problem there, anyone could potentially steal your car. And there are issues with these systems, relay attacks and the like.<p>Then the infotainment systems parse complex data like videos, and need network connections to download video, games etc | null | null | 41,808,465 | 41,795,075 | null | null | null | null |
41,808,801 | story | hitechhub | 2024-10-11T12:13:53 | The Complete 2024 Guide for Your Website Redesign | Did you know that half of all internet users believe a website’s design is crucial for shaping a strong brand image? If your site is outdated or doesn’t function well across different devices, it can negatively impact how visitors perceive your brand. It may even lead them to question the trustworthiness of your business.<p>When planning a website redesign, focusing on key performance metrics is crucial to ensure that the new design addresses existing issues and enhances overall effectiveness. Here are the current website performance metrics you should prioritize -<p>https://hitechhub.co/blog/website-redesign | null | 2 | null | 41,808,801 | 0 | [
41808810
] | null | null |
41,808,802 | comment | sys_64738 | 2024-10-11T12:13:58 | null | Isn't this the old trick MICROS~1 pulled trying to claim IE was part of the base OS. They cooked it so that IE was the DNS of the filemanager when upgrading to IE4. | null | null | 41,801,331 | 41,801,331 | null | null | null | null |
41,808,803 | comment | null | 2024-10-11T12:14:12 | null | null | null | null | 41,808,790 | 41,808,790 | null | null | true | null |
41,808,804 | comment | motoboi | 2024-10-11T12:14:16 | null | You are probably familiar with a document called OAuth Threat model.<p>In that document, refresh token rotation is preferred, but it also addresses the obvious difficulty in clustered environments: <a href="https://datatracker.ietf.org/doc/html/rfc6819#section-5.2.2.3" rel="nofollow">https://datatracker.ietf.org/doc/html/rfc6819#section-5.2.2....</a> | null | null | 41,805,524 | 41,801,883 | null | null | null | null |
41,808,805 | comment | rsynnott | 2024-10-11T12:14:28 | null | > having spent tons of nuclear fuel<p>It will be primarily gas, maybe some coal. The nuclear thing is largely a fantasy; the lead time on a brand new nuclear plant is realistically a decade, and it is implausible that the bubble will survive that long. | null | null | 41,806,743 | 41,805,446 | null | null | null | null |
41,808,806 | comment | trq01758 | 2024-10-11T12:14:29 | null | I guess that "properly mounted" may be a problem for a lot of people. According to operating manual measurements should be taken at heart level with 30±5 cm distance between top of the seat and top of the table. Outside of that ±5 cm difference you may get inaccurate results. | null | null | 41,801,676 | 41,799,324 | null | null | null | null |
41,808,807 | comment | metaltyphoon | 2024-10-11T12:14:29 | null | This is almost as bad as saying .NET is windows only. | null | null | 41,806,376 | 41,787,041 | null | null | null | null |
41,808,808 | story | geox | 2024-10-11T12:14:35 | Drone discovers new Hawaiian plant species | null | https://phytokeys.pensoft.net/article/130241/list/10/ | 2 | null | 41,808,808 | 0 | null | null | null |
41,808,809 | comment | 7thpower | 2024-10-11T12:14:37 | null | >> Even his code in pre-PayPal days was amateurish.<p>..Okay?<p>Calling Elon Musk an ’idiot’ in a non-ironic way tells us you’re not being objective and contributing to a rational discussion. | null | null | 41,807,581 | 41,805,706 | null | [
41809980
] | null | null |
41,808,810 | comment | null | 2024-10-11T12:14:48 | null | null | null | null | 41,808,801 | 41,808,801 | null | null | true | null |
41,808,811 | comment | maxdamantus | 2024-10-11T12:14:50 | null | > If you allow arbitrary values, what's the difference between a record and a frozen object?<p>The behaviour of equality. Frozen objects are already considered to have unique identities, in that `Object.freeze({}) !== Object.freeze({})` even though both objects are otherwise indistinguishable. This behaviour can't be changed and it relates to the fact that `Object.freeze(a) === a`.<p>> I thought that the whole point is to have guaranteed deep immutability<p>Not really. The whole point apparently according to most people[0] is to have composite values that don't have unique identities, so they fit in with all the existing comparison operations (eg, `===`, `Map`, `indexOf`, `includes`) just as you can do with strings.<p>Immutability is a prerequisite for this, since if `a` and `b` are mutable, mutating `a` might be different to mutating `b`. Thinking again about strings, equality works because strings are immutable:<p><pre><code> const foo = "foo", bar = "bar";
const a = foo + bar;
const b = foo + bar;
a === b; // true
</code></pre>
Implementations will typically use different underlying memory allocations for these strings[1], but at a language level they are considered to be the same value. If it were possible to modify one of the strings (but not the other) using `a[0] = "x";` it would mean `a` and `b` are not equivalent so should not be considered equal.<p>As explained here[2], deep immutability is not necessary for this behaviour.<p>In my opinion guaranteed "deep immutability" is not generally useful/meaningful (if you have a particular use case, feel free to share it). In theory it's not possible to enforce "deep immutability" because someone can always refer to something mutable, whether that's an object reference or a number indexing a mutable array.<p>If you really do want something that guarantees a certain notion of "deep immutability", this concept seems somewhat orthogonal to records/tuples, since there are existing values (eg, strings and numbers) that should be considered deeply immutable, so you'd expect to have a separate predicate[3][4] for detecting this, which would be able to effectively search a given value for object references.<p>In case you're interested I tried to summarise the logic behind the rejection of this behaviour[5] (which I disagree with), but it's very much a TLDR so further reading of linked issues would be required to understand the points made. Interestingly, this post is on an issue raised by the odd person that <i>actually tried to use the feature</i> and naturally ran into this restriction.<p>Sorry for this massive wall of text, but I think it's hard to capture the various trains of thought concisely.<p>[0] <a href="https://github.com/tc39/proposal-record-tuple/issues/387#issuecomment-1953271467">https://github.com/tc39/proposal-record-tuple/issues/387#iss...</a><p>[1] <a href="https://github.com/tc39/proposal-record-tuple/issues/292#issuecomment-1080383876">https://github.com/tc39/proposal-record-tuple/issues/292#iss...</a><p>[2] <a href="https://github.com/tc39/proposal-record-tuple/issues/292#issue-1124661969">https://github.com/tc39/proposal-record-tuple/issues/292#iss...</a><p>[3] <a href="https://github.com/tc39/proposal-record-tuple/issues/292#issuecomment-1082557590">https://github.com/tc39/proposal-record-tuple/issues/292#iss...</a><p>[4] <a href="https://github.com/tc39/proposal-record-tuple/issues/206">https://github.com/tc39/proposal-record-tuple/issues/206</a> (I believe sjrd (GP) earlier independently came up with the same function name and behaviour somewhere in this thread, but GitHub seems to be failing to load it)<p>[5] <a href="https://github.com/tc39/proposal-record-tuple/issues/390#issuecomment-2348971939">https://github.com/tc39/proposal-record-tuple/issues/390#iss...</a> | null | null | 41,807,390 | 41,787,041 | null | [
41810644
] | null | null |
41,808,812 | comment | horns4lyfe | 2024-10-11T12:15:00 | null | You honestly believe that DARPA would have given us the Tesla model Y? | null | null | 41,807,574 | 41,805,706 | null | [
41810561,
41808967
] | null | null |
41,808,813 | comment | awiesenhofer | 2024-10-11T12:15:24 | null | See america? That's why you need unions! | null | null | 41,791,570 | 41,791,570 | null | null | null | null |
41,808,814 | comment | codingdave | 2024-10-11T12:15:31 | null | Stuff is getting done. Every day. By the legions of coders who do not work in SV, who churn out boring LOB CRUD apps in corporations across the world, day after day. The hourly consultant working for gigantor IT firms, one 6 month coding gig at a time, doing the same thing as last time. The ones whose jobs many HN users would never want, but who are living their lives just fine going to work and slinging some code.<p>HN shows a slice of the industry. And people caught in the startup and FAANG worlds sometimes forget that is all it is - a slice. An interesting slice where people do creative things and sometimes make bank doing it, but just a slice nonetheless.<p>So it is fine that this slice of the industry keeps trying new things - that is how innovation happens, and over the long run it benefits the large silent mass of software folks who are out there just doing their jobs. | null | null | 41,808,655 | 41,808,655 | null | null | null | null |
41,808,815 | comment | freehorse | 2024-10-11T12:15:32 | null | Anecdotally, when negative scenarios are probable, a strategy of the medical system is hiding them from the patient (until more progress is done, at least). I wonder if that is still a common occurence in the first place, and if it is, I wonder if it is really backed up by scientific evidence of this improving prognosis and outcome of surgeries (though in cases like OP's this seems sort of irrelevant anyway, same with types of terminal cancer), or it is just part of the convenience of the medical system, or part of the medical professionals overworking and not having time to explain and have a more involved discussion with patients (or maybe also not having people with the proper psychological training assigned to actually do that and guiding patients to face the death prospect). | null | null | 41,786,768 | 41,786,768 | null | [
41810094
] | null | null |
41,808,816 | story | levzettelin | 2024-10-11T12:15:53 | C Tutorial for C++ programmers [10 min read] | null | https://uva-cs.github.io/pdr/tutorials/09-c/index.html | 2 | null | 41,808,816 | 0 | null | null | null |
41,808,817 | comment | smallerfish | 2024-10-11T12:16:22 | null | >Radiation exposure. People who have had radiation to the head are at higher risk for brain tumors. Most often this exposure comes from radiation therapy used to treat another type of cancer, like leukemia during childhood.<p>Notably, dental xrays have been linked with tumors. <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3396782/" rel="nofollow">https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3396782/</a><p>The US is the "largest market" for dental xrays: <a href="https://www.grandviewresearch.com/industry-analysis/dental-x-ray-market" rel="nofollow">https://www.grandviewresearch.com/industry-analysis/dental-x...</a> | null | null | 41,804,408 | 41,786,768 | null | null | null | null |
41,808,818 | comment | aguaviva | 2024-10-11T12:16:26 | null | <i>I don't know if the Russians are just as jingoistic and corrupt,</i><p>Short story: current regime in the Russian Federation quite definitely is, may more so in fact, and has fascist, revanchist, genocidal ideology to boot. You may want to look further into its history (and that of the Russian/Soviet empires, which it sees itself as the natural successor to), and into the writings/thinking of the folks the helm of that regime in more detail sometime.<p><i>Sabotaging negotiations in Turkey</i><p>That's a myth, as you will easy verify for yourself by doing adequate research into the topic.<p>Forget about Dick Cheney. Instead look into who's been drip-feeding you false narratives like the above, and why. | null | null | 41,808,395 | 41,807,681 | null | null | null | null |
41,808,819 | comment | casenmgreen | 2024-10-11T12:16:30 | null | That "wizard" is completely bogus. It's a rigged game.<p>It <i>assumes</i> mutuality of obligation, that the contractor is required to accept further work from the client, and the client is expected to provide that work, a key requirement to prove someone is an employee.<p>The fact that this is so gives a good sense of how IR35 is being used by the State. | null | null | 41,808,348 | 41,764,903 | null | null | null | null |
41,808,820 | comment | horns4lyfe | 2024-10-11T12:16:33 | null | I prefer that to the CIA having a direct line to the top of the platform and free reign to use it for propaganda, yes. | null | null | 41,807,612 | 41,805,706 | null | null | null | null |
41,808,821 | story | hlynurd | 2024-10-11T12:16:56 | MLE-Bench: Evaluating Machine Learning Agents on Machine Learning Engineering | null | https://openai.com/index/mle-bench/ | 3 | null | 41,808,821 | 0 | null | null | null |
41,808,822 | comment | piva00 | 2024-10-11T12:17:00 | null | No. I'm claiming that a compromised peace in the Donbas with the annexation of territories of the Donbas and Crimea will further strengthen that if you have nukes you have a massive lever to use against non-nuclear nations. And Russia wants the Donbas, Crimea and the land bridge all the way around the Sea of Azov, that's a massive plot of land.<p>You are only considering a narrow point in time, think ahead in terms of 20-50 years the repercussions of allowing an annexation to happen uncontested.<p>Right now it's Ukraine, let's say next is Iran acquiring nuclear weapons over the next 20 years and moving towards Basra in Iraq + Kuwait for their oil fields, in this scenario they are a nuclear power, arming themselves for 20 years (and they already have ballistic missiles), to avoid a nuclear escalation between Iran and USA + Israel a negotiated peace happens. The Saudis see that happening and now they feel the need to arm themselves with a nuclear weapon, just in case Iran thinks of continuing this campaign.<p>Multiply this across many other nations under similar low-level confrontations, African nations fighting for water sources, one of them arms themselves with a nuclear weapon (let's say Sudan) to have leverage to control a massively important water source, what's going to stop others around it to not arm themselves (like Eritrea) to not get invaded?<p>It's a spiral, the moment you allow a nuclear power to use that status to force the hand of an opposing nation at war you open a can of worms. Since 1945 the world has been trying to control proliferation through other means, wars of annexation have been shunned, you really don't want that to come back into a world armed with nuclear weapons.<p>I don't have an answer, I don't think anyone does. Putin has changed the world with this invasion, you are choosing to vote for Trump on a flimsy argument, you don't even know what the fuck he will do since he's a massive liar. On top of that you're jeopardising your country's democracy based on wishful thinking of what you project Trump will do, it's all from your head, not from his words. | null | null | 41,808,753 | 41,807,681 | null | [
41809226,
41808889
] | null | null |
41,808,823 | comment | bastawhiz | 2024-10-11T12:17:06 | null | There's already a precedent of ownership on transferred objects. Why not have an `.unsafe(cb)` method on the structs? Error if you don't have ownership, then use the callback to temporarily acquire ownership. At least to me, it's more intuitive and seems idiomatic. | null | null | 41,808,182 | 41,787,041 | null | null | null | null |
41,808,824 | comment | cglace | 2024-10-11T12:17:12 | null | That's not necessarily true. There is an ecosystem for breaking down wood, and my house is framed in wood. | null | null | 41,808,757 | 41,806,629 | null | [
41809067
] | null | null |
41,808,825 | story | elsewhen | 2024-10-11T12:17:27 | The likeliest outcomes from the Google antitrust trial | null | https://www.platformer.news/google-antitrust-trial-search-remedies-breakup-chrome-android/ | 2 | null | 41,808,825 | 0 | [
41808918
] | null | null |
41,808,826 | comment | silexia | 2024-10-11T12:17:34 | null | HN is packed now with Elon Musk haters after the mass firings at Twitter. Anything related to him or his companies has long lists of negative comments. Bitter grapes?<p>Even if Elon cured cancer, there would be haters for his politics and business approach. | null | null | 41,805,706 | 41,805,706 | null | null | null | null |
41,808,827 | comment | bsx | 2024-10-11T12:17:34 | null | <a href="https://github.com/ProtonMail/proton-bridge">https://github.com/ProtonMail/proton-bridge</a> | null | null | 41,805,418 | 41,798,359 | null | null | null | null |
41,808,828 | comment | toofy | 2024-10-11T12:17:35 | null | i hope i didn’t come across as if im “debating” something, apologies if it did. | null | null | 41,808,729 | 41,804,460 | null | null | null | null |
41,808,829 | comment | ericpauley | 2024-10-11T12:17:36 | null | These are all costs of any server hosting business. Other commenters have already shown that $2/hr for a racked 1U server at 400W is perfectly sustainable. | null | null | 41,808,406 | 41,805,446 | null | null | null | null |
41,808,830 | comment | horns4lyfe | 2024-10-11T12:17:42 | null | What useful product did Enron ever build? | null | null | 41,806,726 | 41,805,706 | null | [
41809325,
41809407
] | null | null |
41,808,831 | comment | freehorse | 2024-10-11T12:18:01 | null | > it took me a couple of months to learn to walk and chew gum at the same time<p>If I may ask, I am curious, how was this experience of not being able to do this and learning to do this again? We often overlook how complex doing such two things at the same time is because we master such skills quite early in life. | null | null | 41,803,790 | 41,786,768 | null | [
41808876
] | null | null |
41,808,832 | comment | forinti | 2024-10-11T12:18:19 | null | Outside the EU, Greece could devalue the Drachma. | null | null | 41,806,910 | 41,799,016 | null | null | null | null |
41,808,833 | comment | rsynnott | 2024-10-11T12:18:24 | null | Does "GFC" stand for "global financial crisis" here? It seems implausible that the collapse of the LLM bubble will cause one; it might have a pretty dramatic impact on the markets, but it's unclear how it would cause the sort of systemic failure that we saw in the noughties. | null | null | 41,806,043 | 41,805,446 | null | null | null | null |
41,808,834 | story | Obrothers1 | 2024-10-11T12:18:49 | null | null | null | 1 | null | 41,808,834 | null | null | null | true |
41,808,835 | comment | casenmgreen | 2024-10-11T12:19:06 | null | Inside IR35 does not in fact exist.<p>Every contracting advert which lists inside IR35 actually means "umbrella company". Agencies in my experience do not in fact even understand there is a difference.<p>This means you cannot use your company, or the accountant you've had for decades, and you must now pay a third party (the umbrella), and you have little choice about the umbrella - the agency will require you to use one of the two or three they present, with whom they have agreements and get a percentage.<p>It's a rigged game. Everyone is dipping their fingers in the pie, and the person at the end who gets it in the pants is the guy doing the actual work. | null | null | 41,808,759 | 41,764,903 | null | [
41808928
] | null | null |
41,808,836 | story | Obrothers1 | 2024-10-11T12:19:16 | null | null | null | 1 | null | 41,808,836 | null | null | null | true |
41,808,837 | comment | bjornsing | 2024-10-11T12:19:24 | null | > If you're barely breaking even at $2 then immediately selling them would seem like the only sensible option (depreciation alone is significantly higher than the cost power of running a H100 24x365 at 100% utilization).<p>If you can then probably yes. But why would someone else buy them (at the price you want), when they can rent at $2 per hour instead? | null | null | 41,808,316 | 41,805,446 | null | [
41809017
] | null | null |
41,808,838 | comment | umanwizard | 2024-10-11T12:19:31 | null | There are lots of reasons to run Linux. Not everyone who runs it is a free software ideologue. | null | null | 41,804,539 | 41,799,068 | null | null | null | null |
41,808,839 | comment | soco | 2024-10-11T12:20:01 | null | People: coins are great because everybody can create them. FBI: creates coins. People: not like that | null | null | 41,804,123 | 41,802,823 | null | null | null | null |
41,808,840 | comment | yjftsjthsd-h | 2024-10-11T12:20:14 | null | Of course wired network is almost always faster, more reliable, and easier (no selecting ssid, no password, just plug in and it works), but it's not always an option; in an apartment you may not be able to do wired, or placement of the machine can render it impractical. | null | null | 41,808,401 | 41,775,641 | null | null | null | null |
41,808,841 | comment | jt2190 | 2024-10-11T12:20:23 | null | > Support though is usually based on time and issues that the customer brings to you.<p>You’ve just identified a risk to your contracting business: Under these (unclear) terms the customer can dictate an infinite amount of support hours for a fixed price. As a business owner you need to protect your profitability by ensuring that there are clear terms putting controls and limits in place. | null | null | 41,808,616 | 41,764,903 | null | null | null | null |
41,808,842 | comment | shikon7 | 2024-10-11T12:20:47 | null | This was introduced a few years ago in the Swiss retailer chain Migros. The span between the sell-by date and the use-by date (typically around 1/10-1/5 of the entire lifespan of the product) would give the consumer the safety that the product was usable for a few days without checking the dates.<p>Without it, you need to check the date of every perishable product you buy if you want to consume it even the next day. If the store forgot to remove the product for a day (which happens regularly), you would buy a potentially harmful product if you don't always check the date.<p>On the positive side, the food can be sold regularly just until its expiry date, preventing food waste. | null | null | 41,765,006 | 41,765,006 | null | null | null | null |
41,808,843 | comment | floydnoel | 2024-10-11T12:20:53 | null | personally, i've been loving the notification summaries. they really are one of the best applications of local LLMs | null | null | 41,806,684 | 41,806,684 | null | null | null | null |
41,808,844 | comment | MiddleEndian | 2024-10-11T12:20:53 | null | Yeah it's at the top of my list for a Premiere (and After Effects) replacement. Planning to check it out soon-ish. | null | null | 41,803,095 | 41,801,331 | null | null | null | null |
41,808,845 | story | santiviquez | 2024-10-11T12:21:02 | null | null | null | 1 | null | 41,808,845 | null | null | null | true |
41,808,846 | comment | IshKebab | 2024-10-11T12:21:07 | null | Yeah I agree that is true for most people, but there are also people who <i>do</i> want to code their own website from scratch, and for them this is a really good introduction. | null | null | 41,808,609 | 41,801,334 | null | null | null | null |
41,808,847 | comment | jdietrich | 2024-10-11T12:21:22 | null | A plastic pellet is typically 3-5mm in diameter. I think I'd notice that in my food. Even if I did enjoy swallowing fish guts whole, a plastic pellet is just going to pass straight through my digestive system.<p>Additives can leach out of plastics and enter the food chain, but pellets lost at sea are a completely insignificant factor because the total volume of waste produced by this route is so small. The majority of marine plastic is either post-consumer waste dumped in rivers in developing countries, or fishing gear that is lost at sea. If you're really worried about this, then you really need to take it up with the government of the Philippines and the global fishing industry.<p><a href="https://ourworldindata.org/ocean-plastics">https://ourworldindata.org/ocean-plastics</a> | null | null | 41,808,751 | 41,806,629 | null | [
41809608,
41809042
] | null | null |
41,808,848 | comment | fhars | 2024-10-11T12:21:28 | null | I think this is what they are insinuating with the "Hot the Bubble Burst" in the headline. You are not expected to make money if you have invested in a bursting bubble. | null | null | 41,807,088 | 41,805,446 | null | null | null | null |
41,808,849 | comment | tomrittervg | 2024-10-11T12:21:44 | null | The vulnerability did require JavaScript to trigger.<p>I think it would be a labor of love and craftsmanship to exploit a content process today without using JavaScript. | null | null | 41,797,037 | 41,796,030 | null | [
41809773
] | null | null |
41,808,850 | comment | flutas | 2024-10-11T12:21:56 | null | They stall out blocking traffic (the most recent example was blocking the VPs motorcade). | null | null | 41,806,139 | 41,805,706 | null | null | null | null |
41,808,851 | comment | enragedcacti | 2024-10-11T12:21:57 | null | Boston Dynamics' humanoid robots thus far have been R&D platforms so the cost isn't all that important. That said, they released a quick teaser for the next gen of Atlas which seems to be all electric.<p><a href="https://www.youtube.com/watch?v=29ECwExc-_M" rel="nofollow">https://www.youtube.com/watch?v=29ECwExc-_M</a> | null | null | 41,808,071 | 41,805,706 | null | null | null | null |
41,808,852 | story | rntn | 2024-10-11T12:22:05 | Overconfidence in Climate Overshoot | null | https://www.nature.com/articles/s41586-024-08020-9 | 1 | null | 41,808,852 | 0 | null | null | null |
41,808,853 | comment | yjftsjthsd-h | 2024-10-11T12:22:07 | null | Oh that's clever - not disabling/forcing it outright, but preferring one frequency over the other(s). | null | null | 41,808,075 | 41,775,641 | null | null | null | null |
41,808,854 | comment | pfdietz | 2024-10-11T12:22:15 | null | And by transphobia. | null | null | 41,808,409 | 41,760,971 | null | null | null | null |
41,808,855 | comment | bryanlarsen | 2024-10-11T12:23:14 | null | It's a classic short-term vs long-term tradeoff. Letting Russia get away with an invasion of Ukraine decreases the risk of a nuclear war in the next couple of years but increases it in the following decades. I personally believe the long-term thinkers have the better argument | null | null | 41,808,753 | 41,807,681 | null | null | null | null |
41,808,856 | story | Alfagun74 | 2024-10-11T12:23:15 | History of the Browser User-Agent String (2008) | null | https://webaim.org/blog/user-agent-string-history/ | 4 | null | 41,808,856 | 0 | [
41808899
] | null | null |
41,808,857 | comment | 38 | 2024-10-11T12:23:22 | null | a basic GET request doesn't mean I am smart, but you go ahead | null | null | 41,806,568 | 41,804,555 | null | null | null | null |
41,808,858 | comment | amelius | 2024-10-11T12:23:31 | null | What extra useful information can you get from continuous BP measurement compared to once or twice daily measurement? | null | null | 41,800,122 | 41,799,324 | null | [
41809340
] | null | null |
41,808,859 | comment | danpalmer | 2024-10-11T12:23:43 | null | But closed models are clearly slowing. It seems reasonable to expect that as open weight models reach the closed weight model sizes they’ll see the same slowdown. | null | null | 41,808,741 | 41,805,446 | null | null | null | null |
41,808,860 | comment | IshKebab | 2024-10-11T12:23:51 | null | HTML for People is <i>waaaay</i> more approachable than this. My wife could follow the HTML for People tutorial. It shows you how to create a real web page in a real browser without first bogging you down in coding details.<p>The MDN tutorial is talking about img alt attributes before you even create a single .html file! That's how to put people off. | null | null | 41,803,831 | 41,801,334 | null | null | null | null |
41,808,861 | story | null | 2024-10-11T12:23:53 | null | null | null | null | null | 41,808,861 | null | [
41808862
] | true | null |
41,808,862 | comment | null | 2024-10-11T12:23:53 | null | null | null | null | 41,808,861 | 41,808,861 | null | null | true | null |
41,808,863 | comment | rioppondalis | 2024-10-11T12:24:13 | null | Thank you! I'm new here. Then can I repost the same? Or should I submit again? | null | null | 41,807,821 | 41,807,783 | null | [
41809000
] | null | null |
41,808,864 | comment | ckastner | 2024-10-11T12:24:19 | null | > <i>You might as well recoup as much money as you can on it.</i><p>Depending on how fast their value depreciates, selling them might recoup more money then renting them away. And being exposed to 3y of various risks.<p>Selling now at a 40% loss gets you back the equivalent of 60c/h over three years, and without having other costs (DC, power, network, security) and risks. | null | null | 41,808,160 | 41,805,446 | null | null | null | null |
41,808,865 | comment | 7thpower | 2024-10-11T12:24:31 | null | I thought they said they were scrapping the $25k car? | null | null | 41,807,199 | 41,805,706 | null | null | null | null |
41,808,866 | comment | aster0id | 2024-10-11T12:24:36 | null | It's interesting to see that extraversion actually seems to hurt founders | null | null | 41,808,282 | 41,808,282 | null | [
41809133,
41809018
] | null | null |
41,808,867 | comment | yjftsjthsd-h | 2024-10-11T12:24:43 | null | I suspect that either you care about performance and the pi loses badly, or you care about price and the pi 4 loses to... probably other pis, actually. Or used x86 off eBay. Or you care about absolute power consumption and again other pis win. | null | null | 41,808,264 | 41,775,641 | null | null | null | null |
41,808,868 | story | Gablopreneur | 2024-10-11T12:24:45 | Show HN: I made an AI humanizer that does not mess up your text | In the ever evolving world of ... naaah, I can't see it anymore. Everywhere the same phrases, words, and patterns. Sometimes people even leave the GPT-generated ** and the ### characters in the text. I noticed that I immediately distrust any text that looks like copy & paste GPT content.<p>"Are there tools to solve that problem?" I thought.<p>I fired good ol' Google to see if there are any good tools to "humanize" AI content.<p>Let me tell you: There were plenty!<p>But to make a long story short: The first few results on Google were horrible. They add mistakes to your text or mess it up with weird words that even destroy the meaning of your message. All that just to get a 0% AI score from any AI detector. Even ahrefs jumped on the humanizer keyword train and made another mediocre tool. It's all about SEO traffic, I guess?!<p>My last few years circled about plain language and how it helps people understand your message. Simple language builds trust. It converts visitors into customers, into fans.
Plus I've been programming for about 25 years now.
Plus I already did a few things with the GPT API and lots of things with regular expressions and text manipulation.<p>So, this seems like a job for me, right?<p>Two months of trial and error until - EUREKA - behold - yet another humanizer!<p>My humanizer is about a month old now and already gets organic traffic from Google, Reddit, and some AI directories. The traffic has a promising upward trend. The tool attracted more than 3,500 users and 130 paying subscribers, which is insane. I didn't expect a lot, even though I did my SEO homework (as far as I am able to as a dev).<p>How did I do it? A few takeaways:<p>1. Start with a strong main keyword and build your page around it (title tag, headings).<p>2. Look at the top Google results for your keyword and do what they do - just better.<p>3. Create a few easy backlinks on AI directories, but not too fast, or Google thinks you are spam.<p>4. Post your link on social media where people are asking for a solution you provide (Reddit worked best by far. Disclaimer: I have no idea how social media works).<p>5. Free tier! With so many humanizers, you have to convince new users in seconds. Let them try with one click. Limit it fiercely, though. People will abuse it if you let them.<p>6. Ask and beg your first users for feedback. Where do they get stuck? What's weird?<p>7. Analytics! You need to collect data on how users use your tool to make the right next steps.<p>What a ride. And it is just getting started. Thanks for reading my story.<p>Gablo from <a href="https://ai-text-humanizer.com" rel="nofollow">https://ai-text-humanizer.com</a> | https://ai-text-humanizer.com/ | 1 | null | 41,808,868 | 3 | [
41808932
] | null | null |
41,808,869 | comment | IshKebab | 2024-10-11T12:24:56 | null | So? How many people are editing HTML on their phones? | null | null | 41,803,769 | 41,801,334 | null | null | null | null |
41,808,870 | comment | myrmidon | 2024-10-11T12:25:03 | null | I agree that Ukraine was not a nuclear power even while they had warheads on their territory after the USSR fell apart, <i>but</i> I believe it was very feasible for them to become one.<p>Posession is nine tenths of the law, after all-- it would've been quite possible to just lock down a few silos and refuse to hand the weapons over. Russia as a state was highly disrupted at that point, and would've had a hard time opposing this effectively.<p>I'm not disputing that this would've been a <i>very</i> costly move for an already poor nation (in potential economical sanctions and also maintenance of the arsenal itself). Maybe the external political/economical pressure resulting from this would've ripped Ukraine apart some other way.<p>But I'm highly confident that Russia would not have risked annexing territory from an country with a few nuclear ICBM silos. No need even to have full control/launch capability, as long as there is sufficient doubt (on Russias side). | null | null | 41,808,382 | 41,807,681 | null | null | null | null |
41,808,871 | story | mythz | 2024-10-11T12:25:11 | Scalable Server SQLite Apps | null | https://servicestack.net/posts/scalable-sqlite | 2 | null | 41,808,871 | 0 | null | null | null |
41,808,872 | comment | jt2190 | 2024-10-11T12:25:22 | null | If you know today that 5% of your projects have an “infinite downside” (i.e. an “unknown amount of time and resources”) you need to fix your contract to cap that to a reasonable amount. | null | null | 41,807,731 | 41,764,903 | null | null | null | null |
41,808,873 | comment | pfdietz | 2024-10-11T12:25:23 | null | What high flight rate would enable is testing in situ rather than expensively preventing possible failures at the design stage. That is, expend effort on the things that actually fail, rather than things that might fail. It also enables production of the probes on an assembly line. | null | null | 41,808,461 | 41,760,971 | null | [
41809942
] | null | null |
41,808,874 | comment | soco | 2024-10-11T12:25:27 | null | It's difficult for people employed by the same platforms built (by the same people) with the aim to precisely amplify and trap, to recognize that their work is a major factor - if not biggest - in the erosion of whatever we hold dear. Nevertheless, education is suffering as well. | null | null | 41,801,879 | 41,801,271 | null | null | null | null |
41,808,875 | comment | dr-detroit | 2024-10-11T12:25:27 | null | [dead] | null | null | 41,807,165 | 41,799,068 | null | null | null | true |
41,808,876 | comment | ChrisMarshallNY | 2024-10-11T12:25:50 | null | It was basically a joke, but the tumor was in the cerebellum, which controls balance (amongst other, much more important, things).<p>I was in physical therapy for two months, and it was probably two years, before pretty much all traces of the effects were gone.<p>Nowadays (almost 30 years later), it's as if it never happened.<p>I did get a cool haircut from the whole thing. Very punk. | null | null | 41,808,831 | 41,786,768 | null | null | null | null |
41,808,877 | comment | 082349872349872 | 2024-10-11T12:25:54 | null | I didn't get past the register wall, but Steiner and Weiss don't seem to have availed themselves sufficiently of the leisure (σχολή) which Veblen wrote about to have run across Cicero's recommendation wrt "counter-signalling": (...and now for some conspicuous citation)<p><a href="http://www.perseus.tufts.edu/hopper/text?doc=Perseus%3Atext%3A2007.01.0048%3Abook%3D1%3Asection%3D139" rel="nofollow">http://www.perseus.tufts.edu/hopper/text?doc=Perseus%3Atext%...</a><p><a href="http://www.perseus.tufts.edu/hopper/text?doc=Perseus%3Atext%3A2007.01.0048%3Abook%3D1%3Asection%3D140" rel="nofollow">http://www.perseus.tufts.edu/hopper/text?doc=Perseus%3Atext%...</a><p><a href="http://www.perseus.tufts.edu/hopper/text?doc=Cic.%20Off.%201.130" rel="nofollow">http://www.perseus.tufts.edu/hopper/text?doc=Cic.%20Off.%201...</a><p>There's an argument Cicero was just carrying forward into latin Aristotle's admonitions to behave as much with Justice and Temperance, as those favourites of the <i>homo novus</i>, Prudence and Fortitude. | null | null | 41,808,690 | 41,808,690 | null | null | null | null |
41,808,878 | comment | anthk | 2024-10-11T12:25:56 | null | No QL? | null | null | 41,806,296 | 41,805,702 | null | null | null | null |
41,808,879 | comment | madaxe_again | 2024-10-11T12:26:00 | null | He is not, no. | null | null | 41,805,305 | 41,786,768 | null | [
41810437
] | null | null |
41,808,880 | comment | tomrittervg | 2024-10-11T12:26:03 | null | This is true, but adding a sandboxing to browsers has been a huge part in driving up the difficulty/cost of browser exploits, and driving down the frequency of their use.<p>And also we'll pay for a bypass of the wasm sandbox. (Actually, looking at our table, I'm going to try and get the bountyamount upped...) | null | null | 41,807,714 | 41,796,030 | null | null | null | null |
41,808,881 | comment | rioppondalis | 2024-10-11T12:26:10 | null | It should work fine. But the focus (particularly the UI and games) are designed for kids. But still, adults can benefit from it as well. | null | null | 41,807,880 | 41,807,783 | null | null | null | null |
41,808,882 | comment | some1else | 2024-10-11T12:26:33 | null | You might have a problem using CUDA as part of the name, since Nvidia has it trademarked. Maybe you can switch to Scuba if they give you trouble, sounds like a good name for the tool. | null | null | 41,787,547 | 41,787,547 | null | null | null | null |
41,808,883 | comment | dmje | 2024-10-11T12:26:39 | null | Thanks for mentioning ProcessWire. I've heard of it but never looked. Just spent a couple of hours fiddling and I have to say - really like the look of this. Thank you for bringing it to my attention! | null | null | 41,805,887 | 41,805,391 | null | null | null | null |
41,808,884 | story | JumpCrisscross | 2024-10-11T12:26:43 | ULA's second Vulcan rocket lost part of its booster and kept going | null | https://arstechnica.com/space/2024/10/ulas-second-vulcan-rocket-lost-part-of-its-booster-and-kept-going/ | 1 | null | 41,808,884 | 0 | [
41808915
] | null | null |
41,808,885 | comment | jqpabc123 | 2024-10-11T12:26:47 | null | Cut through all the futuristic wanna-be someday stuff and what you've got left in reality is the world's most over priced car company. | null | null | 41,808,357 | 41,808,357 | null | null | null | null |
41,808,886 | comment | jasomill | 2024-10-11T12:27:10 | null | At least he's self-aware:<p><a href="https://www.youtube.com/watch?v=a8BJ8AufQt8" rel="nofollow">https://www.youtube.com/watch?v=a8BJ8AufQt8</a><p>(arguable She-Hulk spoiler) | null | null | 41,803,749 | 41,801,300 | null | null | null | null |
41,808,887 | story | xlinux | 2024-10-11T12:27:18 | How to build an AI search engine (Part 2) | null | https://www.ignorance.ai/p/how-to-build-an-ai-search-engine-83b | 1 | null | 41,808,887 | 0 | null | null | null |
41,808,888 | comment | hulitu | 2024-10-11T12:27:26 | null | > Fisker themselves are among the groups saying they don't know how to get the cars running again.<p>Eh ? Like any gambling game: Insert Coin | null | null | 41,805,932 | 41,802,219 | null | null | null | null |
41,808,889 | comment | bryanlarsen | 2024-10-11T12:27:42 | null | > based on wishful thinking of what you project Trump will do, it's all from your head, not from his words.<p>Since we're off-topic already can I just emphasize this point? Pretty much everybody I know who has or will vote for Trump is like this. For example, I knew one guy who voted for Trump because he thought Trump would legalize marijuana. | null | null | 41,808,822 | 41,807,681 | null | [
41809982
] | null | null |
41,808,890 | comment | pards | 2024-10-11T12:27:51 | null | Yes. It'd be worth paying $16/mo to <i>opt out</i> of MS Teams.<p>Although, it's as much about the culture of the companies that use MS Teams as it is about the software itself. | null | null | 41,807,827 | 41,805,009 | null | null | null | null |
41,808,891 | comment | rioppondalis | 2024-10-11T12:27:57 | null | Yes, the unique aspect is the method we call the "linking language technique." Using a voice-immersive approach, children first hear the word or its introduction in their native language, followed by the same word in the target language. As they progress through different games, they gradually hear more of the target language. This technique is especially effective for kids aged 2-6, as it engages them more deeply and helps them understand the learning process. We've seen remarkable benefits from this method with our own son. | null | null | 41,807,839 | 41,807,783 | null | null | null | null |
41,808,892 | comment | willcipriano | 2024-10-11T12:27:59 | null | I said the political will does not exist (in several different ways) now you say:<p>> Insomuch as "implemented" means using the policy prescriptions (specifically, the job guarantee), there are no countries doing that, but various real world experiments have touched on it.<p>Something that you can't implement, doesn't work. In practice MMT is a smokescreen for politicians to print money for their friends. | null | null | 41,806,758 | 41,780,569 | null | [
41808944
] | null | null |
41,808,893 | comment | null | 2024-10-11T12:28:07 | null | null | null | null | 41,806,920 | 41,801,271 | null | null | true | null |
41,808,894 | story | bookofjoe | 2024-10-11T12:28:12 | Porch Pirates Are Stealing AT&T iPhones Delivered by FedEx | null | https://www.wsj.com/business/logistics/porch-pirates-att-iphone-fedex-279ff419 | 3 | null | 41,808,894 | 1 | [
41808896,
41808898
] | null | null |
41,808,895 | story | rioppondalis | 2024-10-11T12:28:27 | null | null | null | 1 | null | 41,808,895 | null | null | null | true |
41,808,896 | comment | bookofjoe | 2024-10-11T12:28:33 | null | <a href="https://www.wsj.com/business/logistics/porch-pirates-att-iphone-fedex-279ff419?st=aFfd51&reflink=desktopwebshare_permalink" rel="nofollow">https://www.wsj.com/business/logistics/porch-pirates-att-iph...</a> | null | null | 41,808,894 | 41,808,894 | null | null | null | null |
41,808,897 | comment | Hackbraten | 2024-10-11T12:28:45 | null | I feel reluctant about mocking types I don’t own, and prefer small, tailored abstractions instead:<p><pre><code> from datetime import datetime, timedelta
def f(now = datetime.now):
timestamp = now()
future = timestamp + timedelta(seconds=1)
return timestamp.time() < future.time()
def mockdt():
return datetime(2024, 10, 3, 23, 59, 59)
assert f(mockdt)
</code></pre>
Admittedly, this approach adds _some_ noise to the function signature. On the other hand, it feels more honest. It makes it unmistakably clear that this API relies on, and uses, some external state.<p>Also, this approach scales poorly with the number of dependencies, and that’s a good thing. If `f` were to also depend on a `db_connection` in addition to `datetime.now`, then this pattern automatically alerts the API designer that it might be time to redesign `f`. | null | null | 41,807,761 | 41,801,415 | null | null | null | null |
41,808,898 | comment | null | 2024-10-11T12:29:21 | null | null | null | null | 41,808,894 | 41,808,894 | null | null | true | null |
41,808,899 | comment | null | 2024-10-11T12:29:49 | null | null | null | null | 41,808,856 | 41,808,856 | null | null | true | null |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.