HN user

mortarion

156 karma
Posts0
Comments62
View on HN
No posts found.

Marxism, communism and socialism are all extreme far-left ideologies.

Being anti-immigration doesn't automatically swing the party to the right. As written on Wikipedia, "left-conservative" is probably the best label.

The Swedish far-left loves to, for instance, brand the governing party in Denmark as far-right, but they are actually also left-conservative.

It is possible (shocker) to be liberal and progressive, whilst also being pro-assimilation, pro-deportation, anti-immigration.

The guy who runs W Social, whilst he has a software developer background, has worked most of his time in the financial world. W social is also an LLC. It's a corporation with shares looking to make a profit somehow. No doubt there will be ads on there, and paid features.

I don't see how this will ever become a success, not because it's going closed source (people here don't care), or because it might have paid features (people here don't care) in the future, or even ands (people here don't care), but because of the name. Who the hell thought "W Social" was a good name for a company?

We are so bad at company names here in the EU it's embarrassing.

SpaceX is 90% xAI and 10% space. It's no longer a space exploration company, it's an AI company (with a sub-par product). Insane (and dumb) valuation, kind of like Tesla.

We're terrible at company and brand naming here in Europe. Just look at the "Wero" payment solution (formerly/currently iDeal). Like, who the hell came up with that stupid name?

The list of stupid European company names and product names are endless.

Nvidia NemoClaw 4 months ago

Agents should be treated like users. Would you give another user you know is a bit careless, write access to your important documents and data? Probably not. I get it that people don't want to be bothered by "can i do this and that?" requests, but there's no other real solution.

In the EU the platform becomes responsible for posted content, the moment someone notifies them that they are hosting something illegal. They have plausible deniability until notified, after which they have a certain time to act, and if they don't they are criminally liable. The user posting the content is also liable, from the moment they made the post.

Countries in Europe (and most of the world) have positive constitutions, which defines what the government "must do" (for its citizens), whilst the USA has a negative constitution that defines what the government "cannot do" (against its citizens).

What constitutes hate speech is carefully defined in the constitutions of EU countries. Politicians can't just amend or extend the definition at will, except in the UK which has a strange system of laws and not a constitution like you're used to in the USA or in the EU.

In Europe we recognize that Hitler came to power by abusing free speech, which is why using the same rhetoric now can land you in trouble with the law. We also recognize that the pen is mightier than the sword and that unfettered speech can be used to persuade groups of people to use violence against other groups of people.

Not only that. This law exists like this because of a EU directive.

https://eur-lex.europa.eu/eli/dir/2011/93/oj/eng

Let me quote again: Pay attention to c.iv specifically:

(c) ‘child pornography’ means:

(i) any material that visually depicts a child engaged in real or simulated sexually explicit conduct;

(ii) any depiction of the sexual organs of a child for primarily sexual purposes;

(iii) any material that visually depicts any person appearing to be a child engaged in real or simulated sexually explicit conduct or any depiction of the sexual organs of any person appearing to be a child, for primarily sexual purposes; or

(iv) realistic images of a child engaged in sexually explicit conduct or realistic images of the sexual organs of a child, for primarily sexual purposes;

This is the actual law (Brottsbalken 16:10a)

https://www.riksdagen.se/sv/dokument-och-lagar/dokument/sven...

A person who

1. depicts a child in a pornographic image,

2. disseminates, transfers, provides, exhibits, or otherwise makes such an image of a child available to another person,

3. acquires or offers such an image of a child,

4. facilitates contacts between buyers and sellers of such images of children or takes any other similar measure intended to promote trade in such images, or

5. possesses such an image of a child or views such an image to which he or she has gained access

shall be sentenced for a child pornography offense to imprisonment for at most two years.

Then there's Proposition 2009/10:70, which is a clarifying document on how the law should be interpreted:

https://www.riksdagen.se/sv/dokument-och-lagar/dokument/prop...

Let me quote (translated):

"To depict a child in a pornographic image entails the production of such an image of a child. An image can be produced in various ways, e.g., by photographing, filming, or drawing a real child. Through various techniques, more or less artificial images can also be created. For criminal liability, it is not required that the image depicts a real child; images of fictitious children are also covered. New productions can also be created by reproducing or manipulating already existing depictions, for example, by editing film sequences together in a different order or by splicing an image of a child’s head onto an image of another child’s body."

In most of the modern world, it's impossible to go through life without a bank account at the minimum (which requires an ID), but not so in the USA, there you can live your whole life, paying with, and accepting cash, storing it in your matress.

CSAM does not have a universal definition. In Sweden for instance, CSAM is any image of an underage subject (real or realistic digital) designed to evoke a sexual response. If you take a picture of a 14 year old girl (age of consent is 15) and use Grok to give her bikini, or make her topless, then you are most definately producing and possessing CSAM.

No abuse of a real minor is needed.

xAI joins SpaceX 6 months ago

Yeah, delivering using Falcon 9.

The Starship stack? Not so much. It's plagued, and will continue to be plagued, by endless problems. BO will beat them with NG.

No one needs to deduplicate over a longer period than a few minutes, or a single session. If you need that, then you're doing something shady. If a user visits your site, clicks a few things, leaves and comes back two hours later, you don't need know if it's the same person or not. The goal of analytics is to see how people in general use your website, not how an individual person use your website.

So just take IP address, browser details, your domain name, and a random ID you stick in a 30 minute session cookie. Hash it together. Now you have token valid for 30 minutes you can use for deduplication but no way of tying it back to particular user (after 30 minutes). And yes, if the user changes browser preferences, then they will get a new hash, but who cares?

Not rocket science.

So take the IP, browser agent, your domain name and some other browser identifiers, stick them together and run them through SHA3-256, now you have a hash you can use for deduplication. You can even send this hash to a 3rd party service.

Or assign the user an anonymous session cookie that lasts an hour but contains nothing but a random GUID.

Or simply pipe your log output through a service that computes stats of accessed endpoints.

None of this requires a cookie banner.