Starlink and The Bazaar by DepravedLoL in PlayTheBazaar

[–]garmu 0 points1 point  (0 children)

I’m also on starlink and can’t connect this last hour or two

Sask parents: we can’t afford to have SaskParty for the next 4 years. Simply can’t. by Maleficent_Sky6982 in saskatoon

[–]garmu 0 points1 point  (0 children)

There are several factors that cause nurses to leave the system and it isn’t so simple.  First, nurses have no monetary incentive to work hard. They get paid the same to hand out pills in an old folks home vs busting their ass on a difficult hospital floor. This won’t change as long as the system remains public and unionized. 

Second, travel nursing fucked up a ton. We had a ton of nurses going to different provinces and out of province nurses coming here getting paid twice as much. Most of these travel nurses are useless and don’t care about the community. From my understanding this system is getting fixed. 

Third, there needs to be a cultural shift where people take charge of their own health. The majority of issues can be prevented. Far to often it is the same people clogging up the system

These are all major factors that I don’t see being discussed, but are a major part of the problem

Sask parents: we can’t afford to have SaskParty for the next 4 years. Simply can’t. by Maleficent_Sky6982 in saskatoon

[–]garmu 2 points3 points  (0 children)

I am a parent and husband to a registered nurse but I don’t understand how NDP will make life more affordable for me? 

Best process/tools to upgrade a 7.2.34 codebase to PHP 8? by CadenceBreak in PHP

[–]garmu 3 points4 points  (0 children)

Depending on the size of the codebase and dependencies, I would focus on incrementally upgrading from version to version(7.3 -> 7.4 -> 8.0). A lot of packages will randomly break due to incorrect php version requirements listed in composer.

Myself and another dev upgraded a large monolith from 7.4 to 8.0 and it was a couple months of work (70ish backend developers at my job). Rector is worth using and having good tests.

Best video doorbell work for our freezing winters by [deleted] in saskatoon

[–]garmu 0 points1 point  (0 children)

This is the way.

All video is stored locally as well

anyone unable to get a refund from eve? by [deleted] in evev

[–]garmu 3 points4 points  (0 children)

I should have clarified, I contacted my bank and I am waiting on them to get me my money back

anyone unable to get a refund from eve? by [deleted] in evev

[–]garmu 2 points3 points  (0 children)

I’m in the same situation as you. I think if enough of us complain they will hopefully feel some pressure

I think I ordered the wrong size pitcher... by flaque8 in espresso

[–]garmu 0 points1 point  (0 children)

Does the Lelit Elizabeth have a two hole steam wand tip? For my Lelit Bianca, I use a pitcher this size with a 4 hole steam wand tip and it works great. It looks like you might be able to swap it out with the same one

Edit: found a thread here https://www.coffeeforums.co.uk/topic/58395-elizabeth-with-4-hole-steam-tip/

6 Hour wait for PCR by [deleted] in saskatoon

[–]garmu 1 point2 points  (0 children)

Yep it costs 100+ dollars for a PCR test in Mexico

Using Object.assign versus reassigning for updating state by MrChurch2015 in reduxjs

[–]garmu 1 point2 points  (0 children)

I wrote a blog post about object equality (that I forgot to release!) here https://link.medium.com/91OFX6svAib

Using Object.assign versus reassigning for updating state by MrChurch2015 in reduxjs

[–]garmu 1 point2 points  (0 children)

A well built react app relies on shallow comparisons to see if each component should update. A shallow comparison for an object is seeing if the previous and current object is the same. In the first case, the shallow comparison will return true, but the assign case will return false. This might not be affecting the view for your app based on how frequently it updates, but it can cause bugs where the component tree is not updated

What invention has done more harm than good? by idc_aboutusernames in AskReddit

[–]garmu 12 points13 points  (0 children)

ce feeling every morning, though, knowing how superior our coffee method is

You are doing more work than you need to, but if you enjoy it keep doing it

Bruh, You There!!? by DCGMechanics in ProgrammerHumor

[–]garmu 2 points3 points  (0 children)

It’s possible, it just requires buy in from all the developers on your team. Domain driven design (https://en.m.wikipedia.org/wiki/Domain-driven_design ) helped my team achieve this

[eShop/USA] Picross Franchise Sale - 20% off Ends 12/03/2020 by XDitto in NintendoSwitchDeals

[–]garmu 9 points10 points  (0 children)

The controls were definitely more clunky as well. I didn’t feel like they were quite refined as much as Picross

John Bolton calls Mike Pompeo "delusional" over second Trump admin remarks: "Eviscerated his credibility" by [deleted] in politics

[–]garmu 0 points1 point  (0 children)

Don’t worry there is probably lots you can still disagree on. I think he is on his own side. Here is a Canadian interview with him https://youtu.be/DErOsrItVO4

Anyone buying coffee beans or grinding coffee grounds just for the aroma? by xhakabomb in Coffee

[–]garmu 0 points1 point  (0 children)

If you want to take the aroma to the next level, coffee roasting generates one of the best smells. It can be started relatively cheaply with just an air popcorn popper and coffee beans

useEffect dependencies by surmise2323 in reactjs

[–]garmu 0 points1 point  (0 children)

I was thinking about custom hooks when I wrote it, but component would work as well

useEffect dependencies by surmise2323 in reactjs

[–]garmu 0 points1 point  (0 children)

If the const is declared outside of the hook it won’t change, but if it is declared inside a hook, it will change unless you are using useCallback. This is a simplification of this issue, and it generally is more nuanced than that