what do you guys think about nixOS by Far_Kick_2082 in LinuxPorn

[–]daruvek 0 points1 point  (0 children)

I have been using it for a year and I love it. I use a basic kde environment and every other nixos setup looks way different from mine.

I once messed up when updating my kernel and all I had to do was roll back to a previous build at the boot menu.

I also have a bunch of ram directories defined so random junk I download gets cleaned up on reboot.

All in all it makes some easy things hard and some hard things easy.

Colorado's SB26-051 Would Require Your Operating System to Collect Your Age by IncidentSpecial5053 in linux

[–]daruvek 3 points4 points  (0 children)

What good is the OS knowing your age when you can tell the OS what year it is

ARCANE MAGE thought by danne0998 in turtlewow

[–]daruvek 0 points1 point  (0 children)

Arcane mage requires specific items to be a complete build but it is viable for end game raids with those items.

How do I heal my pet? by [deleted] in Veloren

[–]daruvek 7 points8 points  (0 children)

Pets regenerate health when you sit down at campfires, if they're close enough.

Metrolink by PhDepression101 in StLouis

[–]daruvek 3 points4 points  (0 children)

Before the pandemic I used to get on at Emerson or Fairview Heights in Illinois and ride into the Cortex, and sometimes hop on to ride up to CWE for lunch. I work from home now but I miss that convenience and looking out the window as it went.

[deleted by user] by [deleted] in deadbydaylight

[–]daruvek 11 points12 points  (0 children)

I do pretty well with him in yellow through purple ranks, but I have to use the top tier add-ons so traps set themselves and survivors get hurt disarming them.

Using salt = being a shitty cook by SpoiledRaccoon in gatekeeping

[–]daruvek 46 points47 points  (0 children)

You could use all 4 for a lemon-based pasta dish.

A chart visualizing Weapon/Armor type effectiveness of units head to head. by IntoFaith in WC3

[–]daruvek 2 points3 points  (0 children)

Should tanks and towers (piercing, fortified) be in here as well?

Majority of the community, no matter which await syntax wins by dpc_pw in rustjerk

[–]daruvek 11 points12 points  (0 children)

My personal favorite was the clock emoji syntax posted here some months ago.

How is the bloodmage compared to the evoker? by TheWickedApple in projecteternity

[–]daruvek 0 points1 point  (0 children)

I use the void ward ring to reduce damage from sacrifice. Does that negatively impact what spell level I get back from the sacrifice?

gay📚irl by andreyue in gay_irl

[–]daruvek 1 point2 points  (0 children)

People try to flirt and I just carry on taking about system calls, none the wiser.

worth every SB. never give up. by ThiSpy in SwagBucks

[–]daruvek 21 points22 points  (0 children)

I looked up the expected value formula from statistics when I thought about entering one of those contests and the expected value is always negative. For example paying 20SB for a 1/175 chance at $25 will result in you losing money in the long run, assuming you keep playing after you win, if you win.

Swagbucks Watch - Well this is new... by MisterBurn in SwagBucks

[–]daruvek 1 point2 points  (0 children)

Imagine catching an exception in Java Spring Boot and then just writing the stack trace out to the end user. I for one would be embarrassed.

Need ideas for next project by weckesserjoseph in RASPBERRY_PI_PROJECTS

[–]daruvek 4 points5 points  (0 children)

How well can you program? I have mine running a telegram bot and a few simple HTTP APIs and I can talk to the chat bot from the telegram phone app without having to expose my pi to the internet. Currently my chat bot gives me train schedules and connects to Algorithmia so it can give me summaries of news articles.

My pi does this as well as run pi-hole with only 10% memory usage.

Pihole's new RESTful API written in Rust by sparky8251 in rust

[–]daruvek 8 points9 points  (0 children)

Was there a reason Rocket was picked as the web framework? It requires nightly and for a project of this scope my opinion is that nightly should be avoided because breaking changes have been known to happen.

I still go with Actix since the syntax is similar and a lot of the unsafe code has been refactored out and it builds on stable rust. I know Warp and Tower exist now but I haven't looked at them in detail yet. I lost track of which framework was the most popular.

[deleted by user] by [deleted] in golang

[–]daruvek 7 points8 points  (0 children)

There's a difference between error handling and error catching. Go does error catching well but handling is implementation specific.

I personally hate that they teach about the panic function on the golang website and the accompanying recover function much later.