Profile pic

SorteKanin, sortekanin@feddit.dk

Instance: feddit.dk (Admin)
Joined: 3 years ago
Posts: 26
Comments: 154

RSS feed

Posts and Comments by SorteKanin, sortekanin@feddit.dk

Good on you for stepping up! Hope it encourages others to volunteer for the communities they care about :)


It’s actually easy if you think about it.

Rich people love comparing their wealth to others, so they can feel better about themselves. So we know quite precisely how much each billionaire is worth, cause they really like measuring those dicks.

Anyways, we can use this against them. You just tax the wealth. Not the income. Not the surplus or the profit. You tax the wealth.

For instance, during the Danish election, there were some parties who proposed the idea of a wealth tax such that all wealth above, say 30 million DKK would be taxed by 0.5% to 1% (depends what party you ask) every year. Someone worth 100 million Danish kroner would therefore need to pay 70*0.01 million or 700.000 kroner in taxes every year.

You could do more than 1% and 30 million for billionaires if you ask me.



Anarchy is a political structure where there’s basically no one in charge, right?

That’s a very literal interpretation of the word. As I understand it, anarchy is more like a class of ideas, rather than any concrete idea. Two people who both call themselves anarchists can have very, very different ideas about how society should run.

So the answer is: it depends what kind of anarchy you’re talking about. Your question is asking how a broad category would work but it’s so broad that I don’t think you can give a concrete answer. You’ll need to be more specific.


I generally agree, but I kind of wonder whether something like an advanced LLM has a place as a component of an artificial “brain”. We have a language-focused area in our brain, but we have lots of other components of the brain that does all kinds of other things too. Perhaps we’re “just” missing those other things.


I think you’re conflating intelligence and consciousness. Pain and suffering requires consciousness but intelligence does not imply pain or suffering or happiness. LLMs are already “intelligent” to a certain degree in some aspects, though not generally intelligent like humans. But there is no reason to believe that you couldn’t have a generally intelligent artificial agent that lacks consciousness and thus can feel no pain or suffering.


That’s true, but that doesn’t contradict the above comment. Unless you believe in something like a spirit or soul, you must concede that human intelligence ultimately arises from physical matter (whatever your model of physics is). From what we know of science right now, there are no direct reasons for thinking that true intelligence or even consciousness is limited to biological organisms based on carbon and could not arise in silicon.


Interesting - I think this minimal solution I actually wouldn’t mind, but I’d be concerned about introducing syntax for callers. Keeping it as a private construct in libraries seems fine though.


Diesel is an ORM

This is kind of stretch to say though - it is not an ORM if you compare it to something like ActiveRecord. Diesel is just a DSL for writing SQL queries that are verified by the compiler.

sqlx requires a modern macro system

I wouldn’t say it requires using macros. You could definitely imagine verifying queries in the same way in languages without macros. But yea, this is one of the strengths of Rust I suppose.


Your last paragraph can be fixed even without an ORM though. Rust has libraries like diesel and sqlx that verify the sql in various ways.


iff [sic]

In case you are unaware, “iff” is short for “if and only if”, i.e. bidirectional implication. It’s not a typo.



Setup in what way? Will it only compress when running low?


Others have already pointed out the issue - in Rust, String is UTF-8 encoded and therefore characters are variable length. So you can’t just change a character in a string, as it may not fit (e.g. replacing ‘a’ with ‘🙂’ would lead to trouble).

You can do what the others suggest, but honestly for a game like hangman, I’d suggest you just work directly with chars and don’t use any string. As in, just use a Vec<char> instead of a string. Then you can freely change characters based on index, but this representation uses more memory than a typical String. But this won’t matter for your use case.


Definitely! The only other language where I felt the compiler actually helped me was Haskell. C and C++ just go like “something is fucked, you figure it out”.

I think the learning curve exists but it has been vastly overestimated by the rumours. I have many years of experience with Rust now, just ask if you are unsure of anything. Feel free to tag me in any post or PM me, then I’ll definitely see it.


RSS feed

Posts by SorteKanin, sortekanin@feddit.dk

Comments by SorteKanin, sortekanin@feddit.dk

Good on you for stepping up! Hope it encourages others to volunteer for the communities they care about :)


It’s actually easy if you think about it.

