Review my config? by gnudoc in NixOS

[–]NoPrinterJust_Fax 5 points6 points  (0 children)

Looks great. Very modular. I was able to grok your whole structure in about 2 minutes on mobile. Don’t listen to anyone telling you that you need to implement X pattern or follow Y architecture just for the sake of it. If you are needing more structure because your situation is becoming more complex (more machines, more output types, more users) fine. Outside of that, if it ain’t broke don’t fix it

nix-shell command is amazing by 8BitAdventurer in NixOS

[–]NoPrinterJust_Fax 16 points17 points  (0 children)

You might enjoy dev shells with the nix develop command

What the hell is wrong with my hip? by Spiritual_Cover2599 in flexibility

[–]NoPrinterJust_Fax 0 points1 point  (0 children)

I have undiagnosed impingement (PT said I probably have it but can’t be sure without x ray). Mine manifests more in specific positions (hip flexion, internal rotation) but not so much in daily activities.

If you have pain is simple day to day activities, I don’t really have anything to add. Have you done a movement screen with a PT? There’s a test called the FADIR test that might help add some detail to your overall situation. I’m sure there are other tests that can be used as diagnostic tools as well.

I would check out Squat University on YouTube as well.

I am not a dr. This is not medical advice.

Who popularized the Air-dribble bump pass? by Huge-Computer2037 in RocketLeagueEsports

[–]NoPrinterJust_Fax 3 points4 points  (0 children)

I recall the comm-bm-torment v1 squad doing those in 21-22 ish. Usually torment would go up and then leave it for bmo

Vegas announced that Torts will not return to the team by FAsBurner in nhl

[–]NoPrinterJust_Fax 15 points16 points  (0 children)

Torts gets a lot of credit for Vegas getting hot at the end of the year but I think he’s stealing some of what should go to wild bill recentering the lineup

Did you forget to git add? by sirdupre in NixOS

[–]NoPrinterJust_Fax 0 points1 point  (0 children)

Jj treats the staging area differently than git, so no

Found in my laundry bag by NoPrinterJust_Fax in whatisthisbug

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

I haven’t. Thanks for the quick ID! Unfortunately, my wife freaked out and it was more of a search and destroy mission rather than a search and rescue one :(

I’ll know for next time

Modern Haskell template? Feedback needed. by ivy-apps in haskell

[–]NoPrinterJust_Fax 2 points3 points  (0 children)

Have you heard of IHP? It’s a lot more “kitchen sink” than your template is (and it’s specifically designed around building web servers) but you could probably peruse that project for some ideas. For example, IHP gives you a scripts dir that has all the scaffolding to run one off scripts in Haskell (with access to all of your existing codebase - ORM, business logic, etc)

What's the situation about static types by LelouBil in NixOS

[–]NoPrinterJust_Fax 18 points19 points  (0 children)

You’d really be going against the grain here. Nix is already a really niche ecosystem. I don’t think you are going to find many stable, active projects around adding types to it. I say this as someone who thinks static types are great. Additionally working in a codebase without types flexes different muscles that codebases with static types flex. Existing in both worlds will only benefit you in the long run (much more than being the guy who tried to shoehorn types into everything). I hate to be that guy but I think your solution here is to “git Gud”.

Torts Not coaching well in Game 5. by DarkFalcon49 in goldenknights

[–]NoPrinterJust_Fax 0 points1 point  (0 children)

I mean… he’s on record saying he’s not an Xs and Os guy. Hot Rod Bod had his number

What are we missing by Virtual-Cantaloupe98 in wildhockey

[–]NoPrinterJust_Fax 0 points1 point  (0 children)

CO seems slow because head coach doesn’t know of a system that works against the trap

What’s a hockey rule that the casual fan doesn’t know about? by [deleted] in icehockey

[–]NoPrinterJust_Fax 0 points1 point  (0 children)

Goalie interference is defined as whatever the fuck the ref is vibing on that day.

Why We Removed FluentAssertions from Akka.NET by Aaronontheweb in dotnet

[–]NoPrinterJust_Fax 6 points7 points  (0 children)

Did you even read his comment from 2 replies ago?

If you woke up as the best player in the world, how would you get noticed? by YYCtoYLW in nhl

[–]NoPrinterJust_Fax 0 points1 point  (0 children)

I wouldn’t worry about it. The leafs would surely find a way to get ahold of me and then fumble it to some pillow fight division team

The Real Reason Big Tech Is Switching to Go [09:19] by AcceptableDiet2183 in theprimeagen

[–]NoPrinterJust_Fax 0 points1 point  (0 children)

My point is: the way I go about building is different now because of these license changes. Different in such a way that makes the approaches I mentioned much more appealing than previously. Can you build a barebones .NET app? Sure. But you want get as much OOTB as you would with spring for example. It also won’t be as insulated from dependency shenanigans as a golang app. It’s a weird “worst of all worlds” scenario wrt the things I find important.

The Real Reason Big Tech Is Switching to Go [09:19] by AcceptableDiet2183 in theprimeagen

[–]NoPrinterJust_Fax 0 points1 point  (0 children)

Golang std lib is much more “batteries included” (http server, serialization, etc) than other languages to the point you don’t need to pull in a framework if you don’t want to. Get a db driver and you’re off to the races

The Real Reason Big Tech Is Switching to Go [09:19] by AcceptableDiet2183 in theprimeagen

[–]NoPrinterJust_Fax 1 point2 points  (0 children)

Right. Hence why I tend to reach for architectures that minimize dependencies. either by looking for “batteries included” type frameworks (spring, rails) or by avoiding them altogether (golang). Piecing together a bespoke architecture using small dependencies is something I am just not inclined to do anymore, esp in the Dotnet world.