There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

kbin.life

PuppetPantheon , to showerthoughts in If we call reddit users redditors, what do we call lemmy users

Lemmings

FaeDrifter ,

This is the way

Anarki_ ,

This is the way.

Ocelot08 ,

It really can only be this

can , to mildlyinfuriating in Artificial price increase so that you can post “discounts” on Prime Day

It is illegal in Canada. Enforcement is the issue.

Showroom7561 OP ,

Of course. And since enforcement is basically non-existent, it doesn’t matter how illegal it is!

CanadaPlus ,

It’s semi-amazing how feckless our government is when it comes to anything related to market fairness.

can ,

And it’s more than mildly infuriating when people say Poilievre will be any better.

CanadaPlus ,

Yes, I don’t know when it started exactly, but it predates Trudeau.

9488fcea02a9 ,

It is fair… Companies paid $X lobbying our gov’t and in return they get to do shit and profit

Fair!

CanadaPlus ,

I suspect there’s more to it then that.

RustyNova , to programmer_humor in Surely "1337" is the same as 1337, right?

To whoever does that, I hope that there is a special place in hell where they force you to do type safe API bindings for a JSON API, and every time you use the wrong type for a value, they cave your skull in.

Sincerely, a frustrated Rust dev

skuzz ,

“Hey, it appears to be int most of the time except that one time it has letters.”

throws keyboard in trash

Username ,

Rust has perfectly fine tools to deal with such issues, namely enums. Of course that cascades through every bit of related code and is a major pain.

RustyNova ,

Sadly it doesn’t fix the bad documentation problem. I often don’t care that a field is special and either give a string or number. This is fine.

What is not fine, and which should sentence you to eternal punishment, is to not clearly document it.

Don’t you love when you publish a crate, have tested it on thousands of returned objects, only for the first issue be “field is sometimes null/other type?”. You really start questioning everything about the API, and sometimes you’d rather parse it as serde::Value and call it a day.

skuzz ,

API is sitting there cackling like a mad scientist in a lightning storm.

skuzz ,

True, and also true.

bleistift2 OP ,

This man has interacted with SAP.

Rednax ,

The worst thing is: you can’t even put an int in a json file. Only doubles. For most people that is fine, since a double can function as a 32 bit int. But not when you are using 64 bit identifiers or timestamps.

firelizzard ,
@firelizzard@programming.dev avatar

That’s an artifact of JavaScript, not JSON. The JSON spec states that numbers are a sequence of digits with up to one decimal point. Implementations are not obligated to decode numbers as floating point. Go will happily decode into a 64-bit int, or into an arbitrary precision number.

Aux ,

What that means is that you cannot rely on numbers in JSON. Just use strings.

JackbyDev ,

Unless you’re dealing with some insanely flexible schema, you should be able to know what kind of number (int, double, and so on) a field should contain when deserializing a number field in JSON. Using a string does not provide any benefits here unless there’s some big in your deserialzation process.

Aux ,

What’s the point of your schema if the receiving end is JavaScript, for example? You can convert a string to BigNumber, but you’ll get wrong data if you’re sending a number.

JackbyDev ,

I’m not following your point so I think I might be misunderstanding it. If the types of numbers you want to express are literally incapable of being expressed using JSON numbers then yes, you should absolutely use string (or maybe even an object of multiple fields).

sukhmel , (edited )

The point is that everything is expressable as JSON numbers, it’s when those numbers are read by JS there’s an issue

JackbyDev ,

Can you give a specific example? Might help me understand your point.

sukhmel ,

I am not sure what could be the example, my point was that the spec and the RFC are very abstract and never mention any limitations on the number content. Of course the implementations in the language will be more limited than that, and if limitations are different, it will create dissimilar experience for the user, like this: Why does JSON.parse corrupt large numbers and how to solve this

JackbyDev ,

This is what I was getting at here programming.dev/comment/10849419 (although I had a typo and said big instead of bug). The problem is with the parser in those circumstances, not the serialization format or language.

sukhmel ,

I disagree a bit in that the schema often doesn’t specify limits and operates in JSON standard’s terms, it will say that you should get/send a number, but will not usually say at what point will it break.

This is the opposite of what C language does, being so specific that it is not even turing complete (in a theoretical sense, it is practically)

JackbyDev , (edited )

Then the problem is the schema being under specified. Take the classic pet store example. It says that the I’d is int64. petstore3.swagger.io/#/store/placeOrder

