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,800,300 | comment | seanlinehan | 2024-10-10T16:08:17 | null | Spot on.<p>I was an early eng and first VP of Product at Flexport. Global logistics is inherently complicated and involves coordinating many disparate parties. To complete any step in the workflow, you're generally taking in input data from a bunch of different companies, each of which have varying formats and quality of data. A very challenging context if your goal is process automation.<p>The only way to make progress was exactly the way you described. At each step of the workflow, you need to design at least 2 potential resolution pathways:<p>1. Automated<p>2. Manual<p>For the manual case, you have to actually build the interfaces for an operator to do the manual work and encode the results of their work as either:<p>1. Input into the automated step<p>2. Or, in the same format as the output of the automated case<p>In either case, this is precisely aligned with your "reuinifying divergent paths" framing.<p>In the automated case, you actually may wind up with N different automation pathways for each workflow step. For an example at Flexport: if we needed to ingest some information from an ocean carrier, we often had to build custom processors for each of the big carriers. And if the volume with a given trading partner didn't justify that investment, then it went to the manual case.<p>From the software engineering framing, it's not that different from building a micro-services architecture. You encapsulate complexity and expose standard inputs and outputs. This avoids creating an incomprehensible mess and also allows the work to be subdivided for individual teams to solve.<p>All that said – doing this in practice at a scaling organization is tough. The micro-services framing is hard to explain to people who haven't internalized the message.<p>But yeah, 100% automation is a wild-goose chase. Maybe you eventually get it, maybe not. But you have to start with the assumption that you won't or you never will. | null | null | 41,798,250 | 41,765,594 | null | null | null | null |
41,800,301 | comment | null | 2024-10-10T16:08:24 | null | null | null | null | 41,800,285 | 41,800,285 | null | null | true | null |
41,800,302 | comment | deepmacro | 2024-10-10T16:08:26 | null | The idea was to have a more linear way to express your thoughts and adding calculations. Another big problem for me was that in excel when you want to
create various plots for the same multi-variate problem you have to create a ton of copies of your data and formula.<p>For sharing files, it could be as simple as sharing a text file. You can also imagine a future where you create something and you only share the nice looking
html view that is still interactive.<p>Running locally? not a problem, I already tested packaging this into a OSX app and it was like 4MB and has the same functionalities. | null | null | 41,800,168 | 41,798,477 | null | [
41801634
] | null | null |
41,800,303 | comment | lupusreal | 2024-10-10T16:08:29 | null | All ads are psychological warfare being waged by corporations against the public. They ruthlessly exploit human psychology to sell product. | null | null | 41,794,522 | 41,784,287 | null | null | null | null |
41,800,304 | comment | int_19h | 2024-10-10T16:08:30 | null | The interesting part here is /lj/ vs /lʲj/. | null | null | 41,796,194 | 41,787,647 | null | [
41803153
] | null | null |
41,800,305 | comment | stevenalowe | 2024-10-10T16:08:43 | null | ...is a false dichotomy | null | null | 41,799,793 | 41,799,793 | null | [
41800850
] | null | null |
41,800,306 | comment | null | 2024-10-10T16:08:58 | null | null | null | null | 41,800,114 | 41,800,114 | null | null | true | null |
41,800,307 | story | drak0n1c | 2024-10-10T16:09:00 | Anduril introduces Bolt and Bolt-M | null | https://www.anduril.com/bolt | 5 | null | 41,800,307 | 0 | [
41800425
] | null | null |
41,800,308 | comment | hn72774 | 2024-10-10T16:09:04 | null | That's a good point. Hardware + software seems a lot harder than just software too. | null | null | 41,799,863 | 41,795,075 | null | null | null | null |
41,800,309 | comment | dhruvrajvanshi | 2024-10-10T16:09:05 | null | If the other method has visibility of my foo property, then it can call it. Nothing is being "injected" anywhere. It's the moral equivalent of foo(req). It's statically dispatched | null | null | 41,799,955 | 41,764,163 | null | [
41803306
] | null | null |
41,800,310 | comment | noemit | 2024-10-10T16:09:15 | null | Yep, all great points. If you want to go deeper, I think we can actually trick ourselves into being "pregnant" by creating some sort of urgency in our lives. An investor I worked with once told me the best way to be a successful entrepreneur is to become unhirable (through scandal or something like that) because then you would absolutely have to make it in business on your own.<p>When you live a high agency life, you have to screw it up in strategic ways to push you towards success. I actually chose to have children when I felt like I was making too much money and it was making my life a little too easy. (It wasn't the only factor, but it was a conscious factor).<p>And it worked - I have way less time, way more important things, and my software projects have become much more hyper focused and I goto market and test things much earlier, I simply dont have the luxury to sit around and think like I used to. | null | null | 41,718,624 | 41,714,361 | null | null | null | null |
41,800,311 | comment | Uehreka | 2024-10-10T16:09:21 | null | PaaS, Containerization and Serverless are different concepts.<p>App Engine is PaaS: You provide your app to the service in a runnable form (maybe a container image, maybe not) and they spin up a dedicated server (or slice of a server) to run it continuously.<p>Lambda is Serverless: You provide them a bit of code and a condition under which that code should run. They charge you only when that thing happens and the code runs. How they make that happen (deploy it to a bajillion servers? Only deploy it when it’s called?) are implementation details that are abstracted from the user/developer as long as Lambda makes sure that the code runs whenever the condition happens.<p>So with PaaS you have to pay even if you have 0 users, and when you scale up you have to do so by spinning up more “servers” (which may result in servers not being fully utilized). With Serverless you pay for the exact amount of compute you need, and 0 if your app is idle. | null | null | 41,799,999 | 41,795,561 | null | [
41800397,
41800515
] | null | null |
41,800,312 | comment | resters | 2024-10-10T16:09:31 | null | Chechnya was hugely important to Russia geopolitically and so it should not have been a surprise that it would not want to let Chechnya become independent.<p>Russia already had a mix of rivals both for political Islamist reasons and oil/gas pipeline dominance reasons. Not surprisingly, those groups/nations supported the Chechen cause as tehy stood to benefit handsomely.<p>As usual the US did a lot of finger shaking and humanitarian atrocity shaming.<p>From Russia's perspective, the Chechen wars were significant attacks on its security and economy. Zooming out, an independent Chechnya would have made post-Soviet Russia much, much weaker.<p>So I think it's reasonable to attribute Russia's suppression of the Chechen rebellions to be motivated by the same desire to protect its territory that has motivated its war with US-backed Ukraine.<p>It seems that the only way to say it's unreasonable is to claim that Putin is himself mentally unwell and motivated by mental illness (a common claim in the US, sadly) or that Russia itself does not deserve to establish its own geopolitical "red lines" for when it will act militarily to protect its interests/territory. | null | null | 41,790,282 | 41,765,734 | null | [
41803311
] | null | null |
41,800,313 | comment | deepmacro | 2024-10-10T16:09:33 | null | Thanks!
Yeah, I kind of want to integrate with gSheets so you can have a place where
you can dump the data and then operate on it.<p>Also need to find a nice and easy way to deal with local tables, I'll look into the extension you suggested. | null | null | 41,800,096 | 41,798,477 | null | [
41800975
] | null | null |
41,800,314 | comment | s1artibartfast | 2024-10-10T16:09:37 | null | Agreed. There are also interests that benefit greatly from them them being a highly contested resource with restricted supply.<p>If you are holding gold, you dont want someone to flood your market with more. | null | null | 41,800,054 | 41,799,016 | null | [
41800455
] | null | null |
41,800,315 | comment | thrwowowow | 2024-10-10T16:09:44 | null | [flagged] | null | null | 41,799,484 | 41,799,011 | null | [
41800411
] | null | null |
41,800,316 | comment | noen | 2024-10-10T16:09:46 | null | This is so true.<p>I adopted mediawiki to run a knowledge base for my organization at Microsoft ( <a href="https://microsoft.github.io/code-with-engineering-playbook/ISE/" rel="nofollow">https://microsoft.github.io/code-with-engineering-playbook/I...</a> ).<p>As I was exploring self-host options that would scale to our org size, it turned out there was already an internal team running a company wide multi-tenant mediawiki PLATFORM.<p>So I hit them up and a week later we had a custom instance and were off to the races.<p>Almost all the work that team did was making mediawiki hyper efficient with caching and cache gen, along with a lot of plumbing to have shared infra (AD auth, semitrusted code repos, etc) thst still allowed all of us “customers” to implement whatever whacky extensions and templates we needed.<p>I still hope that one day Microsoft will acknowledge that they use Mediawiki internally (and to great effect) and open-source the whole stack, or at least offer it as a hosted platform.<p>I tried setting up a production instance af my next employer - and we ended up using confluence , it was like going back to the dark ages. But I couldn’t make any reasonable financial argument against it - it would have taken a a huge lift to get a vanilla MW instance integrated into the enterprise IT environment. | null | null | 41,799,411 | 41,797,719 | null | [
41801684
] | null | null |
41,800,317 | comment | jncfhnb | 2024-10-10T16:10:08 | null | Those dumb artists focusing on quality instead of revenue! | null | null | 41,799,601 | 41,797,462 | null | null | null | null |
41,800,318 | comment | cubefox | 2024-10-10T16:10:19 | null | I mean the Wikipedia content arguably belongs more to the Wikipedia community than to the Wikimedia Foundation... Of course it is hardly possible to gain the approval of a majority of editors.<p>> But like all problems in PoE, PoE2 will fix it. ;)<p>Isn't that the game for which Sannikov came up with his new global illumination algorithm? [1] (Apparently yes)<p>[1] <a href="https://www.youtube.com/watch?v=3so7xdZHKxw" rel="nofollow">https://www.youtube.com/watch?v=3so7xdZHKxw</a> | null | null | 41,799,981 | 41,797,719 | null | [
41802918
] | null | null |
41,800,319 | comment | brandonb | 2024-10-10T16:10:22 | null | Yeah -- in addition to inappropriate measurement technique, "white coat hypertension" can cause elevated blood pressure readings.<p>And, of course, you have the fact that the American College of Cardiology (ACC) updated their blood pressure guidelines in 2017 to use a lower threshold. So some people with moderately high blood pressure would now be considered to have hypertension and are recommended to seek treatment. | null | null | 41,799,699 | 41,799,324 | null | null | null | null |
41,800,320 | comment | alwa | 2024-10-10T16:10:25 | null | I suspect it was exactly a function of improper storage (and that it would last forever in a cool dry place).<p>My broader point, I guess, is that the appropriate date to sell something by depends so heavily on factors unknowable at production time that it’s hard to guess. But also that apparently-shelf-stable goods can in fact degrade.<p>And I guess that it’s kind of weird and unnatural the way modern industrial packaging/processing have trained us to expect that a given product should be interchangeable with any other until an arbitrary date. | null | null | 41,799,824 | 41,765,006 | null | null | null | null |
41,800,321 | comment | joshchernoff | 2024-10-10T16:10:26 | null | It amuses me how you choose to frame this person selectively only pointing out the issues you feel relevant while ignoring the whole picture.<p>Lets start from the beginning. When most of these people are looking for a job in the first place even if they have a long standing history most of these jobs put them through a typical 8 hour long interview complete with cognitive tests. They put all the responsibility of success on the employee from the start even as early as the interview.<p>Then when you get the job the on boarding. OH god the on boarding...
Most of these places expect that just because you have X or Y on your resume that you know inside and out their snow flake application which of the current staff their lead has typically turned over once a year and is so burned out they are the worst person to even offer help because they are toxic.<p>Then you get the constant pivoting. Management: We going to start out by doing two week sprints, one week in, we are going to switch to one week sprints. And after that, management wants to try kanbon all the while bugging about your KPIs<p>Say you manage to make it past that first 6 months. You realize that the next 6 months are going to be exactly as the last but worse because the lead toxic dev has just left and you are now the lead. Mean while they keep pivoting projects and goal posts but simultaneously asking you to do things that they have not even once tried to prepare for.<p>Finally you been there a year and most everyone who was there before you now is gone. And now you are the jaded burned out lead dev unwanting to go to meetings or be the person to tell the new devs how F'd everything is.<p>Also I've never once met a "scrum master" I liked. Just saying... | null | null | 41,800,109 | 41,799,951 | null | null | null | null |
41,800,322 | comment | hollerith | 2024-10-10T16:10:30 | null | The US is replacing systems that are well beyond the lifespan anticipated for them when they were designed: it is not AFAICT increasing total number of weapons. Also, they're not doing anything AFAICT that Russia hasn't already finished doing.<p>Also, I bet the Times is including the cost of the B-22, which is technically part of the US strategic arsenal in that it can carry nukes, but if you could ask Pentagon leaders why they want it, they'd reply mainly with non-nuclear missions.<p>The only reason South Korea, Japan, Germany, Sweden, Italy, the Netherlands, etc, don't have nukes is that they have felt safe enough in the security guarantees made to them by the US, but if the US's strategic arsenal continues to age while Russia and China modernize theirs, how long will they feel safe enough? | null | null | 41,799,510 | 41,798,916 | null | [
41801402
] | null | null |
41,800,323 | comment | lupusreal | 2024-10-10T16:10:35 | null | Websites aren't forced to send me their content even though I use an adblocker. If they do, then the "" harm"" to their business is <i>Not My Problem.</i> | null | null | 41,798,584 | 41,784,287 | null | null | null | null |
41,800,324 | comment | forgot-im-old | 2024-10-10T16:10:35 | null | Well Elon thinks he can win at nuclear war, <a href="https://redd.it/1fy10k1" rel="nofollow">https://redd.it/1fy10k1</a> | null | null | 41,800,102 | 41,798,916 | null | null | null | null |
41,800,325 | comment | mlfreeman | 2024-10-10T16:10:43 | null | I see people pointing out the "Caesar -> tsar" link (and I've heard that myself too), but I have to wonder if Akkadian "sar" somehow became "Caesar". | null | null | 41,799,978 | 41,798,027 | null | [
41800633
] | null | null |
41,800,326 | comment | remram | 2024-10-10T16:11:11 | null | I'd take a one-touch button to temporarily disable autocorrect/auto-capitalization. Either toggled or until next space.<p>I don't usually type the "<a href="https://" rel="nofollow">https://</a>" part if I'm spelling out a URL, and I type many more identifiers than URLs anyhow. | null | null | 41,799,626 | 41,762,483 | null | [
41802099
] | null | null |
41,800,327 | comment | Lev1a | 2024-10-10T16:11:24 | null | Over the last few years here in Germany many, many food products have gained a little note next to the "MHD" (Mindesthaltbarkeitsdatum, [1]) which says something like "oft länger gut" ("often viable for longer") or "ansehen, riechen, probieren" ("Look, smell, try").<p>And IIRC the EU is also debating the removal of MHD from staple foods that are shelf-stable for years, like dried pasta, uncooked rice etc. Normal sugar already doesn't have an MHD, although jam sugar is marked with the year of manufacture since they have other compounds in them as well beside the sugar itself.<p>Where i work all all the food that's simply past its MHD gets collected every morning by the Red Cross for food banks ("Die Tafel"). Obviously if a foods container is damaged or it's rotted fruits/veg or it would be unsafe to consume for another reason [2], that stuff gets thrown out (into bins collected for biomass processing).<p>[1]: pretty sure it's the same as "best (if used) by date" since products from abroad are sometimes marked "BBD <date>" instead of "MHD <date>" (at least on the transport packaging).<p>[2]: like lazy customers not putting frozen or cooled foods back but leaving them elsewhere in the warm store, something which REALLY aggravates me. | null | null | 41,799,257 | 41,765,006 | null | null | null | null |
41,800,328 | comment | cj | 2024-10-10T16:11:42 | null | I think the OP's main point is "press shift 3 times" is a very uncommon and unintuitive keyboard shortcut. What do you disagree with? | null | null | 41,800,164 | 41,793,597 | null | null | null | null |
41,800,329 | story | k11kirky | 2024-10-10T16:11:49 | Ask HN: Do people want to AB test LLMs? | Hi Hacker News,<p>My name is Peter and I am the founder of Props. We are an AI Gateway that enables product teams to AB test models and providers using traditional business metrics (rather than evals) to measure performance.<p>For example: In a traditional call center, companies use NPS, CSAT, Ticket close rate ect. to measure performance. Our theory is that regardless of whether the call center is human or AI, model A or model B we should measure performance in the same way. So the customer support AI would use Props to quantify the changes they make to their AI app. They might set up an experiment that uses gpt-4o as the control and Llama 3.2 as the variant, Props will automatically split traffic between variants with our model router and allow the team to evaluate results in our dashboard.<p>Our ultimate goal: To build the smartest LLM router on the market<p>But… to build the “smartest” router, we need to solve the quality, cost and latency equation.<p>Cost monitoring across models is easy enough to measure, same with latency. Quality is hard because it is dependent on the business and the metrics that matter to them. So really each company needs their own custom LLM router. For that we need DATA, the way we are going about collecting the high quality labeled data is via experiments. Experimentation will provide a consistent channel for data collection that can be continually used to effectively create new fine tuned models or route to the hundreds of available models depending on the real time need.<p>I just soft launched this new experimentation product last week at Llama Lounge in SF (here was the demo: https://getprops.ai/demo ) and am looking for some early design partners / customers who want to work directly with us to test the product.<p>I also want feedback from builders. Is this useful? What would make it more useful? I am happy to set up custom demos for any use case you throw my way.<p>Website: https://getprops.ai
Email: [email protected]<p>Thank you! | null | 2 | null | 41,800,329 | 6 | [
41800382
] | null | null |
41,800,330 | comment | FireBeyond | 2024-10-10T16:11:49 | null | > Because the WordPress Foundation, not Automattic, owns the WordPress trademarks for non-commercial use, Automattic has no control or veto of what code is stamped with the WordPress label.<p>Who are the board members of the WPF, and how active are they? My understanding is that there are three, and two are active.<p>Who is the CEO of Automattic? Let's not be naive and pretend that Automattic has "no control" over the WordPress Foundation when they share Presidents.<p>For one simple example, why did Matt Mullenweg, President of the independent, "no control from Automattic", WordPress Foundation disinvite WP Engine from a community event they sponsored, because they were in a legal dispute with Matt Mullenweg, President of entirely independent, arms-length Automattic? | null | null | 41,794,010 | 41,781,008 | null | null | null | null |
41,800,331 | comment | ggreer | 2024-10-10T16:12:03 | null | This article claims that 12 million tons of food are wasted in California annually, and that this law will save 70,000 tons of food from going to waste. California's population is 39 million. Does that mean that every Californian is wasting a pound of food every day? That seems suspiciously high to me. I'm curious how they came up with those numbers.<p>I think this law is like plastic straw bans, or mandated bag fees, or prop 65 cancer warnings: a feel-good law that causes more problems than it solves. Anyone who makes food for sale in California will have to redo their labelling (or at least pay people to audit their product labelling). These costs will be passed on to consumers in the form of increased prices. Some manufacturers will choose to not sell in California, reducing consumer choice, reducing competition, and increasing prices. And for what? To reduce food waste by 0.6% in the best case.<p>It seems to me that the problem with food wastage isn't the extra food, it's the externalities created by food production, distribution, and disposal. It would be much more effective to tax these externalities than to make ineffective laws about product labelling. | null | null | 41,765,006 | 41,765,006 | null | [
41800805,
41801457
] | null | null |
41,800,332 | comment | myprotegeai | 2024-10-10T16:12:25 | null | Can you describe the incentive structure that makes sure Australians require less drugs in general? That's the bigger picture. Getting a discount on something you shouldn't need in the first place is not a win. | null | null | 41,798,539 | 41,795,187 | null | null | null | null |
41,800,333 | comment | deepmacro | 2024-10-10T16:12:29 | null | I was trying to get a sense of what people like and find useful.
Your suggestions and comments are helping to figure that out.<p>I am planning to add support for entire tables, like one coming from a gSheet,
and then present data from it. But not there yet, if you have suggestions, please add them to the feedback form
<a href="https://forms.gle/A8Q8WAG8zj4sLvwQ7" rel="nofollow">https://forms.gle/A8Q8WAG8zj4sLvwQ7</a> | null | null | 41,800,077 | 41,798,477 | null | null | null | null |
41,800,334 | comment | teddyh | 2024-10-10T16:12:34 | null | No kidding. “ate ice create 14 hours ago”. I’m guessing they meant “ice cream”, but it’s very hard to push yourself through reading sloppy writing like this. The author should have taken their own advice and not automated speech-to-text, spellchecking, and editing. | null | null | 41,799,986 | 41,765,594 | null | null | null | null |
41,800,335 | comment | logical42 | 2024-10-10T16:12:35 | null | Well I guess I'm never going to be google-able again. | null | null | 41,799,170 | 41,799,170 | null | [
41800467
] | null | null |
41,800,336 | comment | sgarland | 2024-10-10T16:12:37 | null | > Unless we are adding millions of rows on a daily basis, microoptimizations don't make a meaningful impact.<p>At toy scale (if your entire dataset can easily fit into memory on a small instance; probably < 100,000,000 rows total), then some things don’t matter as much. I disagree that they aren’t meaningful, though. Especially with Aurora, and its “what if we added even more latency to queries” model of splitting compute and storage. Go make a table with a few million rows; one column with a sequential ID, the other with UUIDv4. Index them both (in MySQL, you’d need to swap PKs between tests since it clusters), then do any kind of aggregation query, like COUNT,
MAX, etc. That’s not a small difference.<p>A micro-optimization for an RDBMS would be something like switching a MySQL column from VARCHAR to CHAR if you’re positive that the length is fixed, to save the 1-2 bytes/row overhead. It matters at scale (thousands of tables * millions of rows can add up), but not for most.<p>> If we need to shave a few percentage of the database access, it is more cost effective for us to get a more powerful database server.<p>People always say this as though it’s fact, but I’ve yet to see any studies on it, and frankly I doubt its veracity. Take the current RDS pricing for on-demand Postgres, r7g.large vs. r7g.xlarge: in us-east-1, it’s $0.239/hr vs. $0.478/hr. That difference works out to about $2000/yr, for a single-AZ DB of the smallest non-burstable type they have. Since microservices remain all the rage, multiply that by N. You’re telling me it’s not worth the money to spend a few hours reading docs and applying the knowledge? I don’t buy it. Moreover, as someone who enjoys the craft of SWE, it’s physically painful to watch people say “eh, let’s just throw money at it” instead of understanding where their code is slow, and solving it. | null | null | 41,798,955 | 41,794,566 | null | null | null | null |
41,800,337 | comment | jprd | 2024-10-10T16:12:50 | null | I'm simultaneously intrigued and thinking this is a funny joke at the same time. If this isn't a joke, I would love an example. | null | null | 41,798,715 | 41,797,041 | null | [
41801822
] | null | null |
41,800,338 | comment | noemit | 2024-10-10T16:12:52 | null | I'm not a dude, but yep you get it.<p>"Just try harder" is not the follow up to "You don't want it bad enough."<p>Sometimes you just have to accept that you don't want it. And that at some point the time will come when you will want it bad enough, like it did for you. | null | null | 41,720,443 | 41,714,361 | null | null | null | null |
41,800,339 | comment | wildzzz | 2024-10-10T16:12:58 | null | You're thinking about taking commercial parts and screening them for radiation tolerance rather than building parts from the ground up to be radiation hardened. Sometimes a vendor gets lucky and the chip has a pretty decent radiation tolerance that makes it useful for short duration missions. It's not going to last 15 years in GEO orbit but it could do well on a satellite only designed to last a couple years. It's not cheap to do radiation tolerance screening but it's way more expensive to make small batches of radiation hardened parts.<p>Sometimes the vendor will add a little more to the substrate that doesn't increase cost much but does provide a little bit more radiation tolerance. Other times there are certain things the customer must do like constantly rewriting registers. It's not perfect but you can save a lot of money taking an off the shelf TI part and flying it versus spending tens of thousands for something of similar performance but with a guaranteed level of radiation hardness beyond what you actually need. I've used a commercial TI ADC that works really well in a radiation environment (perhaps as long as 5 years in GEO) despite not being sold as such. We just decided to screen it to see how well it performed and based on that test data, we made the decision to fly it. I'm not sure who's idea it was but something about the design of the chip led us to believe it might perform decently. TI was not involved and was at first a little concerned when we told our sales rep we were planning to fly it.<p>Older chip designs use larger features that generally perform better in a radiation environment than newer designs using smaller features. An old 74-series logic chip might actually perform just fine when it comes to heavy ions but may not live as long as something like a 54-series that has a larger substrate that can absorb more gamma over time.<p>Another method is flying unscreened radiation hardened parts, they were built to a certain standard but you buy them without all the extra testing to save a few grand because you trust the vendor has a good process. | null | null | 41,773,769 | 41,765,580 | null | null | null | null |
41,800,340 | comment | SilverBirch | 2024-10-10T16:13:07 | null | I think it's useful to think about the same way you think about test specificity. Ie, of all the people in the world that hit this page, how many of them are going to need this feature and use it correctly vs. how many don't need this feature and accidentally use it. Using the Escape key is fantastic for "I needed this feature and it worked", which is probably 1 in 100,000 users of the page. It's terrible for "I accidentally used this feature I didn't know about" and that's the other 99,999.<p>All your other suggestions fail for this reason too - you need a high level of confidence the person really intended to escape. I for example would mash the space bar three times to scroll down. | null | null | 41,798,317 | 41,793,597 | null | [
41800625
] | null | null |
41,800,341 | comment | hiergiltdiestfu | 2024-10-10T16:13:25 | null | The company security team at my workplace is blocking tenno.app as grayware :D | null | null | 41,798,477 | 41,798,477 | null | [
41800368
] | null | null |
41,800,342 | comment | ewoodrich | 2024-10-10T16:13:29 | null | > The law prohibits the use of <i>consumer-facing</i> sell-by dates, and also requires standardized language for date labels.<p>It appears that it does not preclude tracking sell-by for internal inventory management purposes (such as with a handheld scanner already used in grocery stores for various purposes, or possibly some kind of opaque but human readable code), just to avoid customer confusion including it explicitly on the package. | null | null | 41,766,997 | 41,765,006 | null | null | null | null |
41,800,343 | story | zh2408 | 2024-10-10T16:13:41 | Show HN: Data Transformation During Customer Onboarding | The problem I'm solving is that moving customer information into new systems when setting up accounts is usually slow and full of mistakes, which frustrates everyone involved.<p>I happened to have a research project on general data transformation.
So I built a quick demo to tackle this issue.<p>The demo uses Claude 3.5 and a prompt framework to transform customer CSV files into your application's data model. The UI is built with Streamlit.<p>I started with CRM data as an example, but I'd love to expand to more complex use cases with various data types. If you have interesting scenarios, let me know.<p>Here's the research behind it:
<a href="https://cocoon-data-transformation.github.io/page/transform" rel="nofollow">https://cocoon-data-transformation.github.io/page/transform</a>
The project is open sourced:
<a href="https://github.com/Cocoon-Data-Transformation/cocoon">https://github.com/Cocoon-Data-Transformation/cocoon</a> | https://cocoon-demo-851564657364.us-east1.run.app/ | 1 | null | 41,800,343 | 0 | null | null | null |
41,800,344 | comment | null | 2024-10-10T16:13:44 | null | null | null | null | 41,798,782 | 41,797,009 | null | null | true | null |
41,800,345 | comment | noemit | 2024-10-10T16:13:57 | null | but sexism is? awesome. | null | null | 41,769,753 | 41,767,648 | null | null | null | null |
41,800,346 | story | n2parko | 2024-10-10T16:14:09 | Charm Ledger: A System for Reliably Monitoring and Reporting Carbon Removal | null | https://charmindustrial.com/blog/introducing-ledger%3A-a-system-for-reliably-monitoring-reporting-biomass-carbon-removal-at-scale | 3 | null | 41,800,346 | 1 | [
41800737
] | null | null |
41,800,347 | comment | deepmacro | 2024-10-10T16:14:12 | null | nice I did not know about this, thanks for sharing! | null | null | 41,800,116 | 41,798,477 | null | null | null | null |
41,800,348 | comment | maxerickson | 2024-10-10T16:14:14 | null | Craft brewers that aren't doing it as a hobby are using industrial process controls and working for a highly repeatable flavor.<p>The flavor going off is the main concern with beer. | null | null | 41,799,515 | 41,765,006 | null | null | null | null |
41,800,349 | comment | ARandumGuy | 2024-10-10T16:14:19 | null | That's possible, but I think it's premature to think this is part of some grand plan. What likely happened is that Google estimated the cost to fund a team to shut down ad blockers was less then the money they were losing from ad blockers. Maybe it's part of a larger initiative, but I'd be hesitant to assume that without more evidence. | null | null | 41,800,080 | 41,797,719 | null | null | null | null |
41,800,350 | comment | sva_ | 2024-10-10T16:14:27 | null | Kp-index seems to be steadily rising. Might be worth leaving the city tonight to watch aurora. Hope the clouds clear up<p><a href="https://www.spaceweatherlive.com/" rel="nofollow">https://www.spaceweatherlive.com/</a> | null | null | 41,800,196 | 41,800,196 | null | null | null | null |
41,800,351 | comment | ValentineC | 2024-10-10T16:14:29 | null | > <i>Where does this distinction between commercial and non-commercial use come from? The trademark assignment does not appear to make any such distinction: "..an exclusive, fully-paid, royalty-free, perpetual, irrevocable, worldwide, sublicensable right and license to use and otherwise exploit the trademarks...".</i><p>Not the parent commenter, but I'm guessing it comes from the usage part after:<p>> in connection with the hosting of blogs and web sites that utilize any version or component of the WordPress open source publishing platform product or open source successor of any of the foregoing on or in connection with www.wordpress.com and www.wordpress.tv (each and collectively, together with any subdomains of any of the foregoing, "Automatic Sites"), providing support for the Automatic Sites, and/or substantially similar uses in connection with the Automatic Sites. | null | null | 41,799,520 | 41,781,008 | null | [
41801299
] | null | null |
41,800,352 | comment | fwip | 2024-10-10T16:14:34 | null | The checkboxes are also captchas. | null | null | 41,799,688 | 41,797,719 | null | null | null | null |
41,800,353 | comment | xmprt | 2024-10-10T16:14:43 | null | Did you get in touch with Riot Games to be able to host a subdomain of leagueoflegends.com. If so, it's great that they're also behind this | null | null | 41,797,719 | 41,797,719 | null | [
41802653
] | null | null |
41,800,354 | story | ohjeez | 2024-10-10T16:14:55 | Recording the Cats in the Hats | null | https://www.alphagalileo.org/en-gb/Item-Display/ItemId/250548?returnurl=https://www.alphagalileo.org/en-gb/Item-Display/ItemId/250548 | 1 | null | 41,800,354 | 0 | [
41800407
] | null | null |
41,800,355 | comment | Retr0id | 2024-10-10T16:14:57 | null | Seems like the media files still load from the original domain | null | null | 41,798,210 | 41,797,462 | null | null | null | null |
41,800,356 | comment | oDot | 2024-10-10T16:14:58 | null | Exactly right. Sometimes those "higher quality" things may lead to reduced quality, most commonly by reaching the uncanny valley.<p>Interestingly that does not happen in the opposite direction. When "reducing" certain stats on real footage (which is what live-action anime should do[0]) the uncanny valley is skipped. Maybe it's harder to fall into when going backwards? More research is needed.<p>BTW, I love your books<p>[0] <a href="https://www.youtube.com/shorts/3ZiBu5Il2eY" rel="nofollow">https://www.youtube.com/shorts/3ZiBu5Il2eY</a> | null | null | 41,799,601 | 41,797,462 | null | null | null | null |
41,800,357 | comment | jabroni_salad | 2024-10-10T16:14:58 | null | what is required is not the same as what happens in practice. Visit any wiki.gg site and see what they're doing. | null | null | 41,799,961 | 41,797,719 | null | [
41803330,
41801612
] | null | null |
41,800,358 | comment | lupusreal | 2024-10-10T16:15:01 | null | I wonder what percentage of the workforce Google has working on Android is dedicated to fixing security issues. Probably a sizable minority... Maybe one in ten? I'd love to know the real numbers. | null | null | 41,798,781 | 41,784,287 | null | null | null | null |
41,800,359 | comment | FireBeyond | 2024-10-10T16:15:09 | null | "Asbolutely" is a typo.<p>Don't white wash a completely inaccurate and misleading statement as a typing error - that treats people like fools.<p>ESPECIALLY since this is one of DOZENS of recently citable instances where Matt refers to WP.org, Automattic, and the Foundation almost interchangably.<p>"Rushing to fix years of (intentionally/conveniently) muddy waters on org structures" is not "a typo in the past" - this is insulting to your audience. | null | null | 41,794,022 | 41,781,008 | null | null | null | null |
41,800,360 | story | HieronymusBosch | 2024-10-10T16:15:24 | FBI Created a Crypto Token to Bait Pump-and-Dump Scammers | null | https://gizmodo.com/fbi-created-a-crypto-token-to-bait-pump-and-dump-scammers-2000510208 | 4 | null | 41,800,360 | 1 | [
41800666,
41800434
] | null | null |
41,800,361 | comment | tenkabuto | 2024-10-10T16:15:27 | null | I'm interested! It's likely there's also interested people in the University of Bayes discord: <a href="https://discord.gg/eREs7buM" rel="nofollow">https://discord.gg/eREs7buM</a> | null | null | 41,778,134 | 41,778,134 | null | null | null | null |
41,800,362 | comment | tomjakubowski | 2024-10-10T16:15:34 | null | One of the places where C and C++ differ in semantics is in their strict aliasing rules. | null | null | 41,798,517 | 41,757,701 | null | null | null | null |
41,800,363 | comment | carabiner | 2024-10-10T16:15:42 | null | I think the Nobels, especially in the arts, have lost their relevance, similar to the Michelin restaurant awards and the Oscars for film. We now know they're from a select group (of Norwegians in this case) with certain tastes no more noteworthy or transcendent than any of ours. The world has too much culture and achievement today to be marked by one group of awards like this per year. We have "Oscar bait," but I think the phenomenon of "Nobel bait" has been around for a long time.<p><a href="https://en.wikipedia.org/wiki/Oscar_bait" rel="nofollow">https://en.wikipedia.org/wiki/Oscar_bait</a> | null | null | 41,799,170 | 41,799,170 | null | [
41800974,
41800962,
41801085,
41801048
] | null | null |
41,800,364 | comment | jessriedel | 2024-10-10T16:15:48 | null | > Some more education is still necessary, though. Certain foods can go months or years past their "best by" date and still be perfectly safe - even if they might taste a little funky.<p>Aren’t safety restrictions the “use by” date?<p>> Switching to language that either says “Best if Used By” or “Use By” will also help minimize ambiguity. The former will establish consistent wording for advising when an item is less fresh (but still okay to eat), while the latter designates food that should no longer be consumed due to safety concerns. | null | null | 41,800,087 | 41,765,006 | null | [
41801562
] | null | null |
41,800,365 | comment | sgarland | 2024-10-10T16:15:52 | null | I do this when I can, certainly, but there are only so many hours in a day, and I have larger tasks to deal with much of the time.<p>What I’d love is for devs to treat SQL the same as they would their primary language, instead of some mysterious and arcane artifact to be abstracted away and ignored. If I refused to use any data structure other than a dict / hashmap because “it’s good enough,” how do you think that would go over? | null | null | 41,798,597 | 41,794,566 | null | null | null | null |
41,800,366 | comment | fwip | 2024-10-10T16:15:58 | null | "Kid" doesn't really have a hard cutoff. When you're 15, 12-year-olds are kids. When you're 30, 20-year-olds are kids. | null | null | 41,799,926 | 41,797,719 | null | null | null | null |
41,800,367 | story | LorenDB | 2024-10-10T16:16:13 | Ubuntu 24.10 'Oracular Oriole' released, celebrating 20 years of Ubuntu | null | https://www.tomshardware.com/software/linux/ubuntu-24-10-oracular-oriole-released-celebrating-20-years-of-ubuntu | 2 | null | 41,800,367 | 0 | [
41800459
] | null | null |
41,800,368 | comment | deepmacro | 2024-10-10T16:16:28 | null | It can execute arbitrary JS in your browser using eval(), that could be why. | null | null | 41,800,341 | 41,798,477 | null | null | null | null |
41,800,369 | comment | paxys | 2024-10-10T16:16:36 | null | No date printed on a food item is ever going to be accurate to the day. Unless something is wildly out of date, just use your senses. If it looks, smells and feels fine, it is fine. You’d be surprised by how much longer everything in your friend (and outside) can last. | null | null | 41,765,006 | 41,765,006 | null | null | null | null |
41,800,370 | comment | skeeter2020 | 2024-10-10T16:16:38 | null | even 1/100 of a cent would solve the problem - but create a bunch more! | null | null | 41,795,668 | 41,792,500 | null | null | null | null |
41,800,371 | comment | tempest_ | 2024-10-10T16:16:40 | null | Have any of Intels server offerings been "premium" since epyc hit the scene?<p>I just assumed they were still there based on momentum. | null | null | 41,799,411 | 41,797,719 | null | [
41800616
] | null | null |
41,800,372 | story | LinuxBender | 2024-10-10T16:16:44 | Teaching AI What It Should and Shouldn't Do | null | https://www.darpa.mil/news-events/2024-09-27 | 1 | null | 41,800,372 | 0 | null | null | null |
41,800,373 | comment | alwa | 2024-10-10T16:16:45 | null | Oh man. I felt that way before I jumped into drywall work in a family member’s house—it’s making something white, how hard could it be? MAN did my repair job come out streaky and cracked. And it took me about 2 weeks to get through one wall and a ceiling. Poorly.<p>I feel that way when I show up at corporate software shops too—think cubicle farms toiling at the coalface of some massive ancient line-of-business application. I <i>would not survive</i> there. And the company <i>needs</i> people who would thrive there, instead of me. | null | null | 41,799,552 | 41,797,009 | null | [
41801225
] | null | null |
41,800,374 | comment | ryandrake | 2024-10-10T16:16:53 | null | How in the world did "waterproof" become a must-have feature for phones? What the hell are y'all doing with your phones? I've never once dropped my phone in the ocean or a pool, or the toilet, or anything like that. The thing is very expensive, and I treat it carefully and delicately. Who are these people constantly submerging their phones to the point where manufacturers all decided to pay the engineering costs and tradeoffs needed to make their phones waterproof!? | null | null | 41,781,581 | 41,765,098 | null | null | null | null |
41,800,375 | comment | tucnak | 2024-10-10T16:16:56 | null | If it weren't for crypto, zero-knowledge technology would have been lame | null | null | 41,783,831 | 41,783,503 | null | null | null | null |
41,800,376 | comment | costco | 2024-10-10T16:16:58 | null | Satoshi connected to IRC from a residential IP address in Los Angeles in 2009. So there was a point in time where all it would have taken was a subpoena to find him. Now those records probably don't exist. Unless that was a Tor exit or one of those socks5 proxy type services. I remember there was an archive of the Tor consensus files going back really far that I can no longer find, so it'd be possible to check if it was. | null | null | 41,794,251 | 41,783,609 | null | null | null | null |
41,800,377 | comment | null | 2024-10-10T16:17:04 | null | null | null | null | 41,799,612 | 41,799,016 | null | null | true | null |
41,800,378 | comment | aleksandarbos | 2024-10-10T16:17:11 | null | Location: Serbia | Remote: Yes | Willing to relocate: No<p>Brief: MSc. Full-stack software engineer + DevOps + UI/UX Over 14 years in the industry, with 5+ years of experience working with US-based clients.<p>Technologies:<p>• Python (Django, python-docx, flask, pandas, pytorch, scrapy ...)<p>• JavaScript (React, React Native, Angular, and many others..)<p>• .NET Framework (ASP.net, MVC, WebAPI, WPF, .net core, ...)<p>• AWS (Lambdas, Cognito, S3, StepFunctions, DynamoDB, CloudFront, Serverless Framework, IAM.. ) Terraform<p>• UI / UX (Figma, Adobe Illustrator, Corel, Photoshop, both vector and raster graphics)<p>• SQL / NoSQL databases (Postgres, MySQL, MSSQL, MongoDB, DynamoDB...)<p>and more...<p>‣ CV: <a href="https://twentyeightsolutions.com/pdf/abos.pdf" rel="nofollow">https://twentyeightsolutions.com/pdf/abos.pdf</a><p>‣ Git: <a href="https://github.com/aleksandarbos">https://github.com/aleksandarbos</a><p>‣ LinkedIn: <a href="https://www.linkedin.com/in/aleksandar-bosnjak" rel="nofollow">https://www.linkedin.com/in/aleksandar-bosnjak</a><p>‣ StackOverflow: <a href="https://stackoverflow.com/users/5736491/aleksandarbos" rel="nofollow">https://stackoverflow.com/users/5736491/aleksandarbos</a><p>‣ Mail: aleksandarbos.ns at gmail dot com.<p>Let's catch up at: <a href="https://calendly.com/aleksandarbos-ns/30min" rel="nofollow">https://calendly.com/aleksandarbos-ns/30min</a> :) | null | null | 41,709,299 | 41,709,299 | null | null | null | null |
41,800,379 | story | mmaunder | 2024-10-10T16:17:12 | Porch pirates stealing AT&T phones seconds after delivery | null | https://www.wsj.com/business/logistics/porch-pirates-att-iphone-fedex-279ff419 | 3 | null | 41,800,379 | 3 | [
41800449,
41801023,
41800390,
41800435
] | null | null |
41,800,380 | comment | jrochkind1 | 2024-10-10T16:17:12 | null | DOH. I hadn't heard this. | null | null | 41,799,359 | 41,792,500 | null | null | null | null |
41,800,381 | comment | Krasnol | 2024-10-10T16:17:21 | null | As the article says:<p>> Meanwhile, K-9 Mail has suggested that K-9 Mail should continue to be available with its own name, icon, and color scheme, but the same code base, after Thunderbird becomes official. | null | null | 41,798,899 | 41,798,615 | null | null | null | null |
41,800,382 | comment | noemit | 2024-10-10T16:17:21 | null | To answer the headline - No.<p>I find that working and adjusting my prompts and context is way higher value than A/B testing LLMs.<p>After all, I will never expect 100% accuracy.<p>I feel like they are reaching commodity status and the result quality is so similar, that it just doesn't really matter what you use. | null | null | 41,800,329 | 41,800,329 | null | [
41801435,
41800503
] | null | null |
41,800,383 | comment | edm0nd | 2024-10-10T16:17:27 | null | We've seen it happen with RU flying under other flags with their Anonymous Sudan campaign. This could be a new campaign like this by them. | null | null | 41,794,965 | 41,792,500 | null | null | null | null |
41,800,384 | comment | candiddevmike | 2024-10-10T16:17:35 | null | Why do you think this would cause HT diagnosis to drop? If anything all of these continuous monitors create more patient visits and probably more diagnosis.<p>I'm interested in what the future holds when these things are capable of FDA-approved diagnosing. Will Apple send a prescription for BP meds to my pharmacy? | null | null | 41,800,147 | 41,799,324 | null | [
41802140
] | null | null |
41,800,385 | story | azeirah | 2024-10-10T16:17:36 | Ocarina.js – Your Ocarina is an input device | null | https://github.com/Azeirah/ocarina.js | 1 | null | 41,800,385 | 0 | null | null | null |
41,800,386 | comment | cmacleod4 | 2024-10-10T16:17:42 | null | I recommend <a href="https://wiki.tcl-lang.org/page/LUCK" rel="nofollow">https://wiki.tcl-lang.org/page/LUCK</a> as a very easy way to build self-contained executables which bundle Tcl, a large choice of extensions, and your own code.<p>There is a tutorial on the Tcl wiki which should be reasonably up-to-date - <a href="https://wiki.tcl-lang.org/page/Tcl+Tutorial+Lesson+0" rel="nofollow">https://wiki.tcl-lang.org/page/Tcl+Tutorial+Lesson+0</a> . | null | null | 41,799,535 | 41,791,875 | null | null | null | null |
41,800,387 | story | rntn | 2024-10-10T16:17:49 | SAP promises developer 'fusion teams' in cloud low-code environment | null | https://www.theregister.com/2024/10/10/sap_promise_developer_fusion_teams/ | 1 | null | 41,800,387 | 0 | null | null | null |
41,800,388 | comment | krisoft | 2024-10-10T16:17:59 | null | > Perhaps, if you just didn't bother reading my comment.<p>I assure you I did read your comment. Carefully and multiple times.<p>I disagree with it as I wrote. Doesn't mean that I didn't read it.<p>> This is why luck is insignificant - even if you do very badly, you'll still succeed.<p>I really don't understand your reasoning here. She was lucky. Random things turned out well enough for her so she could tell her story and let us hear it. That is where the luck is significant. You can't argue from the fact that she was lucky, that luck wasn't significant.<p>If she wasn't lucky and the jaguar eat her, if she wasn't lucky and the poisoned arrow killed her, if she wasn't lucky and the chief she mocked have executed her we would not know about her.<p>She didn't survive because she was so careful with things. She didn't survive because her environment was free of dangers. She survived because she rolled the darwinian roulette wheel (multiple times) and things happened to work out randomly well enough for her to survive. Therefore the role of luck is significant.<p>You are basically saying "well it worked out okay, so what is the fuss about it". But some of these things only worked out for her due to luck. I read your comment (multiple times!) and still confused how can you can think that the role of luck is insignificant. Especially when you agree that the jaguar could have killed her.<p>> But that was not a risk for a normal Yanomamo woman.<p>Ok? Two things. One: What do we care? We are talking about Helena and the significance of luck in her life. Even if the normal Yanomamo woman were 100% impervious to jaguar attacks wouldn't change anything about Helena. The jaguar is a danger to her. Avoiding it is up to luck for her.<p>Two: how do you know? Do you have some good data source on the relative probabilities on jaguar attacks on the normal Yanomamo woman? Or just making assumptions? For all we know it might be danger to everyone living in that environment. | null | null | 41,784,961 | 41,758,857 | null | null | null | null |
41,800,389 | comment | theptip | 2024-10-10T16:18:06 | null | > The Scrum Guide would have you believe there are only two appropriate questions to ask a Product Owner<p>A lot of people over-interpret rigid hierarchy’s, when Scrum is supposed to be the opposite.<p>From the actual scrum guide: <a href="https://scrumguides.org/scrum-guide.html" rel="nofollow">https://scrumguides.org/scrum-guide.html</a><p>> The Product Owner is also accountable for effective Product Backlog management… The Product Owner may do the above work or may delegate the responsibility to others. Regardless, the Product Owner remains accountable.<p>It’s entirely compatible with Scrum for the engineers to sit with customers and come up with backlog items, and the PO to take the role of ensuring backlog quality and reviewing strategic direction of the work items being added by developers. | null | null | 41,797,009 | 41,797,009 | null | null | null | null |
41,800,390 | comment | mmaunder | 2024-10-10T16:18:10 | null | aT&T says no breach but they clearly have inside info. I’m wondering if it’s sequential tracking numbers or at least a brute forcible algorithm. | null | null | 41,800,379 | 41,800,379 | null | null | null | null |
41,800,391 | comment | koala_man | 2024-10-10T16:18:11 | null | > one website<p>I'm guessing gov.uk is hoping that this will become some kind of standard, at least for British resources. | null | null | 41,800,273 | 41,793,597 | null | null | null | null |
41,800,392 | story | LinuxBender | 2024-10-10T16:18:15 | Milton knocks out power to millions and spawns 150 tornadoes | null | https://www.nxsttv.com/nmw/news/more-than-3-million-without-power-as-hurricane-milton-tears-across-florida/ | 2 | null | 41,800,392 | 0 | [
41800417
] | null | null |
41,800,393 | comment | bobthepanda | 2024-10-10T16:18:17 | null | On a platform like eBay i would hope listings are keyed by UUID or some other id and not title string.<p>And “I guess, eventually” is generally not good enough for a court, which is really where this person should be able to send a dispute like this. | null | null | 41,785,320 | 41,784,713 | null | null | null | null |
41,800,394 | comment | spease | 2024-10-10T16:18:24 | null | Things should not panic a lot, and when I’m going over someone else’s Rust code I will discourage them to use panic at all if it’s socially appropriate.<p>Inasmuch as I am aware, the correct usage of panic is “there is no way to recover from this without leaving the application in an undefined state”.<p>Not “a file I expected to exist wasn’t there” or “the user gave bad input” or “I didn’t implement this feature yet”.<p>But more like “a cosmic ray must have struck the machine or something, because this ought to be logically impossible.”<p>Or pretty much, if you literally don’t see a mechanism in Rust that can pass an error upwards and the program also cannot continue execution without the result being affected, then you panic.<p>That’s a little stricter than what I understand the official guidance is, but not much.<p>If you have something panicking it should be less “I can’t see what’s going on” and more “thank god it stopped itself so it didn’t write bogus data to production.” | null | null | 41,794,371 | 41,791,773 | null | null | null | null |
41,800,395 | comment | sandworm101 | 2024-10-10T16:18:40 | null | There is also much confusion about how food actually goes bad. There are some foods that absolutely should be avoided after a specific amount of time. But most will go bad somewhat randomly, mostly after but often <i>before</i> their sell/best by dates. Sometimes a jug of milk will be bad before it even arrives at a store. Sometimes mold will appear on fresh bread very suddenly. Food is more complicated than fixed dates.<p>I was buying eggs recently when I, as my mother taught me, opened the case and checked to see if any had cracked. The person beside me said "I hope you are buying those" as if me touching them somehow made them unsellable. People need to learn more about food. | null | null | 41,800,087 | 41,765,006 | null | [
41800590,
41800663,
41800465
] | null | null |
41,800,396 | comment | ohjeez | 2024-10-10T16:18:54 | null | You don't need a separate site for that. Some LinkedIn "quick apply" applications have exactly those sorts of questions. ("How many years of experience do you have with Toolname?" or "Do you have more than 8 years experience in the Foobar industry?"<p>I never once got an interview from those companies. | null | null | 41,794,475 | 41,790,585 | null | null | null | null |
41,800,397 | comment | chubot | 2024-10-10T16:18:59 | null | > They charge you only when that thing happens and the code runs.<p>That's how App Engine worked in 2008, and it looks like it still works that way:<p><a href="https://cloud.google.com/appengine/pricing" rel="nofollow">https://cloud.google.com/appengine/pricing</a><p><i>Apps running in the flexible environment are deployed to virtual machine types that you specify. These virtual machine resources are billed on a per-second basis with a 1 minute minimum usage cost.</i><p>This applied to both the web workers and the batch workers<p>It was "serverless" in 2008!<p>> spin up a dedicated server (or slice of a server) to run it continuously.<p>Absolutely NOT true of App Engine in 2008, and I'm pretty sure Heroku in 2008 too! | null | null | 41,800,311 | 41,795,561 | null | null | null | null |
41,800,398 | comment | palunon | 2024-10-10T16:19:04 | null | AFAIK most of those just pay a human in a low income country. | null | null | 41,799,869 | 41,797,719 | null | null | null | null |
41,800,399 | story | siadam | 2024-10-10T16:19:10 | An Image Grid Generator | null | https://gridimg.com/ | 2 | null | 41,800,399 | 1 | [
41800400,
41800679
] | null | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.