home.social

Search

37 results for “keyofG”

  1. @keyofG
    Yeah, just 5 MPs, MSM not so interested, not much committee time.
    The electorate was not so kind.

    Why is AL is the only one on Mastodon?

    The #FearlessFive (as I would like to call them) could have used whatever social media they could access to inform the public about the tragedy C22 will become.
    They could have issued some documents.

    They could have done so much more!

    That's my point.

    Fight like hell for bleep sake - Jack would have.
    If preserving the Charter is not the most important issue to them then what is?

    The only way back for the NDP is to PROVE to Canadians that they are going to fight like hell for this nation.
    "We're only 5 MPs" isn't going to cut it - not fair but that's what it is.

    MSM has largly ignored Bill C22 and the implications will be life changing.

    IMO the Libs are engaging in misinformation and I'll never trust the Cons (after their spy Bill C30 in 2012)

    BTW I prev sent a toot about turfing PMMC - not going to miss him when he returns to banking.

  2. @keyofG
    Yeah, just 5 MPs, MSM not so interested, not much committee time.
    The electorate was not so kind.

    Why is AL is the only one on Mastodon?

    The #FearlessFive (as I would like to call them) could have used whatever social media they could access to inform the public about the tragedy C22 will become.
    They could have issued some documents.

    They could have done so much more!

    That's my point.

    Fight like hell for bleep sake - Jack would have.
    If preserving the Charter is not the most important issue to them then what is?

    The only way back for the NDP is to PROVE to Canadians that they are going to fight like hell for this nation.
    "We're only 5 MPs" isn't going to cut it - not fair but that's what it is.

    MSM has largly ignored Bill C22 and the implications will be life changing.

    IMO the Libs are engaging in misinformation and I'll never trust the Cons (after their spy Bill C30 in 2012)

    BTW I prev sent a toot about turfing PMMC - not going to miss him when he returns to banking.

  3. @keyofG
    Yeah, just 5 MPs, MSM not so interested, not much committee time.
    The electorate was not so kind.

    Why is AL is the only one on Mastodon?

    The #FearlessFive (as I would like to call them) could have used whatever social media they could access to inform the public about the tragedy C22 will become.
    They could have issued some documents.

    They could have done so much more!

    That's my point.

    Fight like hell for bleep sake - Jack would have.
    If preserving the Charter is not the most important issue to them then what is?

    The only way back for the NDP is to PROVE to Canadians that they are going to fight like hell for this nation.
    "We're only 5 MPs" isn't going to cut it - not fair but that's what it is.

    MSM has largly ignored Bill C22 and the implications will be life changing.

    IMO the Libs are engaging in misinformation and I'll never trust the Cons (after their spy Bill C30 in 2012)

    BTW I prev sent a toot about turfing PMMC - not going to miss him when he returns to banking.

  4. @keyofG
    Yeah, just 5 MPs, MSM not so interested, not much committee time.
    The electorate was not so kind.

    Why is AL is the only one on Mastodon?

    The #FearlessFive (as I would like to call them) could have used whatever social media they could access to inform the public about the tragedy C22 will become.
    They could have issued some documents.

    They could have done so much more!

    That's my point.

    Fight like hell for bleep sake - Jack would have.
    If preserving the Charter is not the most important issue to them then what is?

    The only way back for the NDP is to PROVE to Canadians that they are going to fight like hell for this nation.
    "We're only 5 MPs" isn't going to cut it - not fair but that's what it is.

    MSM has largly ignored Bill C22 and the implications will be life changing.

    IMO the Libs are engaging in misinformation and I'll never trust the Cons (after their spy Bill C30 in 2012)

    BTW I prev sent a toot about turfing PMMC - not going to miss him when he returns to banking.

  5. @keyofG

    Glad to see NDP MP Jenny Kwan standing up for this program. Obviously Carney does not care. His priorities are focused on militarization, tax cuts, and oil export.

    #MarkCarney #lpc #ndp #cdnpoli #canpoli

  6. @keyofG

    Glad to see NDP MP Jenny Kwan standing up for this program. Obviously Carney does not care. His priorities are focused on militarization, tax cuts, and oil export.

    #MarkCarney #lpc #ndp #cdnpoli #canpoli

  7. @keyofG

    Glad to see NDP MP Jenny Kwan standing up for this program. Obviously Carney does not care. His priorities are focused on militarization, tax cuts, and oil export.

    #MarkCarney #lpc #ndp #cdnpoli #canpoli

  8. @keyofG

    Glad to see NDP MP Jenny Kwan standing up for this program. Obviously Carney does not care. His priorities are focused on militarization, tax cuts, and oil export.

    #MarkCarney #lpc #ndp #cdnpoli #canpoli

  9. @keyofG

    Glad to see NDP MP Jenny Kwan standing up for this program. Obviously Carney does not care. His priorities are focused on militarization, tax cuts, and oil export.

    #MarkCarney #lpc #ndp #cdnpoli #canpoli

  10. @keyofG

    The #DiEM25 movement in the EU produced this introductory video for their conference last year.

    youtube.com/watch?v=FWdhcdrCkaM

  11. A keyof puzzle by Dan Vanderkam

    A path to understanding how TypeScript's type system works by:
    ➡️ thinking of TypeScript types as sets of values
    ➡️ using examples to explain the intersection and union of types.
    ➡️ highlighting the “open” nature of TypeScript types and the role of optional fields

    effectivetypescript.com/2024/0

  12. 🌟 Discover the Arbatel: 7 Olympic Spirits. Learn invocation and dismissal methods. Patreon members get our free spirits guide! #highmagick #keyofsolomon #solomonicmagick youtu.be/Y9MRHHQO6JI

  13. Typescript's' type system is always up for a surprise:

    type Supplier<X> = () => X;
    declare function f<T extends any[]>(...args: { [I in keyof T]: Supplier<T[I]> }): T;
    const values = f(() => 3, () => "text", () => true);//

    Here f has an arbitrary number of Supplier parameters and the compiler knows that values has the tuple type [number, string, boolean] .

    And this is not theoretical. I want to use this in a project.
    stackoverflow.com/a/79679195/2

    #TypeScript #programming #typesystem