home.social

#bc — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #bc, aggregated by home.social.

fetched live
  1. The original post has scrolled off my auto delete policy, but this guide to Northern BC, suggested by someone on AskMetafilter, arrived yesterday, for those interested in the topic. The maps are really clear, and well tied to the text in both directions. The book is organized by activity (trails, fishing, camping, ORV, etc.) and the descriptions of parks, facilities, etc. outdo those in The Milepost

    backroadmapbooks.com/products/

    #travel #canada #bc #BritishColumbia #roadTrip

  2. The original post has scrolled off my auto delete policy, but this guide to Northern BC, suggested by someone on AskMetafilter, arrived yesterday, for those interested in the topic. The maps are really clear, and well tied to the text in both directions. The book is organized by activity (trails, fishing, camping, ORV, etc.) and the descriptions of parks, facilities, etc. outdo those in The Milepost

    backroadmapbooks.com/products/

    #travel #canada #bc #BritishColumbia #roadTrip

  3. Our air east of Portland went from an AQI approaching 200 to very low levels (I noticed 9), before beginning to rise again (in the high 50's now).

    youtube.com/watch?v=Rduc92ulxmU

    #Washington #Oregon #BC #weather

  4. Our air east of Portland went from an AQI approaching 200 to very low levels (I noticed 9), before beginning to rise again (in the high 50's now).

    youtube.com/watch?v=Rduc92ulxmU

    #Washington #Oregon #BC #weather

  5. Aqua Gems brand Tempura Shrimp recalled due to undeclared egg. It was sold in Alberta :flagab:, British Columbia :flagbc: and Ontario :flagon:

    recalls-rappels.canada.ca/en/a
    - - -
    Rappel de Crevettes tempura de marque Aqua Gems en raison de la présence non déclarée d'œufs. C’était vendu en Alberta :flagab: , en Colombie-Britannique :flagbc: et en Ontario :flagon:

    recalls-rappels.canada.ca/fr/a

    #Alberta #BC #BritishColumbia #ColombieBritannique #Ontario #Recall #Rappel #AquaGems

  6. Aqua Gems brand Tempura Shrimp recalled due to undeclared egg. It was sold in Alberta :flagab:, British Columbia :flagbc: and Ontario :flagon:

    recalls-rappels.canada.ca/en/a
    - - -
    Rappel de Crevettes tempura de marque Aqua Gems en raison de la présence non déclarée d'œufs. C’était vendu en Alberta :flagab: , en Colombie-Britannique :flagbc: et en Ontario :flagon:

    recalls-rappels.canada.ca/fr/a

    #Alberta #BC #BritishColumbia #ColombieBritannique #Ontario #Recall #Rappel #AquaGems

  7. 🇨🇦 🔥
    Canadian wildfire that forced 20,000 to flee may signal ‘new normal’ for fire speed.

    Given the drought and summer heat, he warned, “this is very unlikely to be the last significant fire we see this summer.”
    Canada has warmed faster than the global average in recent decades, while the amount of land burned by wildfires has increased substantially.

    #Wildfires #Canada #BC

    apnews.com/article/canada-wild

  8. 🇨🇦 🔥
    Canadian wildfire that forced 20,000 to flee may signal ‘new normal’ for fire speed.

    Given the drought and summer heat, he warned, “this is very unlikely to be the last significant fire we see this summer.”
    Canada has warmed faster than the global average in recent decades, while the amount of land burned by wildfires has increased substantially.

    #Wildfires #Canada #BC

    apnews.com/article/canada-wild

  9. Thunder, lightning and rain happening on the mainland across the #SalishSea. I hope it brings relief for the firefighters. #bc #pnw

  10. Thunder, lightning and rain happening on the mainland across the #SalishSea. I hope it brings relief for the firefighters. #bc #pnw

  11. After 1,900 signatures and months of waiting, we received a reply from the BC Ministry of Education.

    They said "it's not our responsibility".

    This is another example of federal and provincial governments prioritizing AI over human well-being.

    aicaution.ca/news/reply-from-m

    #noai #ai #bc #bcpoli #canada #edtech #education

  12. After 1,900 signatures and months of waiting, we received a reply from the BC Ministry of Education.

    They said "it's not our responsibility".

    This is another example of federal and provincial governments prioritizing AI over human well-being.

    aicaution.ca/news/reply-from-m

    #noai #ai #bc #bcpoli #canada #edtech #education

  13. I don't understand why companies don't just post salaries on #jobs postings.

    You have a budget, you have pay ranges for existing people, just put it on there.

    Also, it's legally required in many jurisdictions, including #BC #Canada (regardless of where the company is based).

  14. I don't understand why companies don't just post salaries on #jobs postings.

    You have a budget, you have pay ranges for existing people, just put it on there.

    Also, it's legally required in many jurisdictions, including #BC #Canada (regardless of where the company is based).

  15. Better at home

    Doesn’t work for people with memory loss.

    Disaster. Blowing apart people in the family. Devastating and causing further health issues in others.

    #bc #canada #dementia #health #senior #elder

  16. Better at home

    Doesn’t work for people with memory loss.

    Disaster. Blowing apart people in the family. Devastating and causing further health issues in others.

    #bc #canada #dementia #health #senior #elder

  17. Globe & Mail: The #BaldRange #wildfire was discovered Friday on the west side of #OkanaganLake. It tore through 50 square kilometres in its first three hours and doubled in size by Saturday, when #BC declared a provincewide state of #emergency. By Sunday, it grew to 136 square kilometres #wildfire

  18. Converge on phi with #bc and #bash

    #!/usr/bin/env bash
    a=0 b=1
    for((i=2;i<=23;i++));{
    c=$((a+b))
    printf "Fibonacci(%d) / Fibonacci(%d) = %.20f\n" $i $((i-1)) "$(bc -l<<<"$c/$b")"
    a=$b b=$c
    }

  19. Converge on phi with and

    #!/usr/bin/env bash
    a=0 b=1
    for((i=2;i<=23;i++));{
    c=$((a+b))
    printf "Fibonacci(%d) / Fibonacci(%d) = %.20f\n" $i $((i-1)) "$(bc -l<<<"$c/$b")"
    a=$b b=$c
    }

  20. ahhhh what a night for true theatrical art 😎

    #canada #bc #yvr

  21. ahhhh what a night for true theatrical art 😎

    #canada #bc #yvr

  22. Print a list of antiprimes (highly composite numbers) with #bc

    #! /usr/bin/bc
    define factors(n) {
    auto c, i
    for(i=1;i<=n;i++) {
    if(n%i==0) c+=1
    }
    return c
    }
    max = 0
    n = 1
    for(c=19; c > 0;) {
    f = factors(n)
    if(f > max) {
    print n," "
    max = f
    c -= 1
    }
    n += 1
    }
    print "\n"
    quit

    #bc
  23. Print a list of antiprimes (highly composite numbers) with

    #! /usr/bin/bc
    define factors(n) {
    auto c, i
    for(i=1;i<=n;i++) {
    if(n%i==0) c+=1
    }
    return c
    }
    max = 0
    n = 1
    for(c=19; c > 0;) {
    f = factors(n)
    if(f > max) {
    print n," "
    max = f
    c -= 1
    }
    n += 1
    }
    print "\n"
    quit

    #bc
  24. 🇨🇦 🔥

    "We have kind of gotten to the point where we need to have additional powers,” Greene told CFJC News. “So that provincial state of emergency unlocks additional tools for us, such as restricting non-essential travel, the rationing of goods or services. So kind of things that support a response.”

    The province currently has more than 100 active fires burning, with more than 21,000 people evacuated from their homes, with over 10,000 others on alert."

    #BC #Wildfires

    cfjctoday.com/2026/08/10/minis

  25. 🇨🇦 🔥

    "We have kind of gotten to the point where we need to have additional powers,” Greene told CFJC News. “So that provincial state of emergency unlocks additional tools for us, such as restricting non-essential travel, the rationing of goods or services. So kind of things that support a response.”

    The province currently has more than 100 active fires burning, with more than 21,000 people evacuated from their homes, with over 10,000 others on alert."

    #BC #Wildfires

    cfjctoday.com/2026/08/10/minis

  26. 🇨🇦 🔥 If you are a BC
    Evacuee or Not One Yet
    please read the info in these links

    🚨 BC State of Emergency Information
    For Residents

    👉 EVACUATION INFO:
    Find current emergencies by last update
    emergencyinfobc.gov.bc.ca/

    👉 ACCESS
    Emergency SUPPORT SERVICES (ESS)

    ess.gov.bc.ca/

    #BC #Wildfires #Canada

    😞 Good Luck Everyone. Stay Safe 🫂

  27. 🇨🇦 🔥 If you are a BC
    Evacuee or Not One Yet
    please read the info in these links

    🚨 BC State of Emergency Information
    For Residents

    👉 EVACUATION INFO:
    Find current emergencies by last update
    emergencyinfobc.gov.bc.ca/

    👉 ACCESS
    Emergency SUPPORT SERVICES (ESS)

    ess.gov.bc.ca/

    #BC #Wildfires #Canada

    😞 Good Luck Everyone. Stay Safe 🫂

  28. RE: mastodon.online/@cfjc_today/11

    🇨🇦 🔥 🛑 👇 Monday Aug 10, 2026

    The operation of any off-road vehicle for recreational purposes on Crown land will be prohibited and all on-highway vehicles must remain on road surfaces as defined in the Forest Planning and Practices Regulation,” said the BCWS.
    Read more info in link

    #Wildfires #BC #Canada