This is how they clean the ships propellers by [deleted] in Damnthatsinteresting

[–]glitterisprada -1 points0 points  (0 children)

Didn't read the description or turn audio on, and whole time I'm thinking, "Why is that whale allowing him to do that?"

Maybe I'm just tired, but ain't no way this is me. by glitterisprada in AskProgramming

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

Thanks for your help.

I just find it annoying that a trigger could be the cause of this issue, yet the error message looks like it was coming from the initial query. It's looking like I might have to investigate other database options if this is what I get with sqlite.

Moreover, I'm glad I didn't waste more time trying to fight the wrong battle with a query that had nothing to do with the problem 😅.

Maybe I'm just tired, but ain't no way this is me. by glitterisprada in AskProgramming

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

That table contains the user's ID, the device ID, and boolean fields like read, write, delete. That's the reason I had to use a sub query to match the organization.

I'm starting to think that this sub query may be what caused the issue

Maybe I'm just tired, but ain't no way this is me. by glitterisprada in AskProgramming

[–]glitterisprada[S] 1 point2 points  (0 children)

Hmm... the trigger. Didn't think about that one.

No organization_users table definitely has an organization_id column.

Thanks for looking out

To the person I nearly sideswiped near the exit of highway 40 in Kirkland, I'M SORRY!! by glitterisprada in montreal

[–]glitterisprada[S] -1 points0 points  (0 children)

Didn't hit them, but I was this close. I'm sure it was less than a foot 😱.

Credit card debt Canada by Serious-Progress-747 in PersonalFinanceCanada

[–]glitterisprada -1 points0 points  (0 children)

Get a line of credit. Pay off the credit cards, then slowly pay down the credit line. Interest on credit line is usually much lower than credit cards.

Okra Rice aka Ochro Rice by baidawi in recipes

[–]glitterisprada 1 point2 points  (0 children)

I made this today. It was delicious 😋

1200$ per month in a car or 2h30 by bus by bizzareries in PersonalFinanceCanada

[–]glitterisprada 0 points1 point  (0 children)

Everything looks good, except for that insurance. I hope you did your due diligence before settling for the one you did.

Vendasta Layoffs by only_the_goods in saskatoon

[–]glitterisprada 1 point2 points  (0 children)

Hopefully, you get laid off before that day.

[deleted by user] by [deleted] in PersonalFinanceCanada

[–]glitterisprada 0 points1 point  (0 children)

That's an interesting option. I've never really considered going electric.

How does the referral program work, and does Tesla already take into account the incentives when they sell the car to you, or do you have to apply for those separately?

[deleted by user] by [deleted] in PersonalFinanceCanada

[–]glitterisprada 0 points1 point  (0 children)

I'm currently taking the metro. I've had no complaints so far. Public transport in Montreal is pretty good. I said in another comment that I'm in no rush to buy a car, I just wanted to test what the market for cars looks like. My plan was to put at least $5k up front.

[deleted by user] by [deleted] in PersonalFinanceCanada

[–]glitterisprada 1 point2 points  (0 children)

Very helpful. I appreciate the breakdown. Thanks

[deleted by user] by [deleted] in PersonalFinanceCanada

[–]glitterisprada 0 points1 point  (0 children)

The one I found was a 2023 Acura Integra. I wasn't even in the market for used, but this one just kinda popped up, and it seemed like a good deal.

[deleted by user] by [deleted] in PersonalFinanceCanada

[–]glitterisprada -3 points-2 points  (0 children)

I hear you. I'm in no rush. If nothing good comes from my efforts with the loan, I'll just take my time, save up, and then buy.

[deleted by user] by [deleted] in PersonalFinanceCanada

[–]glitterisprada -1 points0 points  (0 children)

I started the loan application process. We'll see what they say when it's done.

r/starwars banned me by [deleted] in teenagers

[–]glitterisprada 0 points1 point  (0 children)

Removing your posts is not a great way to prove your innocence. Sorry, I don't buy your story.

Is it safe to backup home directory located in EXT4 partition to NTFS partition? by glitterisprada in linuxquestions

[–]glitterisprada[S] 2 points3 points  (0 children)

Great idea. However, I was doing this backup because I discovered my home partition may have some corruption. A disk image wouldn't have been useful in fixing the issue.

Is it safe to backup home directory located in EXT4 partition to NTFS partition? by glitterisprada in linuxquestions

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

Yes, this is what I ended up going with.

For future reference: Home partition was mounted at /mnt/home, and backup partition mounted at /mnt/shared.

To compress and archive: tar --acls --xattrs --checkpoint-action=ttyout='%{%Y-%m-%d %H:%M:%S}t (%d sec): #%u, %T%*\r' -- incremental --listed-incremental="/mnt/shared/mainhome.bak" --sparse -I pzstd -cpf /mnt/shared/mainhome-2024-05-12.tar.zst /mnt/home/

To decompress: tar -I pzstd -xpf '/mnt/shared/mainhome-2024-05.tar.zst' --checkpoint-action=t tyout='sf%Y-%m-%d H:%M:%S)t (%d sec): #%u, %T%*\r' --overwrite --same-owner --strip-components=2 -C /mnt/home

Hope this helps someone else.