If some API is so underspecified that it just says “number” then I’d say the schema is wrong. If your JSON parser has no way of passing numbers as arbitrary length number types (like BigDecimal in Java) then that’s a problem with your parser.

I don’t think the truly truly extreme edge case of things like C not technically being able to simulate a truly infinite tape in a Turing machine is the sort of thing we need to worry about. I’m sure if the JSON object you’re parsing is some astronomically large series of nested objects that specifications might begin to fall apart too (things like the maximum amount of memory any specific processor can have being a finite amount), but that doesn’t mean the format is wrong.

And simply choosing to “use string instead” won’t solve any of these crazy hypotheticals.

sukhmel ,

Underspecified schema is indeed a problem, but I find it too common to just shrug it off

Also, you’re very right that just using strings will not improve the situation 🤝

bleistift2 OP ,

What makes you think so?


<span style="color:#323232;">const bigJSON = '{"gross_gdp": 12345678901234567890}';
</span><span style="color:#323232;">JSON.parse(bigJSON, (key, value, context) => {
</span><span style="color:#323232;">  if (key === "gross_gdp") {
</span><span style="color:#323232;">    // Ignore the value because it has already lost precision
</span><span style="color:#323232;">    return BigInt(context.source);
</span><span style="color:#323232;">  }
</span><span style="color:#323232;">  return value;
</span><span style="color:#323232;">});
</span><span style="color:#323232;">> {gross_gdp: 12345678901234567890n}
</span>

developer.mozilla.org/en-US/docs/Web/…/parse

Aux ,

Because no one is using JSON.parse directly. Do you guys even code?

bleistift2 OP ,

It’s neither JSON’s nor JavaScript’s fault that you don’t want to make a simple function call to properly deserialize the data.

Aux ,

It’s not up to me. Or you.

Carighan ,
@Carighan@lemmy.world avatar

Relax, it’s just JSON. If you wanted to not be stringly-typed, you’d have not used JSON.

(though to be fair, I hate it when people do bullshit types, but they got a point in that you ought to not use JSON in the first place if it matters)

RustyNova ,

As if I had a choice. Most of the time I’m only on the receiving end, not the sending end. I can’t just magically use something else when that something else doesn’t exist.

Heck, even when I’m on the sending end, I’d use JSON. Just not bullshit ones. It’s not complicated to only have static types, or having discriminant fields

Mubelotix ,
@Mubelotix@jlai.lu avatar

You HAVE to. I am a Rust dev too and I’m telling you, if you don’t convert numbers to strings in json, browsers are going to overflow them and you will have incomprehensible bugs. Json can only be trusted when serde is used on both ends

RustyNova ,

This is understandable in that use case. But it’s not everyday that you deal with values in the range of overflows. So I mostly assumed this is fine in that use case.

Aux ,

Well, apart from float numbers and booleans, all other types can only be represented by a string in JSON. Date with timezone? String. BigNumber/Decimal? String. Enum? String. Everything is a string in JSON, so why bother?

RustyNova ,

I got nothing against other types. Just numbers/misleading types.

Although, enum variants shall have a label field for identification if they aren’t automatically inferable.

Aux ,

Well, the issue is that JSON is based on JS types, but other languages can interpret the values in different ways. For example, Rust can interpret a number as a 64 bit int, but JS will always interpret a number as a double. So you cannot rely on numbers to represent data correctly between systems you don’t control or systems written in different languages.

sukhmel , (edited )

No problem with strings in JSON, until some smart developer you get JSONs from decides to interchangeably use String and number, and maybe a boolean (but only false) to show that the value is not set, and of course null for a missing value that was supposed to be optional all along but go figure that it was

Rocketpoweredgorilla , to asklemmy in what is the worst case scenario that can happen at the presidential debate?
@Rocketpoweredgorilla@lemmy.ca avatar

What will probably happen is Trump will say a hundred stupid things no-one bats an eye to. Biden will screw up one soundbite and conservative media will twist and beat that dead horse until it get reincarnated.

LarkinDePark ,

Is this the same media that ignores his genocide?

neidu2 , to nostupidquestions in Is it generally safe to walk through a field of cows?

Yes. They might follow you, but that’s mostly out of curiosity and the fact that you’re tall enough to be their leader. Sometimes they might even run at you, but that’s mostly just to catch up and/or get closer - They’re not charging at you. Stop, turn around, and T-pose, and they’ll stop as well, waiting to see what you’re up to.

