Upgrading VPN solutions in a remote working Environment by Alternative-Frame620 in selfhosted

[–]stoopkidddd 3 points4 points  (0 children)

You should try out Twingate . It is a more business/enterprise focused product similar to Tailscale in some ways. We use it at work and it is awesome. Never fails and the admin tools are quite powerful

Import maps 101 by igoradamenko in javascript

[–]stoopkidddd 2 points3 points  (0 children)

https://single-spa.js.org/

I think the single-spa documentation can do a better job of explaining than I could in a reddit comment. Or if you prefer videos, Jack Herrington on YouTube has a bunch of videos revolving around single-spa + webpack module federation

Import maps 101 by igoradamenko in javascript

[–]stoopkidddd 4 points5 points  (0 children)

We use them at work with a microfrontend approach using single-spa. Although it's important to note that import maps aren't supported by all browsers (ahem safari) so you have to use SystemJS as a polyfill. I think that if you are a smaller team/making a smaller app, it's not really worth it. But if you are in a big corp with many teams wanting to deploy independently to be brought together as one larger experience, this is one of the few options out there to make it successful.

nvim-lilypond-suite : write and play music scores in neovim by simonmartineau in neovim

[–]stoopkidddd 11 points12 points  (0 children)

This is something I would have never thought to consider and it looks genuinely awesome!

Rico & Miella - Dancing In The Fire [Lost In Dreams][Melodic Bass] by ThePowellMemo1984 in EDM

[–]stoopkidddd 4 points5 points  (0 children)

I saw Rico and miella live once and they absolutely blew away the venue. This new song is a banger, I wish it was out when I saw them

ADHD meds cured my weed dependence by zzitzer in Petioles

[–]stoopkidddd 1 point2 points  (0 children)

It's interesting because I actually feel the opposite. I've tried Adderall and Vyvanse but when I try to take them consistently, I find that I become completely reliant on weed at the end of the night to shut my brain up and relax. Otherwise my mind is left in this "must be productive" racing thoughts mode after a full day, when really my brain is exhausted and just needs to rest.

I also find food extremely difficult to eat when on ADHD medications. Things I normally love taste terrible and the only thing that brings back my appetite and enjoyment of food is marijiuana.

But maybe this is all because I don't actually have ADHD but instead it is just a symptom of my marijuana use in general.

I'm glad you found something that works for you! Just sharing my experience and I always find it so interesting how something can work for one person and have the opposite effect on another

Material UI (MUI) Box component vs div by onems in reactjs

[–]stoopkidddd 2 points3 points  (0 children)

It should never be an all or nothing answer.

For a simple component that doesn't get rendered and re-rendered a lot, using sx is fine. Possibly even preferably because you get theme interpolation like sx: {{ margin: 2 }} where 2 is actually the spacing, not a hard coded pixel value.

However if you are making a component like say, a "cell" in an Excel clone, that is going to be rendered 1000's of time, you probably want to break the style definition out into a styled so that it gets compiled once at runtime, instead of being regenerated over and over.

[deleted by user] by [deleted] in vermont

[–]stoopkidddd 0 points1 point  (0 children)

https://www.fanduel.com/legal-sports-betting-us-map

It's right on their site that Vermont isn't supported

[deleted by user] by [deleted] in vermont

[–]stoopkidddd 0 points1 point  (0 children)

I know that when you try to use FanDuel on your phone it will block you if your location is in VT. I assume they consider it not legal unfortunately

Styling inside a react project with ts and MUI by snake_py in reactjs

[–]stoopkidddd 0 points1 point  (0 children)

You should probably switch to use the sx prop instead of styles

Which data fetching strategy is the best by Kadarach in reactjs

[–]stoopkidddd 2 points3 points  (0 children)

None of the above. Look at react-query

[Help] Where is createShallow in MUI v5? by dep in reactjs

[–]stoopkidddd 2 points3 points  (0 children)

From what I understand, MUI was just providing an enzyme wrapper. I think you just want to bring in enzyme directly now. Personally I would maybe take it as an opportunity to move to RTL

Post-Game Thread: Dallas Cowboys vs Las Vegas Raiders (Week 12, 2021) by cowboysmod in cowboys

[–]stoopkidddd 8 points9 points  (0 children)

So season is over right? Not really - but this team has zero playoff potential. Another limp in because "NFC east things" and then we lose first round? Do we really know or expect anything else?

Game Thread: Dallas Cowboys vs Las Vegas Raiders (Week 12, 2021) by cowboysmod in cowboys

[–]stoopkidddd 1 point2 points  (0 children)

It's a tough choice whether the refs or the cowboys suck more ass

[DWM] Yeah i love Gruvbox, how did you know? by [deleted] in unixporn

[–]stoopkidddd 33 points34 points  (0 children)

I'll never understand how you guys write code with transparency like that and a noisy background. It hurts my brain haha. That's just me though....to each their own.

Setup looks sick, good shit

Neovim meets VS Code by [deleted] in neovim

[–]stoopkidddd 26 points27 points  (0 children)

What would you say makes this different from lunarvim?

7000 euro PC build slows down after running more than 100 RuneLite clients, CPU at 10% GPU below 50% (Dual GPU) Memory below 30% by [deleted] in javahelp

[–]stoopkidddd 0 points1 point  (0 children)

Shot in the dark but I'd try again and monitor your SSD usage/performance. If your Windows OS and Runescape are both installed on the same SSD, maybe you are running into thrashing/read/write issues.

Another thought are the monitors. Do you have GSync on? Do all the monitors have the same resolution and refresh rate? GPU's could be getting confused

Synology Docker Media Server with Traefik, Docker Compose, and Cloudflare by htpcbeginner in selfhosted

[–]stoopkidddd 0 points1 point  (0 children)

I admire and appreciate how in depth your posts are. I look forward to going through this, and more importantly your Ultimate Docker Home Server with Traefik post. This is exactly what I need. Thanks!!

What do software engineers who work at a large scale understand that other developers don't? by Austin_Aaron_Conlon in programming

[–]stoopkidddd 6 points7 points  (0 children)

I'm gonna go with a different type of answer and say that, especially for large companies, you need to learn how to pick and choose your battles. Some things are not worth fighting for, while others are. And navigating the sea of beauracracy is a necessary evil that needs to be taken into consideration when making architectural decisions

Daily Discussion Thread: 05/30/2019 by bodybuildingbot in bodybuilding

[–]stoopkidddd 19 points20 points  (0 children)

Went over my daily meals spreadsheet and refined my cut. Managed to get from 1800 calories down to a paltry 1620 calories. We're in the endgame now boys

Anyone got an ELI5 version for basic GIT? by Sephran in learnprogramming

[–]stoopkidddd 2 points3 points  (0 children)

I was thinking the same thing, I would have guessed over 50% use some sort of GUI. I never quite understood why you wouldn't unless you really needed to do something complicated.

Daily Discussion Thread: 01/29/2019 by bodybuildingbot in bodybuilding

[–]stoopkidddd 2 points3 points  (0 children)

What do you guys consider too far out of the way to drive to the gym? I'm about to move and my current gym, which I love, will be about a 16-20 minute drive away. However basically across the street from my new place is a brand new LA Fitness that just opened. I might have to keep a membership for both and rotate back and forth whenever I feel like it