"They were basically all thirst traps of young women, mostly AI-generated, with generic captions."
Don't mean to be rude but..might that have something to do with your search history?
If you want to go a step further the PostHog roadmap items are all GitHub issues that users can upvote which gives a great sense of who wants what in the community.
I find that when people can see what's coming, they're more invested in the product and more likely to share feedback that actually shapes the direction. The devlogs on YouTube serve the same purpose. It's a two-way street.
I assume eliminating the "loss leader" concept is the main effect, since shops shouldn't otherwise price things as losses regardless? In which case it seems like it's meant to maintain some friction / overhead for people wanting to visit the stores, possibly reducing consumption at least for the price-sensitive.
In Texas the law exists as well, phrased as cannot offer price below wholesale price for alcohol which in effect bans “bottomless/all you can drink” deals as well. It is indeed designed as a way to discourage consumption
Selling at a loss can also be a monopolistic practice: a firm with enough capital can sell at a loss to capture the market, and then buy out their now-flailing competition.
(That being said, even though I think it's a silly rule, it just seems to exist to annoy alcoholics who can't plan ahead. I'm not an alcoholic, and I rarely consume alcohol before noon, so I just laugh at people who whine about this law.)
Was at the airport on a trip with friends with the flight leaving before noon. None of the bars could sell. We are not alcoholics, but we were on vacation. Well, we were trying to start the vacation but had to wait until leaving uptight red state
> Well, we were trying to start the vacation but had to wait until leaving uptight red state
I live in Massachusetts, the bluest of blue states, and we still have special laws about Alcohol on Sunday. According to Gemini, Logan airport can't start serving until 10 a.m. (Because in Massachusetts, we don't want you getting drunk on the way to your Unitarian or interfaith Sunday service after you get off of your red-eye flight.)
it's aimed at not encouraging consumption which is slightly different. you can have a "hungry hour" where you entice people with food bargains and sell them alcohol, but you can't have a "happy hour" where you entice people with alcohol bargains.
it is also in keeping with other laws intended to create a competitive/collusion free market (not saying the crafting of those laws was not influenced by incumbents trying to maintain their share)
Fraud is a crime. When a crime is committed citizens inform the police to investigate.
If someone punches you in the street or steals your wallet will you file a lawsuit or call the police? Maybe in America is different, but the normal thing to do is to go to the police. Fraud is not different, the police will investigate.
> If someone punches you in the street or steals your wallet will you file a lawsuit or call the police?
In the USA, probably both. You (or your insurance company) might sue them to recover your financial losses, the police would investigate the crime of assault and/or robbery and pass any evidence along to the prosecutor.
Of course if they have no money or other assets, suing them is a bit pointless.
In the US, you might wait for criminal action if it was progressing to initiate civil action because (1) a criminal conviction can be used as evidence (and it is asymmetrical, because an actual doesn't have the same weight), and (2) criminal process can result in a restitution order which makes civil action unnecessary (and in some jurisdictions may allow recovery from a dedicated fund for victims of crime even if no recovery is possible from the perpetrator, and in that sense may be better than winning a civil action), and (3) criminal prosecution doesn't cost the victim money, civil prosecution generally does.
It means the legal system is investigating the matter and the public prosecutor may or may not decide to file charges. The publishers might have filed a lawsuit themselves, but that is very expensive so they hope the legal system will do it for them. My guess is that the investigation will be closed because I don't think Swedish authorities think they have jurisdiction over Facebook. Unless Meta happens to have offices in Sweden, which I don't think they have. In general they can only prosecute crimes committed in Sweden or committed by Swedes.
The investigation maybe will be closed, but not for that reason. Fraudulent ads that are paid for and then shown on Swedish news sites makes money change hands in Sweden. Even though the fraudsters are abroad, Meta makes business with the media in Sweden that displays the ads. Jurisdiction will not be a problem
I'm just surprised that people pay to be lied to constantly by LLMs. I guess the politicians have normalized lying, so as long as the LLM says what you want it to, why not pay for that.
I've used it for creating a template for an app. It usually creates a pretty accurate app with at least a basic UI and some interactions. The biggest issue is that once you've created the template, it's pretty tough to add some more complicated features using the AI.
You gotta give it detailed instructions for everything at the start. You can't just build as you go, because every time it adds something it breaks something else.
I've never used replit but I'm curious what types of choices the app makes when building. Like how does it decide on the architecture, backend language, frontend framework, etc? Even if the non-technical user is unaware of the tech choices being made, the AI still has to make such decisions. How does it decide?
If it has detailed context of exactly what the entire app will need to do before writing any code, the first tokens will be more likely to build an architecture that works well in a language and framework that is suited for it.
If the initial context is thin on details, it will still pick an architecture, language, and framework but it may not be the best fit for the end goal. After those choices are made that just becomes more context, and it likely would never consider whether the language is now wrong and the entire codebase should be started fresh with a new language or framework.