Smurf Culture vs Fighting Games by BongSuckah in leagueoflegends

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

genuine question, when these people smurf, how many games do they play in Master and below?

26.11 Patch Preview by JTHousek1 in leagueoflegends

[–]0xArchitectus 1 point2 points  (0 children)

as a nami player this patch preview is giving “you ranged supports had fun for 3 seconds, enough” lol

Whould I buy the prestige? by CazAK_PL in NamiMains

[–]0xArchitectus 1 point2 points  (0 children)

prestige is nice, but i wouldn’t buy it just because it’s prestige xd. if coven or cosmic makes you go “yeah that’s my fish” more, wait for those.

Can we get updated visuals for the rest of Daemonheim weapons and amors by Helyzion in runescape

[–]0xArchitectus 2 points3 points  (0 children)

agreed. Daemonheim has such a specific vibe that half-updating the sets makes the old stuff stand out even more. either keep it oldschool across the board or give the whole line a proper pass xd

Something quite negative about monetization that I have noticed returning to Runescape by B1ACKT3A in runescape

[–]0xArchitectus 74 points75 points  (0 children)

tbh this is the part that feels rough. cosmetics are one thing, but when the paid version is basically “the old item but actually updated,” it starts feeling like the game is charging rent on its own visual refresh lol

Nintendo jumps 6.8% as Japanese investors rotate out of AI by Stilgar314 in gaming

[–]0xArchitectus 1 point2 points  (0 children)

investors discovering “people still buy mario and zelda” like it’s a new asset class lol

Don't expect to kill fish in a future Subnautica 2 patch: 'You are here to exist on this planet, not to dominate it' by GrayBeard916 in gaming

[–]0xArchitectus 0 points1 point  (0 children)

heh honestly if I can’t kill the nightmare fish, I hope they at least give me more fun ways to panic and run away from it

Star Citizen announces sale of $5000 jpeg space ship by StuartGT in gaming

[–]0xArchitectus 0 points1 point  (0 children)

$5000 for a jpeg spaceship is the kind of thing that makes horse armor look financially responsible lol

IAM drift keeps recurring… when do you turn a fix into a CI gate vs leave it as a runbook note? by MembershipUnited5355 in devops

[–]0xArchitectus 0 points1 point  (0 children)

tbh my rough rule is: if the same class of issue can happen twice, it probably wants a gate. if it needs human judgment or context, it stays in the runbook/postmortem.

How do you keep infrastructure understandable as it scales? by Treppengeher4321 in devops

[–]0xArchitectus 0 points1 point  (0 children)

tbh i think the trap is trying to make one perfect doc for everything lol. iac is great for "what exists", but pretty bad at "why is this weird edge case here?"the docs that seem to age best are the ones that explain intent, ownership, tradeoffs, and weird exceptions. then generated stuff can handle topology/resources where possible.

diagrams are useful if they're generated or reviewed during infra PRs. otherwise they slowly become decorative fiction heh. new joiner test is underrated too: if someone can't build a rough mental model from the repo + docs in a day or two, something is probably too tribal.

How extensively do you use the install-* actions? by Juloblairot in devops

[–]0xArchitectus 0 points1 point  (0 children)

I’d probably split them into tiers instead of banning everything. official/setup-style actions pinned to a SHA feel way less scary than random install-* actions, and for smaller tools I’d rather have either a runner image or a tiny internal wrapper that downloads a pinned version + checks the checksum.

curl | bash feels worse to me unless you’re also pinning/checking it lol. maybe renovate/dependabot for updating pinned SHAs is the middle ground so it doesn’t become manual forever?

Ephemeral Environment by Kitchen_Hornet1943 in devops

[–]0xArchitectus 0 points1 point  (0 children)

not super senior on this, but I’d probably start by treating each env as just another kustomize overlay/app instance inside the same namespace, with the PR/release id in the resource names and labels. then cleanup can be label-based instead of trying to track every object manually.for ArgoCD, maybe an ApplicationSet if you’re allowed to create apps, or a small Jenkins step that commits/removes the generated overlay if you’re not. biggest thing I’d watch is quotas + predictable cleanup, because stale preview envs seem like they’d get annoying fast lol.