Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
BeefWellington
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
BeefWellington
2y ago
One of the things that's come up in several trade deals Canada has negotiated is how protectionist we (as a country) are when it comes to dairy. We have not experienced the massive increases in pricing on eggs. The supply management sy
2.
▲
by
BeefWellington
2y ago
After the utter bullshit pulled in California, better hope your state is willing to defend its water reservoirs or for some places clean tap water may be the least of their problems.
3.
▲
by
BeefWellington
2y ago
> Because that would be jumping to conclusions based purely on racial prejudices. Not purely. There may be some prejucide but look at Nortel[1] as a famous example of a situation where technological espionage from Chinese firms wreaked h
4.
▲
by
BeefWellington
2y ago
SELinux! Half jokes aside, I'd love to be able to have a decent mobile style permissions experience on browser extensions and desktop apps.
5.
▲
by
BeefWellington
2y ago
We all use PCs and heck even phones that have thousands of times the system memory of the first PCs. Making something work really efficiently on older hardware doesn't necessarily imply less demand. If those lessons can be taken and ap
6.
▲
by
BeefWellington
2y ago
Is it actually clear this is an authority the president has? Basically usurping Congress' control of the purse?
7.
▲
by
BeefWellington
2y ago
> I want people to give me attribution for the parts of my project that are copyrightable. A requirement not extended to the open source developers whose code you are using essentially a copyright and licensing laundering engine to get a
8.
▲
by
BeefWellington
2y ago
"The best way to get a good answer is to post a confidently wrong one" at work here...
9.
▲
by
BeefWellington
2y ago
Good read on what someone in a specific field considers to have been achieved (rightly or wrongly). It does lead me to wonder how many of these old manuscripts and their translations are in the training set. That may limit its abilities aga
10.
▲
by
BeefWellington
2y ago
You misunderstand, the repo lists an MIT license which requires attribution. You want people to give you credit if they use this LLM-generated code. LLMs which were trained on the works of thousands of other developers with similar licenses
11.
▲
by
BeefWellington
2y ago
It's funny that this is MIT licensed, expecting credit for uncopyrightable work.
12.
▲
by
BeefWellington
2y ago
I've seen many devs extrapolate this thinking too far into sending only the most simple queries and doing all of the record filtering on the application end. This isn't what I think you're saying -- just piggybacking to try a
13.
▲
by
BeefWellington
2y ago
I would expect the query plan for SQL server to essentially return records matching `id` first (which again should be a situation where uniqueness comes into play) and then performing the rest of the execution on the subset that matches, wh
14.
▲
by
BeefWellington
2y ago
If your column named simply `id` isn't a unique index you've gone very wrong. The rest of the query plan probably won't need much power.
15.
▲
by
BeefWellington
2y ago
People have been using MQTT with TLS for years[1][2][3]. Long before the company and line of printers existed. It's not really an excuse to say "well they didn't use it" -- they should have simply offered people the nece
16.
▲
by
BeefWellington
2y ago
You do not need to give it internet access for LAN mode to function, but you lose a LOT of features that the cloud app and mobile app give you. For example, you can no longer do anything with the camera in LAN mode, even from the official
17.
▲
by
BeefWellington
2y ago
This reply reads as though it were AI generated. Let's bite though, and hope that unhelpful excessively long-winded replies are just your quirk. > This is itself a slippery move. A vague gesture at past misconduct without actually s
18.
▲
by
BeefWellington
2y ago
PG&E is basically California, where it can hit north of $0.50/kWh pretty regularly. I think it's worth noting in this article too that the author mentions they can now heat and cool parts of their house they weren't previ
19.
▲
by
BeefWellington
2y ago
> The "everybody does it" argument is a classic rationalization that doesn't actually justify anything. I'd argue here the more relevant point is "these specific people have been shown to have done it before.&quo
20.
▲
by
BeefWellington
2y ago
> OpenAI aren't distributing the copyrighted works, so those aren't the same situations. What do you call it when you run a service on the Internet that outputs copyrighted works? To me, putting something up on a website is dis
21.
▲
by
BeefWellington
2y ago
Eh, I don't really agree with roncesvalles, but I think this is an inherently highly political topic. Should HN just be deleting the entire thread?
22.
▲
by
BeefWellington
2y ago
This is less about the Pi and more about the form factor.
23.
▲
by
BeefWellington
2y ago
My favourite is the ole "Oh we need Dwayne for this one, let's schedule a follow-up tomorrow with him, and until then we can rough out a bunch of requirements only Dwayne possibly knows by... umm... Guessing?" I do not miss d
24.
▲
by
BeefWellington
2y ago
Well, to be fair, the law wasn't individually passed by Biden. It was stuffed into a foreign aid bill aimed at supplying both Ukraine and Israel, as well as enforcing additional sanctions on Russia.[1] It's not entirely clear if B
25.
▲
by
BeefWellington
2y ago
Yeah but how is that funding actually applied? You could throw an extreme amount of money at schools but require it be spent on specific initiatives. Things like resource officers, hiring someone with specific qualifications, and boatloads
26.
▲
by
BeefWellington
2y ago
I did some testing and even in python both approaches are nearly identical in speed: def isEven_modulus(num): return num % 2 == 0 def isEven_bit(num): return (num & 1) == 0 import random, time testSe
27.
▲
by
BeefWellington
2y ago
This response doesn't make a lot of sense. What's the justification for taking all of the environment variables? This post tries to paper over that particular problem. If your goal was to see if you could attack the dependency cha
28.
▲
by
BeefWellington
2y ago
"No Harm No Foul" in this case would be a simple demonstrative failure case, not functioning malware.
29.
▲
by
BeefWellington
2y ago
In this scenario, reading between the lines, the vendor is not providing a public / published package but does provide the source as like a tarball? I have yet to run into that particular case where the vendor didn't supply thei
30.
▲
by
BeefWellington
2y ago
Sure you can. It's in their example for how to use requirements.txt: https://pip.pypa.io/en/stable/reference/requirements-file-fo... Maybe there's some concrete example you have in mind though?
More ›