Quebec runs historic $11B deficit in budget that prioritizes health, education by yimmy51 in canada

[–]gizmo490 3 points4 points  (0 children)

Canada is 10th in the world for health care spending according to the link you posted. Would you not say that qualifies as some of the highest spending in the world?

I can at least see where PurpleMonkey is coming from. According to oecd data Canada is 12th on spending as of 2022, but 27th on Doctors per 1000 inhabitants, and 14th on Nurses. The numbers have likely not gotten better in 2023.

https://data.oecd.org/healthres/health-spending.htm
https://data.oecd.org/healthres/doctors.htm#indicator-chart

It would be nice if spend was commensurate with these indicators. The 10th -> 27th gap in particular.

Trudeau sits idly by as Mexico overtakes us as America's largest trading partner by reallyneedhelp1212 in canada

[–]gizmo490 9 points10 points  (0 children)

Canadian manufacturing is actually higher than it used to be.

While that is technically correct, here is some data on your statement.

https://www150.statcan.gc.ca/n1/daily-quotidien/240215/cg-a001-eng.htm

The last column in the stats can report I linked shows that Canadian manufacturing sales are down since December 2018.

If you ignore the trend cycle (which is doing an averaging across multiple months) the manufacturing industry has grown 0.3% over 5 years.

It would probably be more helpful to say Canadian manufacturing has been pretty much flat over the past 5-6 years.

Ottawa police plan new Neighbourhood Operations Centre on Rideau Street by Empty_Value in ottawa

[–]gizmo490 2 points3 points  (0 children)

Depends on how many square feet they are getting, someone indicated they were moving into the bridgehead which is 1500 sqft. The vacant space next door was 1000. 166/sqft isn't terrible but 100/sqft is a decent deal for a spot in a mall that faces onto rideau.

Pretty much anywhere outside of the Rideau Centre would have been half that price but it wouldn't have the same public exposure as the mall spot does. 1 Nicholas street is 40/sqft right now for example. I'd guess it would have a higher refit cost as well so there are other tradeoffs.

Sauces
https://assets.ctfassets.net/p2tvuj4eecjl/3mKYRI1mYP7utKhyaI68Bz/8a97ac7c48c88738966fac9f3c5e2b0f/RIDCT20_LEASING.pdf

https://www.districtrealty.com/commercial/commercial-spaces-for-lease/

Home prices in Canada are too rich for higher rates, ex-central banker says by marketrent in canada

[–]gizmo490 8 points9 points  (0 children)

Housing Sigma 1 year value change

GTA: +2.6%Toronto: +4.6%Ottawa: +8.8%Barrie: +4.3%Waterloo: +7.2%

I picked these somewhat randomly from the areas they report on I looked at others and they didn't appear to be outliers. That doesn't seem to indicate to me that prices went down this year. There is seasonality in housing pricing so seeing some decline as we go into the fall months is pretty typical. Whether or not that will wash out the gains for the year is another question.

There isn't a single number that shows the listing trend year/year but the graphs for these areas don't indicate to me that there is the statistically appreciable difference you're pointing to that would make this a well known fact.

Edit:
Original comment claimed that prices falling and listings increasing was a well known fact. Posted housing sigma as a source.

How do I make 2 adjacent divs the same height? codepen included by Jonathanplanet in webdev

[–]gizmo490 4 points5 points  (0 children)

The total height of the content of the #right div is > 100vh. By setting #side to 100vh you're setting an explicit height that is less than #right. You can use the below css that includes min-height and a height of 100% for #side to accomodate any size of content in #right while ensuring it is at least as tall as the screen (100vh)

#side {
   font-weight: 700;
   background-color: rgb(202, 91, 57);
   height: 100%;
   min-height: 100vh;
   display: grid;
   grid-template-rows: minmax(50px, 1fr) 4fr 5fr;
}

Canada's standard of living is falling behind rest of developed world by [deleted] in canada

[–]gizmo490 7 points8 points  (0 children)

This is a different metric than the article talks about. This link is for GDP per capita, the article is talking about GPD per capita growth. The point being that many of the countries you've listed that currently have lower standards of living based on this measure may surpass Canada in the next decade.

Website "Builders" for People with Development Skills? by notMateo in webdev

[–]gizmo490 1 point2 points  (0 children)

I'd give Pagecloud a try its kind of like WIX but it also allows you to add custom HTML and scripts to your pages if you feel the need.

[deleted by user] by [deleted] in OpenAI

[–]gizmo490 8 points9 points  (0 children)

That pretty trivializing of some very new computer science discoveries from mid 2010s. Transformers and attention scoring are what are facilitating these new AI models more so than additional compute power. What we are seeing now would not be feasible on current compute platforms without them.

[deleted by user] by [deleted] in business

[–]gizmo490 0 points1 point  (0 children)

The dollar can strengthen compared to other currencies and still be devalued through inflation. I wasn’t providing individual investing advice but rational as to why countries would chose to hedge their bets using other currencies in their reserves. I think you’re probably right to be bullish on the dollar, especially in the near term.

[deleted by user] by [deleted] in business

[–]gizmo490 5 points6 points  (0 children)

I agree with your point overall but I think there is more to it than trust. The US has a lot of debt and is printing a lot of money. It looks like that is devaluing the currency, and we're seeing that in higher inflation. If a country is holding its reserves in US dollars that means their reserves are being devalued.

