ignirtoq

@ignirtoq@kbin.social
ignirtoq,

Yeah, and the article is wrong, though only slightly. They seem to be confusing watts (power, energy over time) with Joules (energy, power times a duration of time). They give a passable definition in the beginning ("energy transfer"), but they seem to misunderstand what the "transfer" part means exactly.

If you find-replace all instances of "watt" with "watt-hour" after that starting definition, it would be more accurate. That's why I say it's only slightly wrong.

ignirtoq,

Progressive Web Apps are the answer to having to type in a URL to open the app you want. I agree that app stores are a nicer way to find apps, and I wonder if someone built something like an app store for PWAs would we see more adoption of them.

ignirtoq,

If you're on a desktop (or other large screen), click on the user name to go to their user page and there's a block button in the sidebar on the right. If you're on a mobile device (or other small screen), go to their user page and the block button should be prominent on the right of the "follow" button.

ignirtoq,

I do this, too, and I've been wishing there were a setting I could set where kbin would just auto-hide content submitted by accounts that have been blocked by at least X other accounts.

ignirtoq,

How does the decrease in smoking cigarettes compare to the increase in vaping? Has teen consumption of nicotine decreased overall, or is this just a shifting of delivery mechanism?

ignirtoq,

I think a critical detail getting overlooked in the broader discussion of the changes brought by LLM AI is not quality but quantity. What I mean is, sure, AI isn't going to replace any one complete worker. There are vanishingly few jobs AI can 100% take over. But it can do 80% of a few jobs, 50% of more jobs, and 20% of a lot of jobs.

So at the company level, where you had to hire 100 workers to do something, now you only need 80, or 50, or 20. That's still individual people who are out of their entire job because AI did some or most of it, and their bosses consolidated the rest of the responsibilities onto the remaining workers.

ignirtoq,