Cows alone are pretty chill and playful. Think of them like huge dogs, but without the instinct for hunting. If there are young ones with them you wanna give them some extra space for obvious reasons.

Source: Grew up on a cattle farm.

Regna , (edited )
@Regna@lemmy.world avatar

Cows are big, strong and heavy, and docile dogs can also kill. Any kind of caution around things large or feisty enough to kill you is healthy.

Dozzi92 ,
@Dozzi92@lemmy.world avatar

Glad to hear t-pose is the way to go. I’m beginning to think it’s the solution to the world’s problems.

frightful_hobgoblin , to nostupidquestions in Is there any real physical proof that Jesus christ ever existed?

What do you mean by physical proof?

Some history is known by digging up physical stones n bones. Some is known by digging up texts.

There are multiple texts dated to the 1st century that all corroborate the story that a person called Jesus was crucified around 33AD

en.wikipedia.org/…/Sources_for_the_historicity_of…

themeatbridge ,

The evidence isn’t even that strong, there i just aren’t that many people willing to risk becoming a pariah to dispute them.

If you are a Christian, there is no doubt Jesus existed. Any oblique reference to a rabbi who was persecuted hundreds years ago is considered evidence that Jesus existed. But no contemporaneous documentation exists.

If you’re not a Christian, debunking all of those vague references that might be proof of a Jewish leader named Jesus just isn’t particularly important, won’t persuade anyone who believes Jesus was(is) God, and will paint a target on your back for terrorists.

frog_brawler ,

Wait… you mean to tell me there’s not a collective of atheist Wikipedia writers that have dedicated their lives to the absence of religion and citing themselves on refuting evidence on Wikipedia?!?

Wouldn’t it be weird of every Wikipedia article on the historical validity of Jesus was written by Christian scholars that have dedicated their lives to their religion? It would be wild if they were just citing themselves in these Wiki articles in order to sell some books, wouldn’t it?

andrewrgross , (edited )

It’s weird how many people in this thread are vaguely debating the validity of the historical research into this question when one person has posted a link to a well cited article on this very very heavily studied subject.

There’s even a link to a well cited article examining the skepticism of the historicity of Jesus: en.m.wikipedia.org/wiki/Christ_myth_theory

I don’t feel compelled to argue an interpretation. The facts are well documented and their interpretations by experts available. What anyone chooses to do with these are of no real concern to me.

bionicjoey ,

Yeah there are plenty of historians who have done good work studying this and the academia is mostly settled. Not to say there’s no controversy, but there’s definitely an orthodox opinion.

reversebananimals ,

Yep. This is one of those posts that should have just been a web search instead.

frightful_hobgoblin ,

A literature search. The web is full of rubbish.

pop ,

I don’t feel compelled to argue an interpretation. The facts are well documented and their interpretations by experts available. What anyone chooses to do with these are of no real concern to me.

but then

It’s weird how many people in this thread are vaguely debating the validity of the historical research into this question when one person has posted a link to a well cited article on this very very heavily studied subject.

Well cited article aren’t proof of existenceof a man. Is spiderman real if enough people cite the comics? A group of influential people could gather and make their own circle of these myths and present it as a fact. And it isn’t fucking new.

chronicle.com/…/the-dark-world-of-citation-cartel…

Religions and all their influence could force a lot of heavily studied subject to be skewed for their benefit. Hell, there were studies that were treated as standard making sugar and alcohol heavily beneficial for human beings. And we’re talking about a person.

andrewrgross ,

I didn’t say which side I come down on. I just said that there is lots of information with plenty of high quality citations.

I’m really happy that everyone is a winner.

dandroid ,

In my experience, when it comes to debating the validity of religion, people tend to get far more emotional than other topics. People who are normally level-headed and quite logical tend to completely lose their ability to think rationally. And I mean both the people who argue for religion and against it.

bastion ,

Pretty clear that’s the case here in the comments on this post.

frog_brawler ,

It’s almost like Christian Scholars (people that have dedicated their entire lives to this idea) have access to write for Wikipedia too…

The citations are from the same people we see over and over again on this topic (specifically on Wikipedia).

andrewrgross , (edited )

I shouldn’t bother responding to this, but I have to point out that this weird assumption that scholars of Christianity are all Christian partisans seems pretty similar to people who say that climatologists are all biased in favor of a global warming hoax.

You don’t think anyone goes into studying a field to challenge the orthodoxy? That’s the fastest way to get famous. Even if the rest of your field hates you, you can make an incredibly lucrative career out of being “the outsider”. I literally linked to a collection of experts who agree with you.