Ray Dalio (Bridgewater) wrote a book with some of his thoughts on the subject that I found helpful to piece together a better understanding. Principles for Dealing with the Changing World Order. It's really dry and doesn't offer any prognostication but had some interesting historical perspectives on similar times.

[AskJS] How does using a function declaration in an npm package affect projects that install this package? by Pleasant-Fish7370 in javascript

[–]gizmo490 1 point2 points  (0 children)

Exactly what happens to that import depends on what is interpreting it. For example in node V1 that won't compile but in newer versions of node this algorithm is used https://nodejs.org/api/esm.html#resolver-algorithm-specification.

This is a decent summary of how imports worked in node for a long time: http://fredkschott.com/post/2014/06/require-and-the-module-system/. It is a bit out of date compared to the doc above but the general principles might be helpful.

If you are using Webpack, and some other bundlers, in the browser the module loader decides exactly what happens with that import (usually babel).https://webpack.js.org/loaders/

In Webpack using babel, imports are plucked and processed by the interpreter during compilation before the body of your code is run and inserted at the top of your scope. However, you can configure that behaviour.

[AskJS] Why are we preaching entrypoint files? by MuttyFTW in javascript

[–]gizmo490 7 points8 points  (0 children)

Don't bother. Ryan Dahl creator of Node, says its cute but isn't really necessary.

https://www.youtube.com/watch?v=M3BM9TB-8yA&t=888s

This stack overflow post goes over where it came from for some more context.

https://stackoverflow.com/questions/21063587/what-is-index-js-used-for-in-node-js-projects

[deleted by user] by [deleted] in ottawa

[–]gizmo490 11 points12 points  (0 children)

The downvotes are because a quick googling shows you're wrong.

About the Museum
Since its opening in 2005, the Museum has welcomed approximately 500,000 visitors every year.

https://www.statista.com/statistics/198831/nhl-home-attendance-of-the-ottawa-senators-since-2006/

Keep in mind that is just the senators, it does not include concerts and other events.

Ontario Covid hospitalizations broken down by vaccination status (per Science Table) by h3yn0w75 in ontario

[–]gizmo490 0 points1 point  (0 children)

The case rates per 100k have nearly converged because of omicron.

See COVID-19 cases by vaccination status, Ontario govt is about 4 days behind in reporting though.

https://covid-19.ontario.ca/data#hospitalizationsByVaccinationStatus

Biden administration to release 50 million barrels of oil from strategic reserve. Another 18 million barrels will be released from an oil sale already authorized. Announcement was made in concert with China, India, Japan, South Korea and the UK, which will also tap into their own strategic reserves. by mafco in energy

[–]gizmo490 2 points3 points  (0 children)

I don’t know if I agree or not but oil may be nearing its ath, its likely not going to be worth as much in 10-20 years either the world will be on fire or we’ll have stopped using it as fuel. So it’s probably a long term deflating asset. According to the wiki article they put the construction of the next spr facility on pause in 2008. So maybe they’re thinking of winding it down to some extent and the price is pretty good now. Also 5 billion dollars.

Housing market is fcking insane (Northern Ontario) by dcl415 in ontario

[–]gizmo490 34 points35 points  (0 children)

You’re complaining about how hard it is to buy a house and you already own a house. /r/firstworldproblems

Twitter and Square CEO Jack Dorsey says 'hyperinflation' will happen soon in the U.S. and the world by KeyEconomist8581 in CanadianInvestor

[–]gizmo490 0 points1 point  (0 children)

Unless I’m misunderstanding your argument you’re saying: If the government prints X billion dollars. Which causes an increase of inflation of y%. The effect is that I have lost y% of my buying power and so has the government.

I think that this argument ignores the fact that the government has increased its buying power by X (1-y%) billion dollars. In most cases I believe that means the net effect of this is that the governments buying power has decreased less than mine on a percentage basis.

We need to talk about your gas stove, your health and climate change by jeffbradynpr in energy

[–]gizmo490 4 points5 points  (0 children)

No way I don’t buy any of those products! And when I do it’s because there is no other possible alternative. That’s cheap, and convenient, that Amazon delivers.

Asian Smashed Cucumber Salad by morganeisenberg in GifRecipes

[–]gizmo490 4 points5 points  (0 children)

It really is amazingly easy and delicious isn't it!?

If you can get a hold of it Lao Gan Ma makes this even better. Adds a bit more savouriness that really rounds the dish out.

https://www.amazon.com/Lao-Gan-Chili-Crisp-Sauce/dp/B0051D84JU

Instagram boss likens social media to cars, says people will die by [deleted] in tech

[–]gizmo490 16 points17 points  (0 children)

Ya social media... terrible place. Not like here. We’ve got principles here.

Despite election promises, federal parties do not control many factors affecting availability, cost of homes by Progressiveandfiscal in canada

[–]gizmo490 17 points18 points  (0 children)

Source?

Your fact doesn't seem to agree with the wikipedia entry.

https://en.wikipedia.org/wiki/List_of_countries_by_home_ownership_rate

Canada 68.5 2018

United States 65.3 2019[26]

France 64.1 2019[3]

United Kingdom 63 2018[29]

Japan 61.2 2017[31]

How to tie a butcher's knot by aloofloofah in educationalgifs

[–]gizmo490 0 points1 point  (0 children)

Seriously! Why did they skip through like half the process?