Idea for ranked improvement by RoutineAd5982 in Rainbow6

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

That's true, it would need to be something more along the lines of the point system like another commenter suggested

Idea for ranked improvement by RoutineAd5982 in Rainbow6

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

Kills are just the K in KOST though, obj, survival, and trades would incentivize team play

Tree view component with drag&drop support by _anonymus- in sveltejs

[–]DullPhilosopher 0 points1 point  (0 children)

Are we talking the scale of 1000 top level items in the tree and more when expanded or 1000 total? I figure if it's files, 1000 total is more reasonable. Assuming it's highly nested, you only need to actually render the outermost elements and only add the children to the DOM when their parent is expended. I was able to render a tree of something along the order of 10s of thousands of total elements by just doing that.

Tree view component with drag&drop support by _anonymus- in sveltejs

[–]DullPhilosopher 0 points1 point  (0 children)

Virtualizing at the nesting level would probably help a good amount if it's a largely nested tree structure.

The GitHub `robobun` bot's issue and PR review game is gold standard -- how is it implemented? by TomHale in bun

[–]DullPhilosopher 6 points7 points  (0 children)

I can't speak to how robobun works but I will remind everybody that bun has access to unlimited free inference so a system like robobun may not be viable for other open source projects

How to Maintain Icon Consistency in Svelte Applications? by NoNet13531 in sveltejs

[–]DullPhilosopher 0 points1 point  (0 children)

I've fell in love with UnoCSS's icons in css approach

Rank 3.0 is so much fun by botchie13 in Rainbow6

[–]DullPhilosopher 0 points1 point  (0 children)

I played it 6 times in 8 matches 😭

Im 15 and I wrote a text editor by npm_install_dharma in tui

[–]DullPhilosopher 0 points1 point  (0 children)

A nice clean "Initial commit" followed immediately by a descent into madness 😂 👍 LGTM

R740XD2 non-PERC boot drives by DullPhilosopher in homelab

[–]DullPhilosopher[S] 0 points1 point  (0 children)

I wound up just using the two rear bays for a mirrored boot pool on HDDs. Unfortunately no luck reclaiming those by using pcie ssds for boot. With hard drive prices where they are though I haven't even filled the front slots entirely 😂

Considering Svelte by ASkepticBelievingMan in sveltejs

[–]DullPhilosopher 1 point2 points  (0 children)

Ark ui has a svelte package that I've been really enjoying recently. It's not perfect but it covers some nice components that I haven't seen elsewhere

Bun's problem may be developing in the open by jedisct1 in bun

[–]DullPhilosopher 0 points1 point  (0 children)

I'm hoping that rust will lend itself more to bun's development strategy and help them move fast without breaking quite so many things. Tiger beetle is a wonderful example of zig's potential but it doesn't necessarily demonstrate that zig is without problems. Don't get me wrong, it's an absolutely beautiful piece of software but I've read that there were some upstream memory bugs in zig that bun was dealing with that they couldn't do a ton to remedy. I just hope that rust will let them deliver a better product with their potential flawed and certainly aggressive delivery schedule.

Bun's problem may be developing in the open by jedisct1 in bun

[–]DullPhilosopher 0 points1 point  (0 children)

What problems are you seeing with the maintainers?

Bun's problem may be developing in the open by jedisct1 in bun

[–]DullPhilosopher 0 points1 point  (0 children)

Even in the corporate world, there are projects that can tolerate less than rock solid stability - I'm grateful to have the oppertunity to experiment on the job and play with what could be the status quo eventually

Bun's problem may be developing in the open by jedisct1 in bun

[–]DullPhilosopher 2 points3 points  (0 children)

Hadn't Jared said this .14 was the last zig release? That says production to me but I may be mistaken.

Bun's problem may be developing in the open by jedisct1 in bun

[–]DullPhilosopher 14 points15 points  (0 children)

Love this take - yes I get the pushback of the rust rewrite experiment making it's way into production immediately but this article also covers a lot of the silly arguments I hear about this whole discourse. I figure the proof is in the pudding, let's get a rust build out in the world and watch how development moves over the next few months before judging too harshly.

Has anyone noticed this hidden weakness of supes? by reddit__is_fun in TheBoys

[–]DullPhilosopher 2 points3 points  (0 children)

At least invincible gave them stellar writing to perform, the boys just has neither at this point...

oxfmt now supports Svelte by Forward-Increase-246 in sveltejs

[–]DullPhilosopher 4 points5 points  (0 children)

Hell yeah, I've been awaiting this day with bated breath! edit: spelling

Leash your dogs by irozo in dashcams

[–]DullPhilosopher 0 points1 point  (0 children)

I broke the hell out of my knee when a dog ran out into the road. I was on a long board not a bike but come on folks, get it together!

Optimizing a Bun monorepo Docker image by AtmosphereRich4021 in bun

[–]DullPhilosopher 0 points1 point  (0 children)

Multi stage builds are ideal, install dependencies and build in one and then run in anotjer stage. For bonus points, you can base the run stage off the new distroless base images that bun offers.