• 0 Posts
  • 29 Comments
Joined 1 year ago
cake
Cake day: July 5th, 2023

help-circle



  • Funnily enough, in my town there used to be a Future Shop, and then a Best Buy sprung up in the new commercial district, but apparently couldn’t compete because it closed 2 years later. Then about a year later Best Buy bought Future Shop and they re-branded the existing Future Shop to Best Buy.




  • Yeah, there’s some stuff on the side, but get a can of chef boyardee, a sealed packet of crackers and a pop tart, and that’s pretty much it. Add some Qwik and Gatorade powder for hydration, maybe. At 250$ per 12-pack it’s more expensive than eating out.

    I’m involved with the Canadian cadet program, and these are the exact ones we eat when we go on expédition, they’re nothing fancy. They are convenient, though.



  • Canadian here. It really depends on if it’s a cultural use or something the government might have an influence on through legislation. They can force industries to label packages in metric, but they can’t force grandma to change her manually-transcribed recipes. The other big influence is obviously our neighbours to the south. A lot of industries haven’t switched over there, and we get their products. Main culprit here would be the construction industry, lumber and hardware is all in US customary units and I hate it.




  • ebc@lemmy.catoADHD memes@lemmy.dbzer0.comNothing but truth
    link
    fedilink
    English
    arrow-up
    14
    arrow-down
    1
    ·
    6 months ago

    When somebody doesn’t want to give me a price, I’ve started asking them for an order of magnitude. Sometimes they still don’t want to say a number, but when I ask “is it 2$, 20$, 200$, 2k$, 20k$?” they will usually give me a ballpark, along with the factors that’ll make the price vary.





  • shove some text into stdout

    That’s not what this operator does normally, and if you try to “shove” something into anything else (an int into a variable? a function into an object?) you’ll get surprises… Basically it’s “special” and nothing else in the language behaves like it. Learning hello world in C++ teaches you absolutely nothing useful about the language, because it doesn’t generalize.

    C, in contrast, has many instances of complex functions like printf (another commenter mentioned variable arguments), and learning to call a function is something very useful that generalizes well to the rest of the language. You also learn early enough that each different function has its own “user manual” of how to use it, but it’s still just a function call.


  • this std::cout << "hello world" bullshit is in no way intuitive. You’re using the bit-shift operator to output stuff to the console? WTF? Why 2 colons? What is cout? And then these guys go on to complain about JS being weird…

    No, C is where it’s at: printf("hello world"); is just a function call, like all the other things you do in C.