pupbiru

joined 10 months ago
[–] pupbiru@aussie.zone 4 points 5 hours ago (1 children)

certainly not saying you’re wrong, but the base load problem is still a problem afaik… storage solves some of it, but i think storage isn’t a full solution - we’d still need some other 24/7 generation capacity

[–] pupbiru@aussie.zone 6 points 21 hours ago* (last edited 21 hours ago)

that… is unlikely… they took 7 years to migrate TO AWS, and the last i heard they completed a massive migration to IPv6 on AWS in 2021… it’d take them a massive amount of engineering and time to migrate off AWS

also it’d be massive news… netflix is basically THE number 1 AWS “success” story

[–] pupbiru@aussie.zone 1 points 1 day ago

oooh i have that exact espresso machine (except they’ve mirrored it)! it’s a rancilio silivia… i use fedora and debian with a pinch of al2

[–] pupbiru@aussie.zone 1 points 2 days ago

blockchain as a core technology isn’t user-friendly… it should be hidden, and you’ll never know when it’s doing interesting things. it was never going to revolutionise the world, but that doesn’t invalidate its usefulness in niche situations

… it shouldn’t be used for 95% of the garbage people have built with it - and for NFTs that’s more like 99%

[–] pupbiru@aussie.zone 3 points 2 days ago

that’s pretty much it… with the atproto/ap bridge it becomes a LOT more viable to interact across networks, and thus people can choose to move and use whatever platform they like, and that helps to solve the critical mass problems that we have in the fediverse

[–] pupbiru@aussie.zone 7 points 3 days ago

absolutely this

youse and torlet

[–] pupbiru@aussie.zone 55 points 3 days ago (18 children)

I’m from Australia and I’ve started calling all groups of people yall because it’s gender neutral… very unaustralian term, and I love so much the irony of iconic southern terms being used to support trans activism

[–] pupbiru@aussie.zone 1 points 3 days ago

And any partner of mine in that situation would be like cool… 3some? And everyone has fun

[–] pupbiru@aussie.zone 1 points 3 days ago (3 children)

the way people use NFTs with art are certainly absurd, but even the core technology of NFTs is actually excellent

[–] pupbiru@aussie.zone 5 points 4 days ago

a gift, or a test?

[–] pupbiru@aussie.zone 39 points 4 days ago (24 children)

i will never understand the inability for people not to have amazing sex with their friends

[–] pupbiru@aussie.zone 2 points 5 days ago

the various github-supplied actions are good example:

https://github.com/actions/setup-python

the action.yml here is the metadata for an action (and you invoke this action by simply referencing actions/setup-python - perhaps with a sha or tag or something to pin it - and the runner clones and runs it, making custom actions simply code with no build process etc necessary which is very nice to not have to bootstrap your build process with a build process eg docker build)

see the “runs” section there - it invokes node20 to run the action, and specifies some code to run to cleanup

in the src here we can see what i was mentioning as well about having bi-directional comms with the CI system

https://github.com/actions/setup-python/blob/main/src/setup-python.ts

line 54 & 55 we have core.getInput and core.getMultiLineInput, 59 we have core.warning (so logs are formatted and filterable etc - these messages also show up in the build summary; similarly line 100 we have core.startGroup), 154 is core.setFailed so you get proper failure reasons rather than “the last line of stderr”

now, none of this is specific to running in a real language - in fact i believe all this information is communicated over stdout or stderr - but the ease of simply creating a repo with code in it, and having that as a reusable CI step without worrying about docker container hosting, and having that able to have semantic meaning for its inputs and outputs (and proper reliable escaping of the special CI communication prefixes) is something that kinda doesn’t exist outside of this style system

view more: next ›