If you don’t believe the experts, I guess it’s fine. But it’s weird when people use expertise on a subject as proof of bias to discredit expertise. It’s just such a silly thing to do.

frog_brawler ,

I think it’s a weird to assume the wiki-link that you posted is in support of the “Christ Myth Theory” (as they call it).

Read the contents of the wiki link you sent and check all of the citations, you’ll see that the Christian Scholars that contributed to writing the article aim to dismiss the theory by citing their own books.

bastion ,

Kinda cringey.

frog_brawler ,

There were a lot of people that shared that name, and a lot of people were crucified at that time.

The article you provided (if you read it) should actually serve to cast more doubt on the idea; it does not “answer the question to the affirmative.”

frightful_hobgoblin ,

There were a lot of people that shared that name, and a lot of people were crucified at that time.

That implies each source says: “A man called Jesus was crucified”. The article you provided (if you read it) should have told you otherwise.

  • Flavius Josephus: Antiquities of the Jews, year 93-94: “About this time there lived Jesus, a wise man, if indeed one ought to call him a man. For he was one who performed surprising deeds and was a teacher of such people as accept the truth gladly. He won over many Jews and many of the Greeks. He was the Christ. And when, upon the accusation of the principal men among us, Pilate had condemned him to a cross, those who had first come to love him did not cease. He appeared to them spending a third day restored to life, for the prophets of God had foretold these things and a thousand other marvels about him. And the tribe of the Christians, so called after him, has still to this day not disappeared.”
  • Tacitus’s Annals, year 117: Christus, from whom the name had its origin, suffered the extreme penalty during the reign of Tiberius at the hands of one of our procurators, Pontius Pilatus
frog_brawler ,

I didn’t provide any article. I read the one you linked.

In this most recent response, you are annotating sources from 93, and 117. Those years are notably (at minimum) 60 years after the supposed resurrection; and as such are not first hand accounts.

They very likely was someone named Jesus, because there were many people with that name. There was very likely someone named Jesus that was crucified, because many people were crucified. There’s 0 evidence or recorded documentation that a resurrection ever happened. That’s the big one.

frightful_hobgoblin ,

They very likely was someone named Jesus, because there were many people with that name.

The second one doesn’t use that name. Read the sources.

There’s 0 evidence or recorded documentation that a resurrection ever happened. That’s the big one.

Well of course, but that’s common sense. Dead people stay dead as a rule.

frog_brawler ,

I didn’t say the second one used “that name.” Read what I wrote.

frightful_hobgoblin ,

There’s 0 evidence or recorded documentation that a resurrection ever happened. That’s the big one.

The question in question was “Is there any real physical proof that Jesus christ ever existed?”

frog_brawler ,

Jesus Christ is very specific. Jesus Christ, the son of God, who was crucified and rose again on the third day… that is fake.

frightful_hobgoblin ,

Well that’s an entirely different question. Entirely different field.

“the son of God, who was crucified and rose again on the third day” is for silly Christians.

The question under discussion here is about Roman-era history.

frog_brawler ,

You suck ass at reading. The title of this post is asking about “Jesus Christ,” which we all know to mean the son of God and the guy that resurrected after 3 days.

frightful_hobgoblin ,

The title of this post is asking about “Jesus Christ,” which we all know to mean the son of God and the guy that resurrected after 3 days.

lol no… this thread is not talking about anything like that hahaha. Read it.

Obviously people don’t come back from the dead or transform into cheddar cheese; we don’t need historical research to tell us that.

His given name was יֵשׁוּעַ‎ or Yeshua, which is Jesus in one speech-type, عيسى (ʿIsà) in another, as well as a lot of other variants.

‘Christus’ in Latin seems to refer to the same person; Tacitus wrote “called Christians by the populace. Christus, from whom the name had its origin, suffered the extreme penalty during the reign of Tiberius at the hands of one of our procurators, Pontius Pilatus”

frog_brawler ,

I’m not debating with you the question that was asked as to start this thread. It’s visible to literally anyone that looks it.

If you wanted to answer a question that was not asked by the OP, that’s on you.

frightful_hobgoblin ,

Agreed.

frightful_hobgoblin , (edited )

What do you think of what Ehrman says here at 1h45m25s that the mythicist theory isn’t taken seriously by the academy because it’s mostly pushed by people who seem eager to dunk on religion.

uienia ,

No, there arent a lot of texts from the 1st century AD about him. The majority by far stems from the second century or later.

