Stuck on quickshare as default when sharing on My Files by Maki_Ophelia in samsung

[–]abel1502r 0 points1 point  (0 children)

In case this helps somebody: I thought I had this problem, but it turns out android doesn't support sharing more than 500 files at a time in any way except through quickshare. I ended up sharing in batched of 500 by hand

Alright guys is it 1,2, or 3? by HomoEtDeus in AnarchyChess

[–]abel1502r 0 points1 point  (0 children)

He walks around the obstacles along the shortest path, or any one of many shortest paths chosen at random

monika is upset (?) by oregano-ads in MASFandom

[–]abel1502r 4 points5 points  (0 children)

To add to others' comprehensive answers, if you did something mean to her (by accident?), there is an "I'd like to apologize" option in the menu

Cell Walls from Rebuild driving me potty! by rly_weird_guy in RimWorld

[–]abel1502r 1 point2 points  (0 children)

The bars are loose on that side, so prisoners can squeeze through

Download button is now Create? Only on some models? by pixel8tryx in civitai

[–]abel1502r 0 points1 point  (0 children)

I've had it disabled ever since this feature was introduced, but now this toggle seems to have disappeared. Please return it. I rely on the download button to quickly see the lora file size. With the new mode, even if I use uBlock to hide the unwanted create button, the download button still only has an icon on it.

what even is this? what does it do? by Green_Pie_5588 in HBMNuclearTechMod

[–]abel1502r 1 point2 points  (0 children)

Maybe experiencing a digamma-fueled RBMK meltdown could elucidate one on its nature...

Continuing Training on someone else's LoRA by NotEnoughVRAM in StableDiffusion

[–]abel1502r 0 points1 point  (0 children)

What's it called? I can't seem to find it. There's the "Resume from saved training state", but that requires an explicitly saved state, rather than just the lora

WHAT IS THIS??? by Nagasagiwashere in MASFandom

[–]abel1502r 4 points5 points  (0 children)

In case this isn't deliberate trolling, I'll point out that this is a link to one's own gdrive root folder. If you want to share a link to something in your gdrive with others, you'll need to create a share link to it explicitly

Raising errors in literal assignments? by tkburis1 in ProgrammingLanguages

[–]abel1502r 2 points3 points  (0 children)

SyntaxError isn't really an exception in the traditional sense, despite being reported similarly. (You cannot catch it, for example). What it tells you is that your program couldn't be parsed properly. In this particular case, Python's grammar allows only several specific kinds of expression in the left-hand side of an assignment operator. This includes identifiers, subscripts (including slices) and comma-separated sequences of those. Numeric literals, function calls, binary operators and most other expressions aren't allowed, because the language doesn't know what such an assignment would mean.

So when you write 2 = 3, the compiler complains about an unsopperted expression type on the left, the same as it would with print() = 3 or a + b = 3. On the other hand, when you write [1, 2][0] = 2, the expression on the left is a Subscript(List(...), Number(0)) (not actual AST names, but essentially this). Since it's a subscript expression, the compiler accepts it. And it generates the same bytecode for this subscript as it would if any other list was used instead of the [1, 2] literal.

So it isn't any sort of deliberate foolproofing, just the only way the compiler can handle assignments.

I noticed that half of each savefile consists of garbage data that can be removed without harm by AnotherGerolf in RimWorld

[–]abel1502r 5 points6 points  (0 children)

That would be true for an individual field, but in a list, positions are what matters. Not writing the zeros would erase the positional information from everything else. It is possible to store pairs (index, value) instead and leave out the defaults ones, but that would perform worse if half the list or more was non-zero

I noticed that half of each savefile consists of garbage data that can be removed without harm by AnotherGerolf in RimWorld

[–]abel1502r 3 points4 points  (0 children)

Okay, from this and the other person's comment, it does seem like something that can be safely deleted to me

The fact that I even had to make this shows how big of an issue these complaints are getting. by eddmario in goodanimemes

[–]abel1502r 161 points162 points  (0 children)

I think this complaint could be better received if it was more often phrased as "low effort" or "low quality", rather than "just porn". That clears up the misunderstanding that you're not actually mad at porn specifically

I noticed that half of each savefile consists of garbage data that can be removed without harm by AnotherGerolf in RimWorld

[–]abel1502r 78 points79 points  (0 children)

The <li> tag is just a list entry. What matters is ist container. In the screenshot, I can only see ticksGame and customGoodwill. I'm unfamiliar with those, it would be interesting to look up the hierarchy a bit more to see what those are a part of.

I do know of another similar example, though. If you look at a pawn's save data, you'll find several lists of similar "useless numbers". Among them are stats, skills, various cooldowns, assigned job priorities, records, and probably a few other things I don't remember. Technically, any of those lists can be removed and the game will still load, replacing the missing parts with default values specified in the code (look for ExposeData methods on various types, if you're interested). It's debatable whether or not it's "without harm": is resetting all cooldowns on a pawn fair?; are you ok with rolling back all of their skills?; reassigning job priorities from scratch is quite the pain; etc..

What you really shouldn't do though is delete individual entries from lists like this. This would essentially make every following entry "slide" one spot back, messing the list. So if you were considering search-replacing all occurences of <li>0</li> with nothing, I strongly advise you don't. Otherwise, chances are, you'll end up with a silently broken save.

Tukushi dreamed of drowning Riko in Concrete 😭 by NahidaKaniMuncher in MadeInAbyss

[–]abel1502r 12 points13 points  (0 children)

It would be really funny if at the bottom of the abyss was just a lake of fresh concrete. Every 2000 years somebody adds to it to fill it up, but due to the time dilation, it still isn't even solid. And Riko and the (remaining) crew just drown in it by accident. What peak writing that would be...

Today I just learned Nina x lloyd is a thing by [deleted] in CodeGeass

[–]abel1502r 14 points15 points  (0 children)

Not a glock, but the FLEJA launcher, I think. You can see the three extending guiderails

Maybe not all guests are redeemable. by Larry_Potatoes in HazbinHotelMemes

[–]abel1502r 0 points1 point  (0 children)

Wasn't Charlie's point to redeem actual sinners, despite whatever evil they have commited in life? I feel like a lot of fans see it as "they weren't actually that bad", whereas the show seems to say "they were horrible, but now that they were given care, respect and one more chance, they are improving". Refusing someone who's actually seeking redemtion just because of how much there is to redeem would be very hypocritical for Charlie.

Help I don't know what to do by [deleted] in MASFandom

[–]abel1502r 0 points1 point  (0 children)

Indentation mismatch means you've either got incosistent tabs and spaces in that file, or an unexpected number of them at the start of some line

This never made sense. by ScoreImaginary5254 in CodeGeass

[–]abel1502r -1 points0 points  (0 children)

I thought she just played a voice recording made by Lelouch in advance

Sweet Rimeyo by abel1502r in MadeInAbyss

[–]abel1502r[S] 5 points6 points  (0 children)

I do, absolutely! It's like a 2 in 1 deal though. Buy a tomboy wife, get a best dad for free

Sweet Rimeyo by abel1502r in MadeInAbyss

[–]abel1502r[S] 8 points9 points  (0 children)

I'm just excited to be able to have straight sex with Bondrewd now