Definitely the third / middle left, but the bottom right definitely gets second place to me.
Not a major fan of too abstract art, and those are just both so serene.
ace
People love to complain about CMake, often with valid complaints as well. But it - to this day - remains the only build system where I'll actually trust a project when they say they are cross-platform.
Being the Windows maintainer for OpenMW, it used to be absolute hell back a decade and half ago when an indirect dependency changed - and used something like SCons or Premake while claiming to be "cross-platform", used to be that I had to write my own build solutions for Windows since it was all hardcoded against Linux paths and libraries.
CMake might not be the coolest, most hip, build system, but it delivers on actually letting you build your software regardless of platform. So it remains my go-to for whenever I need to actually build something that's supposed to be used.
For personal things I still often hack together a couple of Makefiles though, it's just a lot faster to do.
Have a snippet of Ruby, something I hacked together as part of a solution during the WFH morning meeting;
class String
def to_numberstring(digits_only: false)
tokens = {
one: 1, two: 2, three: 3,
four: 4, five: 5, six: 6,
seven: 7, eight: 8, nine: 9
}.freeze
ret = ""
i = 0
loop do
if self[i] =~ /\d/
ret += self[i]
elsif !digits_only
tok = tokens.find { |k, _| self[i, k.size] == k.to_s }
ret += tok.last.to_s if tok
end
i += 1
break if i >= size
end
ret
end
end
It's basically just a copy of the main leaderboard, but the scores are given based on the size of the group.
It could be interesting with something like the old Pharaoh game and its receding riverbed farming, but you'd have to balance that compared to costs of resourcing in Factorio - or offer some reasonably simple way for the player to protect their resourcing operations against the rising lava.
My guess is that drilling is going to cause the Vulcanus-version of pollution, since it makes sense that a volcanic planet wouldn't have much problem with regular pollution.
My favourite advent calendar.
Got a private leaderboard with the other sysadmins from work - as well as a few people from our application/development team.
We've recently kicked out our entire Cisco networking core due to it actively refusing to interoperate with other pieces of necessary hardware for us, which was causing us to have to run an almost entire second redundant core network. Switching it out with ALE has been really nice in that regard, SPB scales like a dream even between locations and cities, we even get working L2 routes all the way over to some of our locations almost half a country away.
For us, Dell has been the far better of the two (HPE/Dell) big server-providing beasts in terms of just being able to use the hardware they provide, but they're very close to getting a complete block from future procurement due to how they've been treating us.
Honestly, Fujitsu is probably our best current provider; their hardware is reasonably solid, their rack-kits aren't insane, their BMC doesn't do a bunch of stupid things, they don't do arbitrary vendor locking on expansion cards, etc. Unfortunately their EFI/BIOS is a complete mess, especially in regards to boot ordering and network boot, and they've so far not been able to provide us Linux-based firmware upgrade packages - despite using a RHEL image in their BMC-orchestrated offline firmware upgrade process.
Got a pair of old HPE gen8 1U servers that are chewing through fan packages like nobody's business, replaced at least five burnt-out fans on them in a similar amount of years.
We're running a mix of HPE, Dell, and Fujitsu servers and they all absolutely suck in their individual ways - HP(E) adds a bunch of arbitrary hardware limitations which we have to work around, Dell intentionally degrades our multi-system setups with firmware updates, and Fujitsu's boot firmware goes absolutely pants-on-head retarded if you're doing netboot first.
We've gotten some Supermicro systems now as well, and they've been a real treat in comparison, though their software UX feels like it's about two decades behind.
It's great to see more full-AMD hardware from TUXEDO. I'm currently using their Aura 15 Gen2, and my only complaint is about the fingerprint sensor - which isn't even really a TUXEDO issue as they have written and submitted a patch upstream for libfprint which makes it work. (And since I'm using Gentoo I've just dropped that patch into my local portage tree until upstream merges it)
They're definitely not the cheapest computer vendor, but their quality is good and their support is great. No odd boot behaviors, ACPI errors, random device disappearances, etc, like I've had with other non-Linux-first vendors.
It's great to hear that they're not just giving up. And it's also definitely good to hear that they're not sticking with PHP either, that language is a true bane to modern hosting - and especially Kubernetes.
I'll remain cautiously optimistic that they'll be able to stay relevant, and not go hard in again on cutting away core functionality in the name of enterprise offerings - what caused the NextCloud split in the first place.
I get the feeling that I should include some default types for handling 2D maps in my boilerplate, it's a very recurring problem in AoC after all.
My solution is reasonably simplistic - and therefore also a bit slow, but the design meant I could do part 2 with just a few extra lines of code on the already processed data, here's the functional part of it; (I push the previous days solution as part of my workflow for starting with the current day so the full code won't be up until tomorrow)
Ruby
The code has been compressed for brevity.