"Calls" and "puts" are types of contracts about buying/selling stocks (they aren't the stock themselves but are centered around a given stock and its trading price, so they are called "derivatives" as they are "derived" from the stock).

A put is a contract that allows the buyer of the contract to sell stock at an agreed upon price to the seller of the contract, regardless of the current trading price. They are used for a variety of reasons. In one usage, someone who is buying some of the stock at the current trading price may also buy a "put" on the stock at a slightly lower price. This way, they spend a little more money at the time of buying the stock, but if the trading price plummets, they can still sell it at that slightly lower "put" price and not lose too much money.

In this case, the idea would be to buy a "put" (without buying the stock at the same time) when the buyer thinks the stock's trading price is overvalued. Then when the price falls below the "puts" agreed upon value, buy the stock at the lower price and immediately invoke the contract to sell at the "put"s higher price.

Google Researchers’ Attack Prompts ChatGPT to Reveal Its Training Data (www.404media.co)

ChatGPT is full of sensitive private information and spits out verbatim text from CNN, Goodreads, WordPress blogs, fandom wikis, Terms of Service agreements, Stack Overflow source code, Wikipedia pages, news blogs, random internet comments, and much more.

ignirtoq,

It doesn't have to have a copy of all copyrighted works it trained from in order to violate copyright law, just a single one.

However, this does bring up a very interesting question that I'm not sure the law (either textual or common law) is established enough to answer: how easily accessible does a copy of a copyrighted work have to be from an otherwise openly accessible data store in order to violate copyright?

In this case, you can view the weights of a neural network model as that data store. As the network trains on a data set, some human-inscrutable portion of that data is encoded in those weights. The argument has been that because it's only a "portion" of the data covered by copyright being encoded in the weights, and because the weights are some irreversible combination of all of such "portions" from all of the training data, that you cannot use the trained model to recreate a pristine chunk of the copyrighted training data of sufficient size to be protected under copyright law. Attacks like this show that not to be the case.

However, attacks like this seem only able to recover random chunks of training data. So someone can't take a body of training data, insert a specific copyrighted work in the training data, train the model, distribute the trained model (or access to the model through some interface), and expect someone to be able to craft an attack to get that specific work back out. In other words, it's really hard to orchestrate a way to violate someone's copyright on a specific work using LLMs in this way. So the courts will need to decide if that difficulty has any bearing, or if even just a non-zero possibility of it happening is enough to restrict someone's distribution of a pre-trained model or access to a pre-trained model.

ignirtoq,

Whether or not data was openly accessible doesn’t really matter [...] ChatGPT also isn’t just reading the data at its source, it’s copying it into its training dataset, and that copying is unlicensed.

Actually, the act of copying a work covered by copyright is not itself illegal. If I check out a book from a library and copy a passage (or the whole book!) for rereading myself or some other use that is limited strictly to myself, that's actually legal. If I turn around and share that passage with a friend in a way that's not covered under fair use, that's illegal. It's the act of distributing the copy that's illegal.

That's why whether the AI model is publicly accessible does matter. A company is considered a "person" under copyright law. So OpenAI can scrape all the copyrighted works off the internet it wants, as long as it didn't break laws to gain access to them. (In other words, articles freely available on CNN's website are free to be copied (but not distributed), but if you circumvent the New York Times' paywall to get articles you didn't pay for, then that's not legal access.) OpenAI then encodes those copyrighted works in its models' weights. If it provides open access to those models, and people execute these attacks to recover pristine copies of copyrighted works, that's illegal distribution. If it keeps access only for employees, and they execute attacks that recover pristine copies of copyrighted works, that's keeping the copies within the use of the "person" (company), so it is not illegal. If they let their employees take the copyrighted works home for non-work use (or to use the AI model for non-work use and recover the pristine copies), that's illegal distribution.

For anyone in #USA who's hiding a phone from other people in their home - it will ring even on mute on the 4th of October - turn it off FEMA and FCC Plan Nationwide Emergency Alert Test for Oct. 4, 2023 (www.fema.gov)

FEMA, in coordination with the Federal Communications Commission (FCC), will conduct a nationwide test of the Emergency Alert System (EAS) and Wireless Emergency Alerts (WEA) this fall....

ignirtoq,

Here I thought they meant women in domestic abuse situations who are still trying to get out. Like discussed here.

ignirtoq,

I thought the point of "clean code" was to make a software source code base comprehensible and maintainable by the people who are in charge of working with and deploying the code. When you optimize for people reading the code rather than some kind of performance metrics, I would expect performance improvements when you switch to performance optimization. The trade-off here is now code that's more performant, but that's more difficult to read, with interdependence and convolution between use cases. It's harder to update, which means it's slower and more costly (in engineering resources) to upgrade.

In a lot of modern software, you don't need extreme performance. In the fields that do, you'll find guidelines and other resources that explain what paradigms to avoid and what are outright forbidden. For example, I have heard of C++ exceptions and object-oriented features being forbidden in aircraft control software, for many of the reasons outlined in this article. But not everyone writes aircraft control code, so rather than saying clean code is "good" or clean code is "bad," like a lot of things this should be "it depends on your needs."

ignirtoq,

I think you are right that optimising engineering cost is the goal of these practices, but I believe it is a bad thing.
In the end the only people that benefit from this are the owners of the product [...]

Yes, that's exactly how the for-profit software industry (and really any for-profit industry) is run. The owners maximize their benefit. If you want to change that, that's a much different problem on a much larger scale, but you will not see a for-profit company do anything but that.

ignirtoq,

That sounds more like a modern reinterpretation of "protecting religion from the state." The context of the origin of the separation of church and state from the late 18th century was more about religious adherence being closely tied to political power, so you could deal your political opponents harm by branding them a participant of a socially outcast religion, or you could use political power to (legally) persecute the followers of a non-state religion. Yes, it was about protecting religion from the state, but it was in more concrete terms of protecting the followers of non-state-backed religions, rather than preventing some kind of philosophical corruption of the moral foundations of the religion.

ignirtoq,

Arguing from a position of physics, like this author is, I didn't think dualism was still a serious theory with modern proponents.

As hinted in the article by mentioning the fundamental particles, there's no room in the known laws of physics to fit interactions between the neurons of the brain and some as yet undiscovered particles making up the substance of the engine driving qualia, whatever it would be besides the brain. Interactions with undiscovered particles would require energy, and, by conversation of energy, we should see energy of the brain disappearing (this is how we posited the existence of neutrinos, which were later discovered), but we don't.

Likewise, if this qualia engine were driving neural activity, even if the qualia engine were non-physical, neurons still are. So at the lowest level of the neurons, the qualia engine would have to trigger electrical activity in the neurons, which would be an unaccounted for source of energy, and we also don't see that.

I mean the following question in good faith because I legitimately did not know serious proponents of dualism still existed, but do dualists have any explanations for these problems?

Does Kbin move all the Fediverse Magazines / Community posts across?

So I seem to have found smaller Magazines / Communities that haven't been on Kbin before and after finding them they seem to have no posts but after looking through Lemmy it seems they do have posts. Does it take time for Lemmy to add all the posts or is it only new posts that will come across?

ignirtoq,

The way posts are shared between instances is by user subscription. For example, if there's a community on Lemmy and a Kbin user subscribes to it, Kbin will then receive new posts from that Lemmy instance for that community.

So if no one on an instance is subscribed to that community, new posts won't flow to that instance. And then if you do subscribe to it, the instance will only automatically receive new posts. Federation will not back-fill older content.

ignirtoq,

I have seen this happen on Android when using the PWA with Firefox. If I open it, then switch to other apps, and then come back to it hours later, it immediately crashes. When I open it again, it will work fine, unless I switch away from it without closing it again for a few hours, where it will crash again.

Might be related to your issue, or it might be an issue with how Firefox does PWAs on mobile. I have seen a few other bugs with Firefox PWAs, so I assumed it was a Firefox problem.

ignirtoq,

You can click the hamburger menu icon (the 3 horizontal lines) on the very upper left of the page and it will open the sidebar overtop of the current view. Then you can scroll down just a little and find the send message button.

ignirtoq,

There were also several discussions in the Best Of Legal Advice (BOLA) subreddit that one or more of the /r/legaladvice mods were former cops that didn't like people asserting rights that challenged cops being able to act a certain way or do certain things, so they would remove legitimate comments under the guise of them being wrong or violating some other subreddit rule. For whatever that's worth.

ignirtoq,

But I don't support their burden on shared resources (hospitals) on their way out. So many people who don't subscribe to those conspiracy theorist views died as collateral damage during the pandemic because the hospitals didn't have the resources to support all of their usual burdens plus the wave of COVID-ill vaccine deniers.

ignirtoq,

I think inheritance served as a good stepping stone to features like traits in Rust. I spent most of my early career in C and C++, and given just those 2, I would pick C++ for classes alone, even though that's nominally "picking inheritance." Because with C++ classes you can define interfaces and compose those objects better than you can with just functions and structures in C (no callback functions and void pointers, thank you).

So it's about the ergonomics of the language, and I think we as developers are collectively growing and exploring, figuring out what works and what doesn't, and with Rust and Go we're trying out those traits and interfaces we figured out in object oriented languages without dragging along classical inheritance. Given another 5, 10, 20 years, I'm sure we will have figured out what doesn't work in Rust and Go and see new languages dropping those concepts in favor of newer, even more ergonomic ones.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • mdbf
  • ngwrru68w68
  • modclub
  • magazineikmin
  • thenastyranch
  • rosin
  • khanakhh
  • InstantRegret
  • Youngstown
  • slotface
  • Durango
  • kavyap
  • DreamBathrooms
  • megavids
  • GTA5RPClips
  • tacticalgear
  • normalnudes
  • tester
  • osvaldo12
  • everett
  • cubers
  • ethstaker
  • anitta
  • provamag3
  • Leos
  • cisconetworking
  • lostlight
  • All magazines