Rich people love comparing their wealth to others, so they can feel better about themselves. So we know quite precisely how much each billionaire is worth, cause they really like measuring those dicks.

Anyways, we can use this against them. You just tax the wealth. Not the income. Not the surplus or the profit. You tax the wealth.

For instance, during the Danish election, there were some parties who proposed the idea of a wealth tax such that all wealth above, say 30 million DKK would be taxed by 0.5% to 1% (depends what party you ask) every year. Someone worth 100 million Danish kroner would therefore need to pay 70*0.01 million or 700.000 kroner in taxes every year.

You could do more than 1% and 30 million for billionaires if you ask me.



Anarchy is a political structure where there’s basically no one in charge, right?

That’s a very literal interpretation of the word. As I understand it, anarchy is more like a class of ideas, rather than any concrete idea. Two people who both call themselves anarchists can have very, very different ideas about how society should run.

So the answer is: it depends what kind of anarchy you’re talking about. Your question is asking how a broad category would work but it’s so broad that I don’t think you can give a concrete answer. You’ll need to be more specific.


I generally agree, but I kind of wonder whether something like an advanced LLM has a place as a component of an artificial “brain”. We have a language-focused area in our brain, but we have lots of other components of the brain that does all kinds of other things too. Perhaps we’re “just” missing those other things.


I think you’re conflating intelligence and consciousness. Pain and suffering requires consciousness but intelligence does not imply pain or suffering or happiness. LLMs are already “intelligent” to a certain degree in some aspects, though not generally intelligent like humans. But there is no reason to believe that you couldn’t have a generally intelligent artificial agent that lacks consciousness and thus can feel no pain or suffering.


That’s true, but that doesn’t contradict the above comment. Unless you believe in something like a spirit or soul, you must concede that human intelligence ultimately arises from physical matter (whatever your model of physics is). From what we know of science right now, there are no direct reasons for thinking that true intelligence or even consciousness is limited to biological organisms based on carbon and could not arise in silicon.


Interesting - I think this minimal solution I actually wouldn’t mind, but I’d be concerned about introducing syntax for callers. Keeping it as a private construct in libraries seems fine though.


Diesel is an ORM

This is kind of stretch to say though - it is not an ORM if you compare it to something like ActiveRecord. Diesel is just a DSL for writing SQL queries that are verified by the compiler.

sqlx requires a modern macro system

I wouldn’t say it requires using macros. You could definitely imagine verifying queries in the same way in languages without macros. But yea, this is one of the strengths of Rust I suppose.


Your last paragraph can be fixed even without an ORM though. Rust has libraries like diesel and sqlx that verify the sql in various ways.


iff [sic]

In case you are unaware, “iff” is short for “if and only if”, i.e. bidirectional implication. It’s not a typo.



Setup in what way? Will it only compress when running low?


Others have already pointed out the issue - in Rust, String is UTF-8 encoded and therefore characters are variable length. So you can’t just change a character in a string, as it may not fit (e.g. replacing ‘a’ with ‘🙂’ would lead to trouble).

You can do what the others suggest, but honestly for a game like hangman, I’d suggest you just work directly with chars and don’t use any string. As in, just use a Vec<char> instead of a string. Then you can freely change characters based on index, but this representation uses more memory than a typical String. But this won’t matter for your use case.


Definitely! The only other language where I felt the compiler actually helped me was Haskell. C and C++ just go like “something is fucked, you figure it out”.

I think the learning curve exists but it has been vastly overestimated by the rumours. I have many years of experience with Rust now, just ask if you are unsure of anything. Feel free to tag me in any post or PM me, then I’ll definitely see it.


Last summer, Meta scored a key victory in this case, as the court concluded that using pirated books to train its Llama LLM qualified as fair use, based on the arguments presented in this case.

This is so fucked. It’s literally legal for an AI to read pirated books to learn, but humans are not allowed to do this. AIs have more rights than we do already.



That’s why I said without DRM. Some games on steam don’t have DRM, as far as I understand. Otherwise GoG.


Agreed, isn’t that what I just said? 😅


That’s not what buying means or at least not the “buying” I am talking about. I mean I give some amount of money and I receive a download of the purchased material, free of DRM. There is no subscription involved. Like Steam (with no DRM) or GoG, but for movies and shows instead of games.