Potatisen , to memes in Never forget what they took from us...

Single player is the best.

nexussapphire ,

10 year old games on a 4k OLED with maxed out settings is the best. Especially if it’s a game you can run above 60 fps.

Mac ,

yes but i do miss co-op gaming.

unwillingsomnambulist ,

Powerwash Simulator.

SacralPlexus ,

Deep Rock Galactic.

Rock and Stone, Miner!

ekky ,

Couch co-op, split-screen, hotseat; Kingdom Two Crowns is nice. So is Darksiders Genesis, For The King, Moon Hunters, Trine, etc.

Always on the lookout for other good co-op couch games, especially with a good story, but I feel that they are few and far between. :(

Potatisen ,

Brothers, It takes two and A way out.

A way out I really liked.

JackFrostNCola ,

For me its the Borderlands series & portal 2.

mino ,
@mino@lemmy.ml avatar

It takes two is absolutely amazing in every aspect.

idunnololz ,
@idunnololz@lemmy.world avatar

A few games that are great single player can also be played with friends such as Terraria, Stardew Valley, Factorio and Minecraft.

M500 ,

100% Online gaming is pretty toxic and I love being able to play at my own pace.

Only exception to this for me was stardew with my wife.

Potatisen ,

Toxicity is one thing for sure but I don’t like how the commercialization of MP has shaped it.

Indie games have a very different feel in their online gameplay compared to “commercial” games.

Even way back, HL1 online and those online experiences felt so different because it was designed to be about the group experience rather than level up and get a skin, buy a weapon, our skill tree is massive. Sure technology was holding it back but I wish I could see what it would’ve been without the massive push for $$$.

M500 ,

Oh, yeah. I just ignore that stuff. But it’s really annoying. I can’t even think of the last time I played a game online.

Oh, I got fallout 76 on sale super cheap and uninstalled it after 20-30 minutes.

TheFriar ,

I only want to play single player games. I’m not a super big gamer, but I just want campaigns. I recently got a PS5 and I’ve been struggling to find newer games that have a great single player campaign. RDR2 is my style, it’s my favorite game. The gameplay itself is a little problematic, but it’s gorgeous and the story just gets me where I live. And that’s what I want.

RecluseRamble , (edited ) to programmer_humor in What a time to be alive

More like:

Computer scientist: We have made a text generator

Everyone: tExT iS iNtElLiGeNcE

Persen ,

That’s why nonverbal (and sometimes speaking) autistic people are considered stupid even by professionals.

pantyhosewimp ,
Persen ,

Wow, this looks worth reading. I’ll read it if I remember.

pantyhosewimp ,

It’s also a movie too with Daniel Day-Lewis. He’s kinda hard to forget.

abracaDavid ,

Oh come on. It’s called AI, as in artificial intelligence. None of these companies have ever called it a text generator, even though that’s what it is.

jorp ,

I get that it’s cool to hate on how AI is being shoved in our faces everywhere and I agree with that sentiment, but the technology is better than what you’re giving it credit for.

You don’t have to diminish the accomplishments of the actual people who studied and built these impressive things to point out that business are bandwagoning and rushing to get to market to satisfy investors. like with most technologies it’s capitalism that’s the problem.

LLMs emulate neural structures and have incredible natural language parsing capabilities that we’ve never even come close to accomplishing before. The prompt hacks alone are an incredibly interesting glance at how close these things come to “understanding.” They’re more like social engineering than any other kind of hack.

AppleTea ,

The trouble with phrases like ‘neural structures’ and ‘language parsing’ is that these descriptions still play into the “AI” narrative that’s been used to oversell large language models.

Fundamentally, these are statistical weights randomly wired up to other statistical weights, tested and pruned against a huge database. That isn’t language parsing, it’s still just brute-force calculation. The understanding comes from us, from people assigning linguistic meaning to patterns in binary.

jorp ,

Brain structures aren’t so dissimilar, unless you believe there’s some metaphysical quantity to consciousness this kind of technology will be how we do achieve general AI

AProfessional ,

This is all theoretical. Today it’s quite basic with billions thrown at the problem. Maybe in decades these ideas can be expanded on.

AppleTea ,

Living, growing, changing cells are pretty damn dissimilar to static circuitry. Neural networks are based on an oversimplified model of neuron cells. The model ignores the fact neurons are constantly growing, shifting, and breaking connections with one another, and flat out does not consider structures and interactions within the cells.

Metaphysics is not required to make the observation that computer programmes are magnitudes less complex than a brain.

ChickenLadyLovesLife ,

Neural networks are based on an oversimplified model of neuron cells.

As a programmer who has studied neuroanatomy and the structure/function of neurons themselves, I remain astonished at how not like real biological nervous systems computer neural networks still are. It’s like the whole field is based on one person’s poor understanding of the state of biological knowledge in the late 1970s. That doesn’t mean it’s not effective in some ways as it is, but you’d think there’d be more experimentation in neural networks based on current biological knowledge.

areyouevenreal ,

What sort of differences are we looking at exactly?

ChickenLadyLovesLife ,

The one thing that stands out to me the most is that programmatic “neurons” are basically passive units that weigh inputs and decide to fire or not. The whole net is exposed to the input, the firing decisions are worked through the net, and then whatever output is triggered. In biological neural nets, most neurons are always firing at some rate and the inputs from pre-synaptic neurons affect that rate, so in a sense the passed information is coded as a change in rate rather than as an all-or-nothing decision to fire or not fire as is the case with (most) programmatic neurons. Implementing something like this in code would be more complicated, but it could produce something much more like a living organism which is always doing something rather than passively waiting for an input to produce some output.

And TBF there probably are a lot of people doing this kind of thing, but if so they don’t get much press.

areyouevenreal ,

Pretty much all artificial neural nets I have seen don’t do all or nothing activation. They all seem to have activation states encoded as some kind of binary number. I think this is to mimic the effects of variable firing rates.

The idea of a neural network doing stuff in the background is interesting though.

NikkiDimes ,

The fact that you believe software based neural networks are, as you put it, “static circuitry” betrays your apparent knowledge on the subject. I agree that many people overblow LLM tech, but many people like yourself grossly underestimate it as well.

CompassRed , (edited )

Language parsing is a routine process that doesn’t require AI and it’s something we have been doing for decades. That phrase in no way plays into the hype of AI. Also, the weights may be random initially (though not uniformly random), but the way they are connected and relate to each other is not random. And after training, the weights are no longer random at all, so I don’t see the point in bringing that up. Finally, machine learning models are not brute-force calculators. If they were, they would take billions of years to respond to even the simplest prompt because they would have to evaluate every possible response (even the nonsensical ones) before returning the best answer. They’re better described as a greedy algorithm than a brute force algorithm.

I’m not going to get into an argument about whether these AIs understand anything, largely because I don’t have a strong opinion on the matter, but also because that would require a definition of understanding which is an unsolved problem in philosophy. You can wax poetic about how humans are the only ones with true understanding and that LLMs are encoded in binary (which is somehow related to the point you’re making in some unspecified way); however, your comment reveals how little you know about LLMs, machine learning, computer science, and the relevant philosophy in general. Your understanding of these AIs is just as shallow as those who claim that LLMs are intelligent agents of free will complete with conscious experience - you just happen to land closer to the mark.

marcos ,

It is parsing and querying into a huge statistical database.

Both done at the same time and in an opaque manner. But that doesn’t make it any less of parsing and querying.

Sweetpeaches69 ,

We don’t have to diminish their accomplishments, no; we choose to.

JackbyDev ,

It’s a shit post, relax

seaQueue , to linux in Does anyone know why SteamOS is based on arch rather than Debian?
@seaQueue@lemmy.world avatar

Gaming support is still very much a work in progress all up and down the software stack. Stable distros like Debian tend to ship older proven versions of packages so their packaged software can be up to 18mo behind current releases. The NTSync kernel code that should improve Windows game performance isn’t even scheduled for mainline merge until the 6.10 kernel window in a few weeks - that’s not likely to be in a stable Debian release for a 12-18mo.

TL;DR: Gaming work is very much ongoing and Arch moves faster than Debian does. Shipping 12-18mo old versions of core software on the Steam deck would degrade performance.

TunaCowboy ,

It’s pretty common to use debian unstable as a base. stable is not the only release that debian offers, and despite their names they tend to be more dependable than other distros idea of stable.


<span style="color:#323232;">$ awk -v k=$(uname -r) '/^NAME=/{gsub(/^NAME=|"/, "", $0);print $0,k}' /etc/os-release
</span><span style="color:#323232;">Debian GNU/Linux 6.7.12-amd64
</span>
lemmyvore ,

stable is not the only release that debian offers,

Did you mean to say “branch” rather than “release”? Debian only releases stable. Everything else is part of the process of preparing and supporting stable.

Testing branch may work well or it may not. Its goal is to refine packages for the next stable release so it has an inherent strive towards quality, but it doesn’t have a commitment to “quality now” like stable does, just to “quality eventually”.

Testing’s quality is highest towards the start of each release cycle when it picks up from the previous stable release and towards the end when it’s getting ready to become the next stable. But the cycle is 2 years long.

acockworkorange ,

Puts on reading glasses back in my day, we had a saying: “there’s nothing more stable than Debian unstable.”

TunaCowboy ,

No, I meant release: www.debian.org/releases/

Debian always has at least three releases in active maintenance: stable, testing and unstable.

lemmyvore ,

Interesting, I didn’t know they consider testing and unstable to be releases too.

dsemy ,

In my experience, Debian unstable has been less stable than “pure” rolling release distributions. Basing on unstable also means you have to put up with or work around Debian’s freeze periods.

atmur , (edited ) to nostupidquestions in Have you ever seen coal in real life?

When I was a kid, for some reason I really wanted coal for Christmas and I was diappointed that only the bad kids got it. My parents decided to mess with me one year by hiding all my actual presents and only putting a piece of coal in my stocking. I was thrilled and thought it was so cool. I have no idea why I thought it was cool, I was a weird kid. My parents gave up on the joke before I even realized that none of the presents under the tree had my name on them. I was entirely happy with the piece of coal.

Ironically, it’s become one of my favorite Christmas memories and it’s one of few presents I still have as an adult.

https://lemmy.world/pictrs/image/5f0365be-284b-4424-85cb-9ab176de33cb.jpeg

cheesymoonshadow ,

Whoa, I didn’t expect coal to look so pretty!

grue ,

There are different types/grades of coal, with anthracite being the hardest and shiniest.

https://image2.slideserve.com/5090804/different-forms-of-coal-l.jpg

BarrelAgedBoredom ,

Lignite balls

felbane ,

lmao gottem

Kingofthezyx ,

Gneiss!

wurstgulasch3000 ,

For some reason I expected coal to be round at least in some form

Zozano ,
@Zozano@lemy.lol avatar

And the texture, like a dry snowball?

MrsDoyle ,

Not really. It’s like a rock, but you can easily break it up with a hammer.

Anticorp ,

It’s like a sooty soapstone.

Zeritu ,

I just love this story.

Anticorp ,

Ha! That’s a funny story. Thanks for sharing.

Entropy , to piracy in Piracy as a quality of service issue

“We think there is a fundamental misconception about piracy. Piracy is almost always a service problem and not a pricing problem. If a pirate offers a product anywhere in the world, 24 x 7, purchasable from the convenience of your personal computer, and the legal provider says the product is region-locked, will come to your country 3 months after the US release, and can only be purchased at a brick and mortar store, then the pirate’s service is more valuable.”

Gabe Newell

CrabAndBroom ,

I agree fully. I basically never download music anymore, because I can get all the music I can think of on Spotify for a few bucks a month. And when everything was on Steam I just got everything from there. Now that all the games companies are bringing out their own stores and launchers, that’s starting to change again.

This is a lesson that the movie & TV industry seems hell-bent on not learning.

Entropy ,

It at it’s worst in my opinion with streaming services like Netflix and Hulu. They’re all starting to get so fragmented that they’re not much better than just paying for cable anymore, and that was their whole appeal to begin with. Now you have to sub to like 3 or 4 different services to get all the content you want (sometimes more) and they all seem to be phasing out their ad free tiers. It’s like they forgot what made them so popular to begin with.

where_am_i ,

Also, my pirated game runs without trackers and forced updates. Steam version somehow insist on overlays, overnight updates, and likes to show me ads unless I google how to toggle them off.

myxi ,
@myxi@feddit.nl avatar

I agree fully. I basically never download music anymore, because I can get all the music I can think of on Spotify for a few bucks a month.

I recently started music pirating because I listen to a lot of genres and I want to shuffle them. If I use Spotify, I am limited to their shitty shuffler, but if I download my music offline, I can shuffle however I want. My favorite algorithm to shuffle my huge bunch of music is to shuffle them by genre. Now I get to listen to interesting music with full control over the algorithm used.

Also, there are frequent power cuts in my area, so an offline library always proves useful. I also visit places where internet connections are not available.

samus12345 , to lemmyshitpost in It was in self-defence 🙃
@samus12345@lemmy.world avatar
shundi82 ,

Well, she’s changed a lot after her 16th birthday:

https://sh.itjust.works/pictrs/image/80d9b28b-83cc-4cc7-b11c-3b35bfbf423c.jpeg

Resol ,
@Resol@lemmy.world avatar

The nose doesn’t look extremely weird anymore.

Wow, such a massive change.

shrugal , (edited ) to piracy in what's your wishlist for piracy?

Adding proper metadata to releases. Why are we still trying to decipher release titles, why not add a little metadata JSON file to every release and make the info available to the search API?

Also keeping multiple different versions of a release in Arr apps, like ebook and audiobook in different languages. Right now I’d need 4 Readarr instances to get the English and German audiobook and ebook versions of a book, and don’t even think about letting them manage the same root folder!

AtmaJnana ,

Sorry, best we can do is some unrelated ASCII art.

lud ,

At least they sometimes include insane rants.

BrianTheeBiscuiteer ,

A separate file or if the first few bytes of a file contained the metadata.

spiderman ,

and following proper naming conventions too. why can’t releasers decided to choose one single naming convention together so it makes our job better to automate things?

Appoxo ,
@Appoxo@lemmy.dbzer0.com avatar

Have you tried maintaining a standard at work?
Now imagine if several thousand people try to decide on a common standard.

lars ,

Several thousand people who tend to be less likely to follow the path most traveled, no less

EtzBetz ,

I actually like the release titles. It’s encoded in the name that way, there’s a somewhat good standard for it, and it’s one file. I rarely need more info than what’s in the release title. And I would dislike having to carry a separate json with me.

rapturex ,

Readarr honestly feels like the most barebones of all the arrs. I tried it for a bit and decided to just use Calibre to manage my library.

Sure, I need to manually grab stuff but it more than makes up for that with the other features it has.

zoostation , to asklemmy in My cat just died. What is the point of all this?

Your cat had a good life and loved you and then died. There doesn’t have to be a point, there’s more good than suffering.

GregoryTheGreat ,

My experience has been a net negative and I don’t event have it that bad.

zoostation ,

The world does suck right now. All the more reason to find something like a cat or some other thing that makes you happy to help ignore all the bullshit.

GregoryTheGreat ,

I have a cat, two dogs, married, high paying 30 hour a week job, no debt, several good friends, tight family. Still net negative.

zoostation ,

I’d ask to switch with you, except I know very well that anyone’s life can be much more complicated than it seems on the surface, and happiness does not automatically come from any of that. Therapy doesn’t help everyone be happier, but it’s something worth trying or trying again.

Mango ,

No there isn’t.

FaceDeer , to asklemmy in Is it safe to eat things like chips after a building fire?
@FaceDeer@kbin.social avatar

I would imagine that anything that's in an airtight sealed container, such as chip bags, would be fine. That would also include cans. Your refrigerator and freezer, also, would probably count as a sealed container.

Smoke in a building fire can contain all sorts of weird chemicals from burning plastics and whatnot that could get deposited onto stuff, so even if you can't see any soot in your apartment I wouldn't dismiss all concerns. How tight is your budget?

P1r4nha ,

Yeah, I’d be generally concerned sleeping in the apartment, but your advice concerning the food seems sound.

tsonfeir ,
@tsonfeir@lemm.ee avatar

Crack a window, then crack that mouth and pile in them chips 

bartolomeo ,
@bartolomeo@suppo.fi avatar

Is it just me or this now vaguely sexual?

intensely_human ,

Nothing’s sexier than slightly cracked open lips

MapleCoffee OP ,
@MapleCoffee@lemmy.ca avatar

The budget isn’t super tight, but nothing is open yet where I am. I’m just a bit hungry at the moment, because I missed eating for most of yesterday.

When the stores do open, I’ll be at work and will have to wait until after my shift to buy more food.

I hadn’t heard about this aspect of fire safety before today, so I figured I would see if anyone on here knew more about it. Thank you for responding!

tsonfeir ,
@tsonfeir@lemm.ee avatar

Don’t waste good chips on a silly worry like an asbestos fire.

MNByChoice ,

If you can, perhaps talk with your boss about the situation. “I am hungry as my apartment building had a fire and all my food might be covered in toxins”, is a one off that gets some extra dispensation.

Edit: your response as 6 hours ago. You either are the chips, or are at work.

intensely_human ,

I’m starting to think OP is the chips

radix ,
@radix@lemm.ee avatar

I love the implication that, if they ate the chips, then they are not alive to be at work.

Synthead ,

I’d wash sealed containers first, then go for it.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines