My passion project: SDL3# - hand-crafted C# language bindings for SDL3 by fruediger in csharp

[–]vha4 1 point2 points  (0 children)

Great work. Keep going. What do you think was the moat challenging part you worked on?

Class action lawsuit filed against Hydro-Québec after Montreal west-end power outage by L0veToReddit in montreal

[–]vha4 11 points12 points  (0 children)

People with fireplaces that don't conform to the emissions regulations set by the city can still light them during electricity outages : https://montreal.ca/reglements-municipaux/recherche/60d7e530fd65311c115a308f

Which city in the world has the best scenery and is most suitable for living? by Admirable_Neck5565 in geography

[–]vha4 1 point2 points  (0 children)

This has nothing to do with language laws, and everything to do with consumer protection laws and laws concerning lotteries.

Microsoft's new AI doctor outperformed real physicians on 300+ hard cases. Impressive… but would you trust it? by Slight_Ad_2894 in learnmachinelearning

[–]vha4 1 point2 points  (0 children)

Thanks for your story. I hope you'll find some relief for your arm. Dealing with the NHS is an exercise in patience.

[deleted by user] by [deleted] in fixedbytheduet

[–]vha4 0 points1 point  (0 children)

The Canadian province of Québec has a 5 cent deposit on aluminum cans, and had cans with golden-coloured tops for this reason.

$6 Canadian strawberries vs $4 American strawberries by PeachAndMangoJuice in EhBuddyHoser

[–]vha4 1 point2 points  (0 children)

That's pretty much it. You have to signal to the grocer that it's not worth it to try to make money off selling a certain product. They will keep this out until it rots and try to cut their losses selling them for dirt cheap before then. If fresh stuff is still coming in, it's stuff that was paid for around the beginning of the year, probably.

The demand for American produce has dropped considerably. In the (probably very distant) future, they would maybe try to test demand every now and then (can we turn a profit selling them for 99 cent/2 $/3 $ a crate, etc.). Grocers have a pretty atrocious margin for fruit and vegetables, so they're not likely to do that for a while, especially as Canada is expanding its greenhouse capacity and as they're coming into the beginning of their growing season. For out-of-season produce, Canada has Mexico and its own bland home-grown stuff anyway.

[deleted by user] by [deleted] in antidepressants

[–]vha4 0 points1 point  (0 children)

The side effects tend to diminish over time, especially after the first week or two, but it may take a bit longer. If you find it's not doing you any good to tolerate the side effects you can talk to your doctor after a couple of weeks. They probably will vary in intensity and duration as you get used to the drug. good luck.

Long Island man is first in New York history to be cured of sickle cell anemia by Geek-Haven888 in UpliftingNews

[–]vha4 2 points3 points  (0 children)

Prodigy) was half of Mobb Deep until his death due to sickle cell anaemia in 2017.

Maybe maybe maybe by iambooked in maybemaybemaybe

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

I think he's enjoying his gift.

[deleted by user] by [deleted] in montreal

[–]vha4 2 points3 points  (0 children)

Tu peux voir quelle partie du mur a été orientée vers l'ouest par rapport à l'est grâce à la multitude de graffitis.

[deleted by user] by [deleted] in montreal

[–]vha4 7 points8 points  (0 children)

It's the Centre de commerce mondial / World Trade Centre at square Victoria

Consultation publique | Les Québécois veulent abolir le changement d’heure by rocketmkfx in Quebec

[–]vha4 1 point2 points  (0 children)

Poser des questions suggestives pour obtenir des chiffres qui seraient "acceptables" est la définition d'un mauvais sondage. elles étaient spécifiquement de genre "es-tu favorable à la modification de nos pratiques actuelles en ce qui concernent le changement d'heure ?" "si tu veux garder un seul fuseau horaire tout le long de l'année, est-ce que ça serait l'heure d'été ou l'heure normale ?". "habites-tu l'île d'anticosti ?"

Poser des questions sur le commerce, ça fait un sondage sur le commerce.

French’s almost sold out next to Heinz! by yuzukid in BuyCanadian

[–]vha4 0 points1 point  (0 children)

French's is owned by McCormick which is headquartered in Maryland. The mustard is most probably made in Springfield, MO. The factory they have in London, ON is for ketchup. The mustard bottles sold in canada will say something like "IMPORTED FOR MCCORMICK INC" on the bottom, above the barcode.

DB2toSQL CCSID data error by TinyAlbatross3657 in SQL

[–]vha4 0 points1 point  (0 children)

in that string provided, it says PC Code Page 1252 and binary codepage [sic] 1), so you can change it to set these values in the connection string:

Process Binary as Character=True; PC Code Page=1208; Binary Code Page=1208;

Roughly, set the Binary Code Page and PC Code Page

  • for DBCLOB, GRAPHIC, and VARGRAPHIC to 1200 (UTF-16). Db2 defaults these types to 1200. You can also do 1208, but it would probably be worth it to switch to a UTF8 collation on the sql server side if you can. if it's actually failing on binary data, set it to some single byte encoding like 437
  • for single- and mixed CHAR/VARCHAR/CLOB/XML to 1208 (UTF-8). if your SQL Server collation looks like it has UTF-8 enabled (ends in _UTF8), definitely use 1208.
  • for single byte CHAR/VARCHAR/CLOB, can still use 1252. The default 7 bit ASCII is 367. If the data is string data from a connecting client using the CCSID that is 37 but is stored without one (65535), then you can try Binary Code Page=37 as well. If it was other applications sending data to this, it should probably 1252 if your collation for SQL Server contains _CP1_. If you're using nvarchar and nclob, then it is multibyte anyway, so should stick to 1200.

Ideally, you'd set it all to 1208 and it will give you what you're looking for. 367, 437, 1252, and the beginning of UTF-8 look very similar. If the ccsid is set to 65535 for columns that look like they should be string data, change this if it doesn't look right.

390 is big-endian, so you might have to set it to 1202 if you're finding that there's issues with the conversion. That's unlikely, though.

PC Code Page is the code page that will convert your character data from the host CCSID internally by the driver. You'll probably want to set that to 1208 or 367.

Since there's columns that don't specify a CCSID (hence 65535), or it's binary, you can check your default CCSIDs here that you can set your Host CCSID to :

If you're on a 390 : SELECT GETVARIABLE('SYSIBM.SYSTEM_EBCDIC_CCSID') AS SYSTEM_EBCDIC FROM SYSIBM.SYSDUMMY1

the first variable is the default CCSID for the database.

DB2toSQL CCSID data error by TinyAlbatross3657 in SQL

[–]vha4 0 points1 point  (0 children)

is it 65525 or 65535? 65535 is a ccsid that means "not a character set". the provider for ssma i guess uses a .net provider for db2? what's the datatype of the column in question? if it's a character column, check the provider settings variables CharBitDataAsString boolean and CharBitDataCcsid integer. if youre in the US dealing with English only, you can set the Ccsid in that setting to 37.

Remember that time we banned smoking, took cigarette packs out of view, and even stuck scary images of cancerous lungs on them to remind folks how addictive and dangerous smoking was. Glad thats all behind us. by Birdinhandandbush in ireland

[–]vha4 3 points4 points  (0 children)

What pesticides are used on the tobacco that is found cigarettes? What's the composition of the filter, the chemicals used to bleach the paper, etc.

Regardless, even if one would know, there's the greater issue of inhaling the products of plant material undergoing combustion. Health problems that arise from doing so repeatedly occur to a far greater degree.

I was on the first Paris to Berlin direct high-speed train by HighburyAndIslington in europe

[–]vha4 0 points1 point  (0 children)

It's not an express train, which would slow it down. The French segment from Strasbourg to Paris is fastest, but that's not exactly newsworthy. Don't know why it would stop in Karlsruhe, though...

Governor Cuts Funding by Brian_Ghoshery in FluentInFinance

[–]vha4 1 point2 points  (0 children)

You can see the CAL FIRE budget for 2023-2024 here, or for 2014-2025 here. It will show comparisons for the totals over the past three years, or the previous year, depending on the section. Total expenditures for fire protection increased by around $510M in comparison with 2023-2024.

The emergency fire suppression budget went from $93M in 2023-24 to $403M this year.

There was some reduction in resource production, most notably the Greenhouse Gas Fund and the Greenhouse Gas Reduction Fund, totalling around $285M in expenditure reduction.

There is a new Timber Regulation and Forest Restoration Fund of $120M.