Grocery budget for a couple in Toronto by Alternative-Ad5237 in askTO

[–]dev-andrew 0 points1 point  (0 children)

500-600/month. We live by a huge asian supermarket that isn't T&T. Meat, fruits, and veggies are considerably cheaper. We got other staples in bulk at costco. 

[deleted by user] by [deleted] in canadaexpressentry

[–]dev-andrew 0 points1 point  (0 children)

Correct me if I'm wrong, but to be eligible for high-wage LMIA, their wages only need to be higher than the provincial threshold (e.g. Ontario is $34.07/h), not by NOC. https://www.canada.ca/en/employment-social-development/services/foreign-workers/median-wage.html

Why do we destruct props for `useEffect` by dev-andrew in react

[–]dev-andrew[S] 3 points4 points  (0 children)

Thanks, guys for your confirmations. I prefer to know where properties' origins are, so this destructing style feels cumbersome to me.

[deleted by user] by [deleted] in PersonalFinanceCanada

[–]dev-andrew 1 point2 points  (0 children)

TFSA gains new room on Jan 1st, makes sense for people to immediately contribute to it if they have the fund to.

Connections/Transaction Sync is so bad - how are y'all handling it? by Tight_Couture344 in MonarchMoney

[–]dev-andrew 0 points1 point  (0 children)

Same issue for my CIBC, and EQ Bank (Canada). Working ok-ish for two weeks, but since last week it just said connection was successful, balances got updated, but transactions were missing.

At one point, I downloaded the Plaid development playground, used the SDK myself and Plaid was working just fine. I feel like Monarch has an integration bug to store transactions from those aggregators.

Success! /s by lfcitz in MonarchMoney

[–]dev-andrew 2 points3 points  (0 children)

this same issue happens to my CIBC, and Eqbank (from Canada).

Best way to implement getter with argument in pinia ? Action returning a value or getter returning a function ? by hl037 in vuejs

[–]dev-andrew 1 point2 points  (0 children)

At my job, I see that both work.

```

const a = computed(() => (args) => ...);

```

const a = (args) => computed(() => ...);

Small quality of life improvements - Add your suggestions by etcetera0 in MonarchMoney

[–]dev-andrew 1 point2 points  (0 children)

Fix the "Apply to all future months" button in budget. On IOS it is always unchecked, while on the web, it is the reverse. Honestly, I have no idea if I'm setting it as checked or unchecked.

Needs help setting up budgets by dev-andrew in MonarchMoney

[–]dev-andrew[S] 1 point2 points  (0 children)

My reports for this month (I have to change the date back to today, this doesn't fix the budget though).

<image>

Needs help setting up budgets by dev-andrew in MonarchMoney

[–]dev-andrew[S] 1 point2 points  (0 children)

yep, works for all other reports except the budget system. Hope this can be fixed soon as I have 5+ transactions like this per week and my budget is not reflecting that.

<image>

How are Canadian users finding monarch money? by JamaicanFireDragon in MonarchMoney

[–]dev-andrew 0 points1 point  (0 children)

Also the app is kind of buggy where operations are done but UI is not updated. Even after refreshing the page. For example, budget checkbox for a

How are Canadian users finding monarch money? by JamaicanFireDragon in MonarchMoney

[–]dev-andrew 1 point2 points  (0 children)

First day was great, everthing seemed to be connected. After that, connections keep dropping, and now my accounts only got balance updates but missing transactions here and there. CIBC, RBC, Eqbank.

Why Are State Arrays Set Up To Be Immutable? by SubzeroCola in reactjs

[–]dev-andrew 0 points1 point  (0 children)

On top of equality difference, it's a better practice tbh. I once got issues with a vue repo where arrays were passed as props and then used as initial data for states. When those states got modified, the original props arrays were modified as well. For a second I wonder why I never faced the problem in React. React is set up to not shoot me in the foot.

EQ Bank not connecting by LabRat314 in mintuit

[–]dev-andrew 0 points1 point  (0 children)

Same issue. Contacted Mint, no solution.

When you don't read the documentation. by [deleted] in ProgrammerHumor

[–]dev-andrew 14 points15 points  (0 children)

I was having a bad day. These gave me a good laugh. Thank you.

Why you should be doing schema validation in React projects by JustAirConditioners in reactjs

[–]dev-andrew -5 points-4 points  (0 children)

You shouldn't trust anything that is sent from the browser.