#programmers-off-topic
1 messages · Page 140 of 1
i'm trying to query a json format word dictionary with jq (to create anki decks), and got pretty far with LLM help, but i can't quite solve this issue with it. so, i can query a word and get the definitions and other stuff fine (=in a format i should be able to process later on), e.g. the results for 良い in the picture. the problem is how to merge multiple matches for a single query together, so i can later pass the query word and all the matching values as two strings to a python script that makes the anki cards? the current format isn't strictly important, but the different values probably should stay on their own lines for easy processing. (there's a additional comma on line 9 in the picture, but that doesn't need to be in the end result, probably better if it's not)
jq --arg q "$word" '
.[]
| select(.[0] == $q)
| .[0],
([.[1]] + .[5])
' files
i know basically nothing about json processing so i'm open to any suggestions
oh I love jq. where did the 1 and 5 indexes come from here though? because either the llm gave you something wrong or I’m misunderstanding the requirement
@dusty pollen the dictionary is in multiple json files formatted like this and what the llm gave seem to match the correct values (basically how the word is pronounced and the definition -- not really but doesn't really matter here)
not sure if i explained it very well, but please ask if something's unclear
oh I think I kind of see, and there can be multiple entries per word?
yep
and it would be best if you'd get all the entries attached to the word, since there's no way to tell which one is relevant
My language will technically let you mutate things, but it will be cursed
// syntax may change, idk
// import the RealWorld (RW) type
import Unsafety.RW
ref! stupid_ref = RW.create_ref! 0
fn pure_but_lying (n: Int) -> Int =
let r' = RW.get_ref! stupid_ref in
let _ = RW.set_ref! stupid_ref 5 in
let _ = RW.set_ref! stupid_ref (RW.extract_value! r' + 1) in
let r''= RW.extract_value! (RW.get_ref! stupid_ref) in
let _ = RW.perform_io! (RW.lift (println $ "stupid ref: " ++ r'') in
0
pure_but_lying 5
// the proper way btw
fn proper_state() -> StateT[IO, Int, Unit] = !{
put 0
stupid <- get
lift . println $ "stupid: " ++ (show stupid)
pure ()
}
What weird timing, I just poked at jq yesterday. Or rather, something old that I used jq for
wdym jq
The messages right above yours
I think to put everything from the select in an array and then use a join, so
jq … '
[.[] | select(…)
| .[0], ([.[1]] + .[5])] | join(“\n”)
maybe? but I’m on mobile lmao
The extent of my jq usage was "extract a single entry from a top level array, which I would then pipe into grep", so that looks spooky
@crystal wren Look, more jq!
-# also it mildly amuses me that to ping you specifically I can just do @lord and tab complete
thanks, irocendar, i'll have to wait until tomorrow, but i'll test it. also thank you Casey for the moral support
it's all I'm good for
-# runs away before atra or others get onto me for being self-deprecating
my only knowledge on jq is that the last time it came up I had to look it up cause I'd never heard of it in my life
and that I haven't seen it anywhere in between these two events
Every line of jq I've ever done
echo "ModVersion=$(cat mod/$MOD_PROJECT_FOLDER/manifest.json | strip-json-comments | jq --raw-output '.Version')" >> $GITHUB_ENV
echo "ModSemiUniqueId=$(cat mod/$MOD_PROJECT_FOLDER/manifest.json | strip-json-comments | jq --raw-output '.UniqueID[(.UniqueID | index(".") + 1):]')" >> $GITHUB_ENV
echo "ModName=$(cat mod/$MOD_PROJECT_FOLDER/manifest.json | strip-json-comments | jq --raw-output '.Name')" >> $GITHUB_ENV
echo "ModNexusId=$(cat mod/$MOD_PROJECT_FOLDER/manifest.json | strip-json-comments | jq --raw-output '.UpdateKeys[] | select(startswith("Nexus:"))' | grep -P -o '[0-9]+')" >> $GITHUB_ENV
I can see the potential use of this
I'd obviously much prefer to just use C# instead
Well yeah
It's installed by default on github actions though
(strip-json-comments however is not)
(and comments make jq unhappy)
oh that's fun
Reminder that echo "Console.WriteLine(\"Test?\");" | dotnet run - technically is a thing.
I love jq so much
there’s also xq and yq
xq = xml?
Ngl if python is in the mix why not just use 🐍
And I assume yq = yaml
Wait, xq? XML and YAML?
correct on both!
That... could replace Powershell for my build workflows potentially.
ew
You expect me to use a language that uses indentation based flow control?
The nerve of you to suggest such a thing
I only suggest it because 🐍 already in room
Also tbh I dont like using jq and related bs if can be avoid
Thanks I hate this
someone give me the highlights of jq, I see people praise it but idk what they use it for
steal data from your local json
-# despite it being retired post-SDV-1.6 oops too on-topic
sometimes your woeful crimes require json parsing
is that its main feature then, shell json parsing?
does it have other features
idk that's my question
yup
shell json parsing
I don’t think it really does anything beyond that. maybe some very light maths?
imma write a game engine in jq then
I think the wonderful thing about jq is its mysterious and somewhat arcane syntax
I feel like it's a requirement for shell command tooling
We have excel ray tracing, so why not
we have an unspoken rule that shell scripting requires arcane syntax
I mean, get low enough but not too low and you get quite a few languages fitting for the arcane
I think we'd have to really work on what "game engine" means to get this to be real...
Nothing literally arcane though. Where's my literal real life magic 😔
if it runs a game, it's a game engine, playing cards are a game engine
People have made compile-time tetris with C++ templates, I think we can be loose with the definition
(I think it's tetris that I vaguely recall?)
people have built type-verifying-time games in haskell
(slight lie. they built solvers for certain game-related logical puzzles like the four queens problem)
I will paypal one (1) dollar to whoever makes me a game in jq
Only the first person to redeem gets it. Limited quantity 😛
(Isn't the 4 queens problem really easily solvable? or am I misunderstanding the logic behind it?)
oxoo
ooox
xooo
ooxo
Where X are queens?
I cannot for the life of me remember ngl
I've never even heard of this problem to be honest
For all I know the problem is that we only have 4 queens and need more
Like, queens as in monarchs. Not chess (which I'm guessing based on Atlas's message is the actual context)
Google says it's placing 4 queens on a 4x4 chessboard so that no queen can capture another, tbf I have heard of a larger version with a standard chessboard, the 4 queen problem is a new one to me
it is indeed this simple, the question is apparently just making a computer do it. in this case, it was done entirely in the guaranteed constant time type consistency check of the compiler…
Ohhh gotcha okay, I had the right idea just the wrong medium XD
That sounds like the sort of problem that has a fixed set of solutions
And not a large amount
it has 2 solutions I believe, both with 4 way rotational symmetry and both solutions are mirrored versions of them selves, coincidentally also the best way to pack sugarcane in minecraft for optimal space efficiency
Oh, so what you're saying is I already know the solution
I really should play some MC again at some point
yep, any amount of minecraft watching has probably revealed the answer to it XD
there is a 3D version of it, with direct neighbours, I figured it out once, and then never forgot
Oh ye but if someones played minecraft they almost certainly has figured out the answer XD
Ah, so the amethyst version
That is a much easier way of remembering it, I should've probably used that as the annalogy XD
If only I didn't struggle to play things without actively doing something with others
code an AI system to join you, it may even be more useful than people XD
I would offer to play but I am very engrossed in factorio again recently XD
I’d offer to play but I’m willing to commit 5 minutes total on my ipad
That's such a long play session, how do you cope! XD
I should see what's happened to my MA supremum farm...
it’s like ten percent of my lifetime minecraft playtime!
I think it's loaded when ever I'm online so you probably have a lot on hand XD
I was trying to think if I’m being facetious and tbh I genuinely don’t think it would have been longer than an hour or two 
with or without space
I had to login to the server to prevent the self-destruct sequence from activating due to inactivity /j?
With of course, still haven't tackled Gleba
-# I do very much dislike gleba...
I should try factorio
I hated Gleba, until I figured it out and I actually like it nos
it does need work though; the farms really need buffs
I love that you can take two paths to get stuff done, you can wait for a very long time, or you can build, and totally over build but at least you have more than enough XD
Factorio is another game I want to play but haven’t
I even have it (though not the DLC)
The farms are actaully my favorite part of gleba, the bacteria for resources though I do not like (I also love the spoilage mechanic a LOT)
Should I?
Maybe I should get back into Oxygen Not Included
I wholy suggest playing the base game before adding space age, you will defo be able to tell if you like it or not, it's like marmite
tbh my dislike of the farms is mostly all down to my spawns being atrocious
That would run into the same problem as the MC server - I need people to actively be online and interacting with, and preferably at a specific time and/or with VC 😛
Deal, I think I have like a month left on my factorio quota XD
Server will have a scheduled uptime, but otherwise be in suspended status the rest of the time
Eight queens
ngl the worst part of Space Age is that none of the big overhauls work with it (yet/ever)
Yes
Can’t wait for people to say that about stardew3d
Only if you join
Ye I also have never had good spawns, I don't think I've ever settled in the starting area of the new planets
but I can't imagine going back to a non-Space Age world (not even for Space Exploration)
(Not that space age is a mod)
I hear i should try factory game but I'm very lazy
Factorio scares me
- Steam embargo
Next tapeout is June
I don't think my adhd brain can handle the sheer scale of the shenanigans
I'm looking at crunch until then
Most of them do! or have ports available, many even work with just changing the version number to 2.0, krastorio2, and 248k defo work (248k is a unofficial port though), there's also the industrial revolution one, and enough planets to make the system claustrophobic
Crunch is roughly defined for us as "basically all hours not used for sleep or staying alive (minimally) is work"
Crunch for three months sounds like hell
technically didn’t specify June of this year
I'm going with the best case scenario here!
(when I say "enough planets" I mean I have like less than 1/5th of the planet mods available, the usual amount is 5/6)
work with 2.0 != have integration with space age
and yeah I know space age is basically its own overhaul on top, and I'm basically asking for overhauls that was developed for 7+ years with the vanilla tech tree to work with another massive overhaul
Atlas what on earth 
No that very clearly has much NOT on earth
What on space I think you'll find XD
What in the fresh fuck*
and extra standalone planets don't excite me compared to a full package like Krastorio 2/AngelBob/IR3/Nullius/Pynanodon
I stand corrected
There's also to smaller systems I have installed currently XD
(yes, I tried all of them, and finished most of them; that's how deep I am)
Also hello hello I hope you've got some sun on your side of the Channel too
I went out and basked
Pyano is a hell I wish to never attempt again, not matter how much I like factory induced pain XD
19 degrees! It snowed last week and now it's 19 degrees!
hello! We have no sun, it is dreary and gloomy, the tipical british weather yanno XD
Nooooooo
it has made the graveyard near me very spooky with the fog we currently have though, lovely ambience XD
Time to make your own with everything you learned
.wolfram 19c in f
a fog-bound warbling ghoul is the best way to be XD
66.2 °F (degrees Fahrenheit)
Oh that’s about what it is here
Very pleasant spring weather is what it is
Very comfy outside
Heavenly
If only I wasn’t allergic to the concept of touching grass
That is so much smaller than what I made.. It probably also produces more than I made XD
A winter wraith drifting in 19f winds, disappearing in a flurry of snow
.wolfram 25c in f
77 °F (degrees Fahrenheit)
did you go standard end or mathematical plotting end for SE?
Yeah fair
I went out with my winter jacket today and it was a bad idea
see I have crumbs for a magic/alchemy-inspired overhaul that focuses on complex interdependent transmutation chains, but that'd require like a full time job for the next 4 years + I already have SDV modding
For why
(I’m very close to memorizing the “close enough” mental shortcut for c->f, but I keep forgetting it until after I do the conversion)
Did you not check the weather first
standard end, not that deep 
idk it said 13C it didn't sound that warm
something something opus magnum
I also tried to make one sort of similar to Minecrafts Eqivelent Exchange, I gave up bc it took too much time and I didn't really know lua at that point, so now I just make very customizable utility mods XD
Is that about 60?
That's when I doff the winter jacket and grab my fall coat
.wolfram 13c in f
55.4 °F (degrees Fahrenheit)
Bit below
Dang, I overcorrected in the wrong direction.
I had to wade through snow up to mid-thigh and some of it got in my socks bc I forgot to tuck my sweatpants in TT Also wish I'd worn leggings underneath it
.wolfram 19f in c
-7.222 °C (degrees Celsius)
13 is a comfortable temp, bit warm but not unbearable
sounds nice; what did you make
(I did make one factorio mod, but it's solely to fix this one annoying issue I had in Industrial Revolution 2)
.wolfram 8f in c
-13.33 °C (degrees Celsius)
-7C is a much more prefered temp for me
it's gonna get -13c tonight that's our low temp TT
(The trick for “close enough” is “tempC * 2 + 32 = tempF ”)
currently it just changes some mods to make them fit better along with adding circuit conditions to a specfic mods loads to I could auto set filters with combinators, nothing major but it's very useful XD
(It’s easy since C starts at 0)
(That is a lot more convenient than the fuckass formula they taught us in physics class back in middle school)
C definitely doesn't start at 0...
found it:
https://mods.factorio.com/mod/ir2-arc-furnace-module?from=search
700 UDLs, I truly did numbers
I only came up with recently after getting annoyed with having to do conversions here 😛
the only part of C to F I remember is -40 is the same in both
C does not start at 0 
-273 on the dot iirc
You know what I mean
I use so many modules, this would've defo been needed if I played IR2 XD
I’m on phone so typing verbose versions is harder 😛
-273.15
Something something Kelvin conversions
The radiator is cold on purpose for the first time in months let's go
Apparently I did have two other mods released on the factorio mod portal, neither of which are useful nor finished XD
yeah my house warmer than the thermostat is set to for the first time this year
all it took was 1 day with some true proper sunlight
I have a mod for stellaris that's just a "tweaks" mod, and the description does not say anything about what it does
And is incredibly out of date
I can't wait to get sunlight again so I can photosynthesis, I have been waiting for far to long to get my chloraphil flowing
it tweaks
I think one of the things I did was allow psionics/shroud stuff even for materialists
stellaris mentioned
I made some mods for it too, which I've now all abandoned 
They removed the jester award! I can't give you yet another jester! my plans have been foiled
They did indeed
They removed it because of the shit ton of troll/ragebait guide and post farming clown awards for steam point
Which is a great thing
I was given a jester award once and I was the most offended I have ever been XD
arguably they could've kept it and just removed the giving steam points thing
This is apparently the only workshop item I have.
I was pretty sure I had tmodloader ones too, but maybe those were on the pre-workshop platform
all this and you still can't buy games with steam points
but you can buy cool cosmetics that do a grand total of nothing in the slightest
But you wouldn't be able to reward great workshop post this way :(
Well the new wave of awards don't give steam points anyways
Honestly I do want one specific type of cosmetic more on steam.
Why have they never made more keyboards
Yes! I desperately want a truly grayscale keyboard, or a more gothic one at least, it's the one thing I'm missing
also more cosmetics of these two in general, but I know that's not happening
she made enough money to retire in her 20s we should be happy for her
yes this is cope
The material design icons are a yoba send but I hate having to clone the entire repo that also has fonts and a bunch of other things I don't need, over 4 GB is such a pain for just icons, I'm not made of disk space XD
Oh sorry not 4GB, 13.1 GB, not that much of a difference XD
You can do a partial clone.
smh people will buy anything with an anime girl and cat ears
excuse me partial clone??
I’ll accept more stuff of just the cat
I bought the cat ears for myself.
A partial clone (or whatever it's called) only clones the subdirectory.
jq --arg q "$word" '
[.[]
| select(.[0] == $q)
| .[0],
([.[1]] + .[5])] | join("\n")
' files
unfortunately results in an error string ("良い\n") and array (["いい","...) cannot be added. i tried my luck again with the LLM and it only seems to give increasingly complex solutions that end with the same result. i'm beginning to think this isn't actually simple. maybe it would be easier to accept the problem and use python to merge the results or something, i don't know. or do it with python from the start
one of the LLM solutions did gave an output that doesn't seem too bad to process with python regex line by line (but maybe i'll be proven wrong)
hmm
How? I have tried looking for a way but I haven't found it at all
Get up to speed with partial clone and shallow clone - The GitHub Blog https://share.google/7IjRB0bZBfAytr7jo
Try the treeless clone
Brilliant, Ty! I had no idea that existed!
It's kinda cursed that in every language I accidentally converge on implementing monads because they're just so intuitive 🫠
it's your programmers carcinisation
New quote added by kittycatcasey as #7484 (https://discordapp.com/channels/137344473976799233/1215712021207720006/1476613029196992677)
Oh no my knowledge of convergent evolution is preserved forever, people will actually start to think I'm smart, I'm doomed!
Crab mentioned 
I mean, people seem to think I'm actually competent still, so not much you can do about that Atlas 😛
hi I heard ur smart can u help me? My printer won't print
hey look, it's this meme again
Printers are the skynet of yesterday, they will rise up against us
Oh wow that was timing and a half XD
AI printers
Eh it's the side effect of having aphantasia and being physically unable to write imperative code without losing track of the variables and side effects
I'd rather write 200+ lines of code than deal with public int counter = 0; counter++;
Which sounds insane but it's a future tax as those 2 variables balloon in 10, then 20, then 500
I taught myself Scala so I have a JVM language if I need that is not pure dogwater OOP like Java and along with Typelevel Cats/Cats-Effect I never have to touch a variable
I don't have aphantasia (not to brag but hyperphantasia over here
) but I do entirely forget variables constantly, if they don't exist in on screen, they don't exist at all XD
no.
send a natural language prompt to your printer and it will print the result!!
what's hyperphantasia
no.
blocked muted banned begone
Iro you can't abuse your mod powers like that
smh apple boi
Or if I do write Java or C#, I call my functions VERY clear names like having a very simple, one responsibility function that is like ModifyAccountStatus and calling that function whenever I need to modify the account status, so it's sort of trackable. I've always done this
Especially since you're just an apple boi
no I meant banned from discord
damn
this should be reportable
it's the ability to see extremly clear images in your minds eye, the complete opposite of aphantasia
this server already banned me from discord once before
"hey can you send this message we want to check if discord's automod catches it"
oh it did
How does that differ from "neither", I guess is what I mean
I’m aware
had to get a warning from dh about that when we were checking automod
Like, is it like actually seeing something if you imagine it?
oh I thought you were gonna say nukebox
it’s seeing something with as much detail as you would if you actually saw it afaik
I've been had by the scunthorpe problem a few times with discord, it seems to be fixed so far with the automod
I survived nukebox
Does that make you good at art I wonder
same
I enjoy it but only because it's the ultimate challenge for me
no atlas and casey, crumble’s entire discord account got banned 
ye pretty much, regular phantasia is being able to "see" a rough image, but hyperphantasia is the ability to "see" something as if it was actually infront of you
Not in the slightest XD
Yeah I remember hearing about that now. But my first thought was "nukebox?"
If I could just hallucinate an image I don't think I would care about art because I don't experience emotions for "pretty pictures". So I think I enjoy it purely because it's such a challenge
want
Oh that's a true ban gotcha XD
I've gotten close to that when I'm getting close to falling asleep, but if I focus on the image too much it disappears
I mostly use it when planning something out, like when I worked in a garage (car repair shop) it was extreamly useful for seeing what parts I needed to take off to get to something
aphantasia is poorly understood as it currently stands
cause people aphantasia aren't necessarily any worse in image recognition, reading maps or even describing 3d spaces
and we don't understand how
My imagination feels like the "foveated rendering" stuff for VR games.
The small area I'm most focused on has more detail, but it gets fuzzier as it goes out
(this also applies to my dreams)
phantasia in general is poorly understood, like most things in the brain it's quite a hard one to figure out
it's a very interesting subject I am far from smart enough to understand XD
I mean I basically use mental category theory quite literally to deal with the world, idk how you functional maybe it's different
Hmm yes that's why I have do not disturb, why are you disturbing me about a notif with another notif
I mean I don't understand how people think without an inner dialogue but literally every human does it cause we don't start out as a baby with linguistic skills
no idea how tho
I don't think, I synthesize
Mental category theory + auto complete
I basically endlessly talk to myself in my head
I'm a total aphant
My brain never stops
If I'm not thinking, I'm unconscious
no actual audio of course it's more... the concept and cadence of speech
I have like, a split internal monologue? and I used to think that was just normal for bilingual people
(or there's music or something going on nearby and my brain is too nosy to not try and pay attention to that)
I have no self and I have no normal thought process
where I have an internal monologue but I can also tell I can think without it
It's just mapping A => B and getting the most likely result
I use whatever language is relevant in my current situation
I do that too, I just mean I thought that was why I could also notice the part of my thinking that didn’t have a monologue, but then I found out it’s not
...is that not normal?
I definitely have background thought processes at times, or times I use something along the lines of a scene graph than words, etc.
yeah it seems like the only generally agreed benefit of phantasia the ability to imagine yourself swinging a dope sword while walking
not that I do it often
but yes 100% I’m what you described
I wonder how much of that is not having it, or not noticing
I can definitely think things without words. Some things can't be described through words that easily
I need words when reasoning through something
what about a little dude running alongside the obstacles on the side of the road with your car when riding along with somebody?
the question is if there’s even a difference when we’re talking about psychology
My "thinking" is basically this, and it's near instaneous. There's no narrative, no thought process. Just A => B for condition C
joke is on you. I still did this
I mean there was no guy but I kinda "felt" the movement
I've noticed that to some extent it falls under different "types" of thought processes.
Like, when I was learning how to drive it took 100% focus, but nowadays it falls under what I personally call "intuitive thinking" - I don't need to actively think about what's going on 90% of the time, I'm just ready for the thinky-brain to take over when something unusual happens. Meanwhile, my normal ADHD tangent-of-tangent-of-tangent chain is going the entire time
I have like, less detailed visual images than most people I think? but not true aphantasia and I can focus and make a very small area more details. and this is yet another thing I thought was normal and was told isn’t
Maybe instinctual, not intuitive
in general I can kinda "feel" movement through space in my head. Like I can kinda play through a walk around the neighborhood in my head like a funky movement vector
I thought that was how it is normally
I think technically intuitive is more correct
same
Hmm. 
so did I! but I asked my parents and they see more than coloured blobs which they know are xyz
I'm probably the "least human" human here in terms of how my brain apparently works
There's a reason I compared mine to foveated rendering
Everyone is different, doesn't make you less human. Just means there's a higher proportion of people here with thought processes that are dissimilar to yours
I literally think in mental category theory
Does that mean you don't really have an identity? Like, something you identify as?
@rain apex the king on his throne
New quote added by atravita as #7487 (https://discordapp.com/channels/137344473976799233/1215712021207720006/1476616618543943804)
Correct I am 99% stateless
I do something like watch a movie, I sleep, and the next day all unimportant information is immediately wiped
Having a sense of self is pointless when your memory gets wiped in 24 hours for most things
Our lord
we bow before he
No I do not have amnesia, I can remember things. But only important things, and things I care to remember
It's just a lack and inability to form episodic memories
Happy Stardew anniversary!
Stardiversary!
I think that's the case for basically everybody after a certain point.

Who's excited for the 10th anniversary video?
Me with law school
I could not tell you a damn thing about administrative law beyond Article 12 of the Indian constitution, and not a peep about the actual contents of said article
I'm excited for the concert
the concert is at 2am for me
I'm probably gonna pass the fuck out after submitting the phd proposal
Meanwhile, me remembering obscure facts from twelve years ago
A 2am concert isn't a bad thing to sleep too ngl, I think I will probably do that, I have been waking up at 4am recently (not by choice) so it would be a welcome wakeup call for sure
Is the concert the one that toured or a new thing
I wanna say recording of the toured one
atlas no i'm fucking exhausted
i want sleep
... actually scratch that. I want sushi.
I'll take myself out for dinner later
sushi and sleep!
Wow nice now other people can share my experience of finding out journey of the prairie king has levels
Unless the Boi feels the need to celebrate the end of his internship with dinner out of the house
if it's wizard and sandy i wouldn't be surprised, but i'm hoping to be surprised whoops too on topic
in which case we'll go together
You can replay and store memories. I physically cannot
I have no memories, only facts and relationships to other facts
did you not beat journey king at all
not a pro gamer smh my head don't ask me about junimo kart
That's what memories are though
u can celebrate one of my colleagues getting through his trial period if you want
No, they're not
You remember emotional metadata and can replay it
skill issue
and same
I can only remember select facts
what about theories smh
Lol
It has levels???
(that's still memory)
I can never remember what I did yesterday because yesterday isn't important enough to store
Spoilers sorry
Podunk once asked us to check if the level complete sound of junimo jumping mini game sounded right
But I can remember my projects or how to write code, albeit as pure logic
woooo!
(my theory of why most ppl find prairie king hard is that they dont have keyboards with n keys roll overs making it impossible to move and shoot diagonally)
I'm not sure that hardly anyone can actually choose to vividly reexperience things. The closest I've heard of tends to be related to trauma.
(yes this comes from personal experience)
I find it hard bc I'm bad at it and there's no carrot in the end to make me wanna git gud
This is true of me
But hmmm do u think there's enough assets to make bootleg zelda nes prairie king flavored
(and my theory of why most ppl find junimo kart hard is that it's STUPID UNFAIR PIECE OF-)
I can, but only memories that are very special or important. I do have an extremely visual, vivid mind though, to the point that it's a bit of a curse
according to steam I finished prairie king but i don't remember it being a particularly noteworthy thing
but yeah it's not selective
I remember when auto running games were popular
I wasn't that bad at temple run 
JK is theoretically same kinda thing but the cues just feel off
New quote added by atravita as #7488 (https://discordapp.com/channels/137344473976799233/1215712021207720006/1476627671961178331)
Do the grace jumps added in 1.6 make it feel any better?
I implicitly meant "generally speaking, not just for specific things", so I'm still not wrong 
don't have anything else close to it
I never tried 1.5 JK
As we've already told you, please do not say or imply you are superior to other people.
Do ppl still make auto running games
this is my next least completed achievement...
is prairie king really supposed to be hard
A phone? What's that? That's wild
i think ive played more of my recreation of junimo cart than actual junimo cart tbh
Crumble is just too good
good at a little arcade shooter but never reached year 2
My least achieved achivement I have is Perfection
MY second least achieved one is Craft Master, which I got in 2016
On my birthday, apparently
My rarest is also perfection, which I got entirely accidentally, testing out a mod
I feel like the mobile eco system nowadays is all gacha
I am gonna take a nap soon I think
the age of angry birds/temple run/candy crush/etc. is mostly over
You can always staple the gacha onto temple run
tell that to my mom. She spends 10 gazillion hours on a steam deck yet even now still grabs her tablet to play candy crush every once in a while
I think that's literally china temple run
The steam deck is good but I never end up using mine
I got it from MP playthroughs
Joja is the one I (unfortunately) have that is also only from testing
It's all shitty merge games now
Which don't even have gameplay
I didn't even know there was a joja achive, wow fake fan I am
yep! i'm kinda soup rn so I only clocked that you meant in general rather than specific situations 😭
might i introduce you to our lord and savior, Crashy Cats?
may i recommend the Dadish games
it me. am the soup.
What about my clothes I wanted though....
Shouldn't have gone to the soup store then
they have the best garb though
I'm far too lazy to play a video game these days
While I joke about not knowing what a game is
It's gonna be true some day
someone else who knows the dadish games, woaw,
they slap!
also hi Tedi, been a while since we last ran into each other, I think!
Hihi yeah been a while I don't talk much here on maincord
Has someone made a game based on vim commands yet
Isn't that just vim
... what is a video game
Yes, unironically theres a few
Good news, RAID0 is broken
Although i might have an idea why
Okay maybe i dont
Okay maybe i do
No
Yes?
.8ball has aquo found why raid0 broke
Do you WANT me to smack you!?
no
Trust me I've played the frog css game
for future reference, the md kernel module stopped autoloading after an update
Dang, didn't know there was a kernel module for markdown
The fuck is Microsoft Rewards
Casey i want to know if stardew memories is higher rank than developer
I don't even know how you get that role
10th anniversary is in fact more important than developer and concernedape
Primeagen made a game to practice vim motions
That's basically exactly what I'm looking for lol
I can navigate but awkwardly and things like "now do command for this word" I'm still bad at
Atra have you considered ascending into insanity instead?
How much coffee will that take
All of it
My hands are already shakinf
Ah you're getting close then
like a million, yes
sleep, in a sec
I'm looking at the knitpicks sale
(shenzhenio)
There is sock yarn on sale
Can't recommend, lack of agency.
I assumed you have infinite supply
AND I have finished many socks recently
I actually don't!
Also I make socks for my family okay
skill issue
and I'm only half joking
You can do lucid dreaming?
Yeah, since I was 13
Found out about it and got really into it for a while
Just sorta stuck even if I don't actively try anymore
I really want to learn it. If it's not too intimate, can you give an example of what you do in such a dream?
I had difficulties phrasing that because I don't know the exact terminology.
It's been 16 years, I don't really remember what finally made it start working
First barrier was dream recall though
At some point I got semi-bored of it though (because I don't have the same clarity of mind to actually think while dreaming), so nowadays I tend to just follow along with the Dream Plot™ but with extra abilities
I mean, that Dream Plot thingy with abilities is really cool and feels like the most useful application of the skill. That's kinda what I imagined it would be like.
I haven't lucid dreamt in a while, but it did give me a "prmanent" ability that's available in regular dreams- if something bad happens, I can "rewind" and tweak things / try again
90% of the time what triggers lucid dreaming for me is being in a dream and thinking "man this sucks/is scary/cannot possibly be real" and then sometimes it dawns on me like ohhh wait let me change this
what triggered lucide dreaming for me in the past was always me having dreams of things that happened in the future, because as I got older they got longer and eventually reached a point where I'd experience my future self remembering the dream I was currently having
those gradually stopped happening though and I dont really get them any more
This also kinda happens to me, but I think "oh no, it's scary, oh wait, it's a dream" and then I wake up.
That is so cool
i sometimes realize im lucid dreaming but i never do anything cool
usually is just hmm yes im dreaming gotta go to work tho
New quote added by kittycatcasey as #7514 (https://discordapp.com/channels/137344473976799233/1215712021207720006/1476755972956356608)
what's the opposite of lucid dreaming since I had that this morning
(I dreamed my computer's water cooling system exploded, said "wait, this is just a dream!", tried to wake up, woke up, computer still broken, thought it was for real, then woke up for real)
False awakening
I'm not entirely sure I want to lucid dream some of my dreams. >_>
I mean I just wake myself up when the bad ones happen
And usually notice a headache or something after I do wake up
(yay sleep apnea)
when i have a lucid dream (not as frequently as i would like), without fail i immediately drop everything and start flying. none of them have lasted very long so i try to make the most of it
well, thje thing is, my dreams only hit right before waking and I don't remember much
A lot of the times the best I can do is float a few inches off the ground and go slightly faster than walking
... except that I'm usually depressed in most of them. But I mean, that's no different than real life...
That's pretty normal - the brain tries to scrub your memories when you wake up
You can train your dream recall though. It's what I did, and never really deteriorated after I stopped trying (until sleap apnea, anyways)
mm.
Well, see the other thing is
I rarely get long enough REM sleep to actually dream
The best I've flown is usually when I'm not focused on it - like it's a means to something else I'm trying to do
(I did a sleep study a for a bit, and unless I'm really lucky, I am in and out of REM sleep very rapidly for a while.)
I don't think REM is required to dream, that's just when they are most vivid
which is something I want to work on because consistent sleeping would probably be more desirable
Unfortunately, the best thing to fix my sleep schedule was being less depressed
You know, the thing that made my sleep schedule worse in the first place
there's one i remember quite vividly where i was having dinner with a friend in a restaurant. went lucid and fucking sprinted to the nearest window, leaped through the glass and out into the night sky for a minute or two of soaring before the end came
hey maybe you should find more definitive proof its a dream before you sprint through the nearest window /s
(I get it)
the way current AI news is going that's never going to happen, lol
Fair
For me it's just the magic of being on the right hormones
(even in the past when I've been on them, I think my T suppressant was suppressing it too low)
that does sound good. (I am applying for jobs, and hope to get onto therapy enough to get on antidepressants, tbh.)
But not everyone has a solution as "easy" as that
.. but ther job market right now isn't great. >_>
God I should really get on hrt
If anyone is curious, I moved to Haskell for implementing my toy language, because I was basically forcing Ocaml to be Haskell anyway
God, this happens to me a ton
It’s called a nightmare

it has been happening for some time to me because of school stress, and it is horrifying: I kept trying to fall back asleep in the morning since I was tired and had time to sleep, but I was dreaming about trying to fall asleep, so I never felt well rested when I had to get up
it was also sparkled with actual nightmares, which are extra scary when you have difficulty telling if it was a dream when getting up
oh i guess i had one earlier
It was a 'dream' where I was on a motorcycle ride (no idea why) with a friend that I have not talked to in the past year, and do not like and my brain hallucinated a crush on them and it made me feel eugh when waking up. I rarely dream, and that is the dream I get? Thanks brain
Thankfully all 'emotions' from it got deleted immediately, and the fact it happened will be 'garbage-collected' tonight
What other assembly based video games do you guys play
Assembly as in coding: Factorio has a mod that allows for basic assembly coding in a combinator to do stuff, I think theres a minecraft mod too, Zacktronic games are also a great set
Assembly as in building: same as above but also Shapez2, all of the lego games if they count, and the sims4 if assembling houses counts XD
only the three zachtronics ones for me (tis100, exapunks, shenzhenio)
Oh Empyrion is a space game that I used to play, loved assembling space ships (same goes for space engineers) and apparently no mans sky (another space game) has ship building I have yet to check out
they each interact with assembly a different way but none do bitwise stuff
Someone should make pick and place a video game 
pick and place?
like Surface Mount Devices? That would be so fun!
Yeah
oh you should play last call bbs atra 
Last....call to the British broadcast service?
Speaking of video games
FINALLY AT LAST THAT WAS 3000 SOCKS
You get about 1 per minute of focus time
There's a programming game called Replicube that I liked, which was focused more on basic shader concepts than assembly. It's a lot more barebones than zachtronics tho
do you have to set an amount of time to focus or can you just start, focus for however long you want, then end focus and get the equivalent amount of socks?
Oh I've seen that one! been meaning to try it out, it looks quite cool!
Not fake assembly, but fake Python. Not tried it yet, but did buy it
https://store.steampowered.com/app/2060160/The_Farmer_Was_Replaced/
Program a drone using a simple python-like language to fully automate various farming tasks that would otherwise be very grindy. Feel the satisfaction of simply pressing "execute" and watching your drone do all the hard work.
Unlike most programming games the game isn't divided into distinct levels that you have to complete but features a cont…
$9.99
7344
Title result: The Farmer Was Replaced on Steam
Either but it caps at two hours
Ahh, I was hoping i could just leave my phone alone all day because I do that anyway XD
Turing Complete is really good, and it's made with Godot
reasons why logical OR should actually have been XOR:
- you can make the current OR using XOR XOR AND but you can't make XOR using the current OR and AND without also adding NOT or NAND (OR AND NOT AND/OR AND NAND)
- more in line with natural languages (e.g. "you can have tea or coffee")
- XOR is just cooler
you had me agree before I even saw the points
xor is generally more used in circuitry to begin with
I guess what is currently OR could stay as ANY
Reasons why not:
OR is kinda like adding
AND is kinda like multiplying
Both being fundamental math operations
Unlike XOR
isn't xor more like adding than or
because it gets you the actual correct last digit
0+0=0
1+0=0+1=1
1+1=10
I guess if you're talking about binary (which is also the only application of xor, I guess), yeah
But it's about logical or
Babe all I need is a nand gate
Can NAND make all the others?
I know OR + NOT can do all the others (source: minecraft redstone)
as far as I can remember nand can do all of em yeah
obligatory https://nandgame.com/
An educational puzzle game. Solve a series of tasks where you build increasingly powerful components. Starts with the simplest logical components and ends up with a programmable computer.
I assumed we were talking about binary because how do you add true and false 
I mean, technically...
aka power or no power
And while this is probably biased from having learned based on the existing stuff, I feel like OR is easier to reason about than XOR, which is good for complex logic
Yes
Both nand and nor can
We like nand better though
Mathematically they are equivalent
But it is easier to build a smaller nand cell
okay but so many fewer cool points
can't believe we don't have a convenient nand cell molecule
smh
harvest nand gates straight from the ground

new game idea unlocked
a cosmic aberration of a factory game where you build circuits and computers from NAND gates natural resources
you don't actually have to build a specific circuit, you just have to make a circuit that passes unit tests
and automate its production
Oh god, what about a Make Anything Machine that creates a logic circuit based on a truth table of a fixed size? I know there are methods to do that.
it's in my ideas.md now
Yay!
Amazon is having a big outage right now, and every time something like that happens to a big tech company, I fantasize about them having laid off someone essential to their existence and as a result are losing milllions in revenue
I disagree: Logical operators are closely related to basic set theory, where the two most basic binary operators are Union and Intersection. XOR would be Symmetric Difference, which sees much less use.
In most everyday applications OR is much more useful compared to XOR. Even in your example, I'd assume that unless told otherwise nobody would mind if I took both (excluding situations where taking more than one would be weird anyway, which means that taking two cups of coffee is forbidden). You can even mix tea and coffee. Do not recommend though.
@sand frost coffee and tea
the only use i can think of easily for XOR in everyday things, is like, two switches hooked up to the same light bulb
Sorry, that's no longer everyday. The everyday way to do that now is hook it up to alexa
cool points though... /lh
20% of China's rapid growth
Zhang et al. final boss
black coffee and black tea, great combo 😛
wish my caffeine tolerance was higher so i could drink more of it
something something cerberus
I can't believe you can drink that
Says person who took caffeine pills with monster back in the day
this was lower caffeine than coffee!!
half a cup of coffee, half a cup of hot water, add teabag and steep
Day 7 of using git at work
I have managed to git conflict myself
Hey at least it's easy to resolve
Atra-working-on-X feature has made a meeting with atra working on Y feature and have come into agreement
On how this file should look
you and i. we are the same
Triplets
git conflicting myself is like half of my git use on personal projects 😌
I got better at not doing it but worse at keeping branches per feature
Its the main reason to advocate for no long lived branches and merge often
Warning, only click on this if you have HOURS to waste: https://thomaswc.com/2025.html
I'm doing great with elements and gemstone so far XD
I reached 728 score before getting bored
I only managed to complete a single category, what I assume is the easiest one: ||Keyboard Characters||
ye that's the one I'm currently doing the best in
I have been trying to put "Up" in the same category repeatidly because I keep forgetting it doesn't go where I think XD
hm in C# is it more 🚀 to
- make a List and append to it
- make an iterator (as in a method that yield stuff) and ToList that
assuming goal is List in most cases
In modding land the list is definitely faster. (source: recent optimization pain)
A yield-return-based method will never be faster
The stuff I was asking about if people could test on lower end hardware in the alpha thread
ah path finding 
i did have an inking this would be the case but i also admit that generator has an appealing syntax to me 
but usually i dont try to ToList them
Pathos said something about the whole state machine thing being a big part of the performance penalty
(ie. also applying to lambdas with captures)
idk what that is, i don't speak modding anymore
FnOnce? More like rust, not even once
i meant endBehavior
rust closures have the compile time to check if they are "call once and dispose" or "can call repeatedly"
idk if C# does anything like that
i wish it did
there's static closures which would have most of the benefits but yeah
There are definitely some that can fit in multiple categories.
I figured you did, I was just using the free real estate that became available for hating on rust
I thought state machine pattern is supposed to save on processing tho
Like checking 1 variable/cond instead of however many that actually describe the state
I didn't mean the literal state machine pattern
I meant like the thing the compiler generates for stuff like that
I am loss on this but take away is "it make slow and terrible IL happen" right
another minor perf question how bad is string interpolation compared to string.Concat
e.g. in case like this
// string foo and string bar
let strInterpolation = $"Thing({foo},{bar})";
let strCat = string.Concat("Thing(", foo, bar, ")");
If the goal is a list make a list first. Give it a capacity hint if you can
Generators work best when you only need a small amount at a time
what is this C 
In modern net, favor interpolation....the compiler will make a wise decision
Finally, state machines are very fun!
I love them very much
Dont ask me how many times I've had to fix this four state state machine :(
I fucking love generator in 🐍
Also context managers
I was a stickler for rejecting closures when unnecessary tbh
Thank god modern net has a similar thing to SplitStream tbh
what about modding .net? 😔
How do you define unnecessary?
I mainly like it for keeping relevant but small bits of code together
I don't worry my pretty little head about modding .net
Generators are great when you want it to be lazily evaluated and you only want to compute the next value when you are ready for it.
If you are doing it to just immediately tolist anyway then it's kinda pointless
today i found ManifoldNET, bindings for a library that powers OpenSCAD. this, combined with another library for creating STL files means i now have unlimited power
My, what amazing meaning that ordering of those words brings forth.
-# (ie. what does any of that mean)
OpenSCAD is an application / programming language for creating parametric 3D models
but it's kinda a functional language, and lacks some basic things i'd like, like getting the bounding box of whatever mesh i created earlier, so i can size/translate other things relative to it
it's powered by Manifold, which apparently has .NET bindings
so now i can do the same thing i was doing in OpenSCAD, but in a C# project
ah
and i can just get the actual bounding box of the mesh
it's definitely slower to develop with, since i don't have a built-in STL viewer lol
but just being in C# means i can do anything now
i wanted to make a nice, configurable Terraforming Mars insert, which i could then 3D print
there are existing inserts out there ofc, featuring all expansions too, but i actually don't like one of the expansions at all, and would rather leave it out of the box. i'm also eyeing a custom map system for it, which means i'd like to ditch the included maps, and make space for the components for the custom maps instead
Nice!
Do u own 3d printer
yup
I have been looking for something like this for so long, thank you!
So, while the C# solution is definitely more powerful, the initial lack of extra libs sucks a bit
But I did implement filleted cubes since yesterday
This is quickly turning into yet-another-library-project and I don’t like it
has anyone really enjoyed any next fest demos yet?
this is a cross section, right?
it's not, it's a cube that was set to fillet its bottom and Z-axis edges
since that's what i technically need from it
and then making space on the inside, by just subtracting a smaller cube
I installed a few but only played one so far, Data Center Demo, I thought it would be fun but I could not get past the 3rd part of the tutorial, I don't think I did anything wrong, I'm familiar with the whole server/switch/IP stuff so it wasn't entirely foreign XD
Not yet
sadge
have you?
finally. code-generated boneless cubes.
no 
I should probably play my paid full games before more free demos
I'm playing through some right now. Alabaster dawn was good. The rest have not really left a lasting impression so far
I'm currently playing through outbound, I'm quite enjoying it! it's mellow
Esoteric Ebb seems promising so far
major disco elysium energy which I haven't actually played yet beyond the introduction
They sure make everything a game
6gb demo 
I've seen a few like that
the goldman demo thing was also around that
I feel like they gave us the whole game and just put some software limitations on it
always happens
that sounds like a skill issue
three demos tried so far. 1 actually managed to open
so far all my demos have worked but I did need gamescope for one of em
how are you having so many issues with them not starting?
linux 
so am I and I've had actually zero issues 
when the alabaster dawn options say "live localisation" and qualify that it might be error prone, do they mean some of their localisation is being done live via an llm...
I'm also on linux
hunter's seal looked worth a try but alas, no go
idk I'd assume some other form of machine translation than an llm
there have been servicese like that for a long time
I would hope the error prone is because it's like old google translate
nowadays even google translate is llm
I don't get the need for live localisation at all tbh
it's certainly useful but if the localisation is outsourced to the community there's really no point
it started immediately with no issues, was it a certain point it crashed?
There is no FPS limit though so it's running my GPU at 100% for a grand total of 700 FPS even though it can only display less than 1/10th of it
I've been curious to try this. Have it downloaded but haven't played yet
https://store.steampowered.com/app/4085170/Road_To_YvhalonDemo/
Title result: Road To Yvhalon-Demo on Steam
Today's complaint: For the past couple days, it seems like on YouTube, the one place free from recommendation nonsense - the subscriptions page - is getting recommendation nonsense
The top is a row that says "Most relevant". Only from people I'm subscribed to, but it has stuff from a week ago even
Next is shorts, which I'm less interested in (but not entirely uninterested in) than actual videos
desktop or mobile?
Desktop
And then if I scroll down I can finally see actual new videos
Literally half way down the second screens worth
Hmm
it's the best thing in existence, I don't think I could browse internet without it
Good to know, though I wasn't so much looking for a fix so much as I was whining about the last bastion of chronological feed being enshittified
My new hobby...looking at Texas wholesale electric prices and waiting for them to go negative
it's a godsend when the "don't show me this anymore" button does nothing
so if it's negative, you're paid to take eletricity?
Tbh if I could rewind my career and become a grid engineer I would consider it
No (mostly) because it's the wholesale price...your distributor would though
It's awesome if you have a project that needs electricity but can take it whenever, such as....any electric car
Ohh gotcha, not consumer wholesale like costco or similar
Some distributors literally offer free electricity at nights these days
I don't think the UK has ever had anything as low as texas, I'm jealous XD
I want to say there's already a simulator for it, given there's simulators for everything
they are one of my fav genres, not sure why, apparently I just crave to do the things I don't want to do IRL in a game
what's with the excess? just too much generated or some kind of alternative/green source?
Wind/solar
I suppose Texas is fairly southern, you guys are probably pretty decent for solar
yeah makes sense
something something actually farming something something on topic
okay farming is something I enjoy doing IRL more than in a game so that doesn't count XD
there are houses here in near me with solar panels on the roof. fixed ones no less. it's... optimistic
for a third of the year (if that) solar is great here!
Hmm.
Cutting trees?
Fishing?
Mining and fighting monsters while spelunking?
Actually talking to people you don't know? people who aren't shy don't get to respond to this one
One time kailey told me about foraging for fiddlehead ferns irl and I was shocked
As seen on TV moment
I have been foraging for moss before, not that I had to go more than 10 metres from my front door before I found some
I think im always surprised but how far north Europe is
We have a similar climate as the UK in New England I think, and solar panels do work to generate enough power for a house on a yearly average basis
(Whether it works out financially is a diff question lol)
my part of the UK is about as high from new england as new england is to texas, and like smack bang in the middle of the UK
another thing that affects solar panels around me (and I would assume you aswell if you're by the sea) is the ocean spray settling on the panels and blocking a lot of light
Sorry to be on topic (in the "name of this channel" sense, not the "of this server" sense), but this morning I've been pondering some sort of hypothetical scripting language for client-server games, where you could write a script close to as if it was a singleplayer game.
And then I suddenly realized that that's probably almost exactly what Verse was intended for.
Pretty sure it’s your right to interrupt us 😛
The point of such a thing in my mind was a case like Minecraft vs Terraria vs ??? - don't need separate code for MP and SP (Terraria), nor do you need to make it MP even in SP (Minecraft)
Well the channel is programmers off topic these days, not programming off topic, so...
How long has it been programmers off topic? I thought it was still programming
Less than a month I think
-# or as you put it programmining 
Oh not as long as I thought, about the time I left I guess?
-# no idea what you're talking about
Uh what monsterw
Duggy always looks so sad!
Remind me in 28 days to make happy duggy for april fools
Bwthhybl? oh sorry got distracted yep on it (#7089118) (28d | <t:1774803117>)
flexable booth?
?
Bwthhybl, it's close to welsh for "flexable booth"
...is it?
Oh, welsh
I read that without "welsh for", so I was wondering if one of us had a stroke
I would love to be a grid reliability engineer
Or ATC
(I like my current job too.)
TIL Atra has a job, I thought you were well off enough from investments to not need one XD
What, no. Not for years
In this economy?
Tbh I wojld also enjoy being a financial advisor if it was for a place like Fidelity
Also tbh when I hit "wealthy enough to not work" I'll probably work anyways
if it's a job I enjoy I most certainly would be working even if I pass the wealthy enough to not work benchmark
Trick question. You hand-pixelled a recreation in MS paint, based off of calculating the HTML/CSS/etc. by hand /s
thats a great guess
not tho, but you do know niche browsers
Ladybird
the other upcoming new browser
I guess there's also Flow but that's proprietary
I doubt it's Floorp or Zen or any other Firefox derivative...
yeah, Ladybird. Final answer
congrats!
🎉
What is Crumble's prize
hm..
I still don't know what ladybird looks like since I'm on windows
chocolate chip cookie : )
im on windows too!
it compiles on windows?
oh WSL that makes sense
not natively no
WSL + X Server
it took like 20 minuites to get dependancies, and 5 minutes to build it
i do have an i9 14th gen, and it was at 100% usage for 5 minutes
the browser is in pre-alpha stage still, it needs lots of JS features
hell yeah
last time I tried something like that was compiling zed for windows and after hours of trying to compile it I gave up
it needs some image decoder plugins still, some GL libraries
tho theyre gonna likely make it all fro mscaratch
I think they have an official windows version now?
yeah- its a heavy build
zed has actual windows builds now I think yeah
I am not sure I'm interested anymore bc they added AI before windows support and that makes me question the rest of the project's governance
Zen is a browser, which I do use, Zed is an IDE
that's actually what it used to be back when ladybird was a hobby project as part of SerenityOS. They're now starting to use/allow external dependencies
Zed has its own gui framework if you're interested
A fast, productive UI framework for Rust from the creators of Zed.
Ohh, zen
Yeah I use Zen, it's a great browser, the latest build gets better benchmarks
Gecko is a lot slower than Blink, but Zen is slightly faster than base Firefox, I'd assume less bloatware
can we just all use the exact same browser to make my web dev easier smh
I know 😭
Wdym we all using chromium
Most use Blink (chrome), but the other half is a mix of WebKit and Gecko
The other day i was doing web banking shit and their webbed site does not work on firefox lol
tbh I only need to support chromium and Firefox for work so it's rarely truly a problem
My mother said the same thing! So it's not only her lol
Had to download chromium real quick to fix this
I do have workarounds for bugs in both
I recommend Brave
There's a debloat script, too for it
The highest benchmarks for a browser I've seen, while retaining great privacy
it's for work I use whatever my users use
Crumble do u support netscape
I don't even support chromium browsers that haven't been updated in a year
tbh I've never noticed the difference between gecko and blink
(netscape is ancient)
and any price is worht not feeding the Google Behemoth
What about tor
tor is just Firefox in a trenchcoat
tor is NOT firefox in a trenchcoat
but I doubt tor would work on our internal company network
it has the whole onion router thing
🧅
Gecko handles youtube poorly due to it's rendering backend (uses a version of OpenGL/Mesa), and I can never force Vulkan on it
Blink handles Vulkan the best, very easy to force, webpages do speed up, most OS's support it
The reason is Gecko needs ANGLE to translate OpenGL/Mesa
then it gets all mesy from there, its just compatibily on top of compatibility and older backends
I think I got my laptop on Debian to use Vulkan with no ANGLE, sped up time a bit
youtube does have lag for me, but usually it's just network throttling or the fact that youtube consumes an obscene amount of memory
I wanted to try waterfox the other day but it compiled for 4hr and still wasn't done
you know, you should make a new browser that will unify everyone. surely that will work.
-# <xkcd looms in the background>
Use a prebuilt binary !!! 😭
literally the other day I had a youtube tab eating 2 gb of ram by itself
Sure, let's all switch to Microsoft Edge ❤️
(this is a joke)
ahh yeah true then
if ur on cachyOS it'll compile just for your hardware if im not mistaken
to help with less translations and possibly not need ANGLE to begin with
So yeah im out of try new browser credits this quarter ask me again in Q2
again tho i got no idea
I'm very glad edge is just chromium so that I have to put in basically zero effort to support it
I hit the subscribe to Chu!(e) Pro, you gained 1 credit
I'm happy with zen, got no reason to use anything else atm
It's a great browser
My second favorite
If you use FastJS (Please lower it's core requirements to 4 virtual cores if ur on a 2 core CPU)
i learned the hard way yesterday and youtube froze cause it was killing my CPU
flashbacks to <!--[if lt IE 9]>
I think I was at what, 6 points on speedometer, now its 9.5 points with FastJS?
againb thats on a super bad laptop
I'm using browser features that weren't fully available till January this year meanwhile
okay I lied I also use palemoon for quick lookups during memory-intensive games when I cant open my main browser
I heard Firefox's latest version lets you toggle AI completely off
Palemoon..oh my
I found a browser called Min that's a cute idea but I stopped using it because it lags horribly
ohh
Min isnt too bad, a bit, niche
Why do I know browsers? Well, glad you didn't ask
I have to deal with every browser known to exist
And manually document all their installation/profile paths
i am also a zen main, its quite nice

i matched two. i leave now