'Food is medicine': New Glasgow health clinic hands out veggies to patients
The Highland Health Home and Learning Centre in New Glasgow is testing the idea that prevention is cure as it hands out free bags of greens to its patients as part of a 12-week pilot program.
https://www.cbc.ca/news/canada/nova-scotia/highland-health-greens-pilot-program-9.7151257?cmp=rss
‘The need is there’: Liberals ask why N.L. government ended Labrador Air Access pilot program
A pilot program aimed at tackling the high cost of flying in and out of Labrador has ended, but the Newfoundland and Labrador government says a new and improved measure is in the works.
https://www.cbc.ca/news/canada/newfoundland-labrador/labrador-air-access-program-end-9.7153968?cmp=rss
Algonquin College athletes shocked after rugby program suspended
The students' association at Algonquin College has decided to suspend the men's and women's rugby programs, citing financial constraints. Players from both teams say they're devastated and are looking for a way to keep the sport alive.
https://www.cbc.ca/news/canada/ottawa/athletes-shocked-by-sudden-suspension-of-rugby-teams-at-algonquin-college-9.7154167?cmp=rss
New autism mental health program offers free services to families in Fort Frances, Ont.
As communities across Canada mark Autism Awareness Month, a new free program has been launched in Fort Frances, Ont., to support children with autism and their caregivers. Here's what's being offered through the autism mental health program in northwestern Ontario.
https://www.cbc.ca/news/canada/thunder-bay/autism-mental-health-program-fort-frances-9.7154099?cmp=rss
New program launched for vaccine-injured Canadians
The Public Health Agency of Canada has taken over a program for vaccine-injured Canadians
#Health #COVID19 #VISP
https://globalnews.ca/news/11754892/new-program-launched-for-vaccine-injured-canadians/
Penticton teen artists showcase talent on city street banners
Four students were selected by the city to have their designs featured on street banners as part of a program at the Penticton Art Gallery.
https://www.cbc.ca/news/canada/british-columbia/penticton-teen-artists-showcase-talent-on-city-street-banners-9.7147931?cmp=rss
Cote First Nation elders help offenders and victims through court appearances
Cote First Nation in Saskatchewan started a program three months ago called Elders in the Courthouse, where elders give support in areas of cultural ceremonies, navigating the justice system and offering a grandparent's love as offenders and victims attend circuit court in Kamsack.
https://www.cbc.ca/news/indigenous/cote-first-nation-elders-courthouse-9.7151901?cmp=rss
Manitoba First Nation training its own health-care workers to address nursing shortage
As part of its 2026 budget, Manitoba is committing $1.8 million to train at least 20 health-care workers on a two-year diploma program in Red Sucker Lake Anisininew Nation.
https://www.cbc.ca/news/canada/manitoba/practical-nursing-training-program-red-sucker-lake-9.7153864?cmp=rss

A little #program that lets you move a Smiley Face around the screen using #QB64

https://qb64.com/

#quickBASIC #QBASIC #BASIC

(source code in ALT text)

A little #program that lets you move a Smiley Face around the screen using #QB64

https://qb64.com/

#quickBASIC #QBASIC #BASIC

Source (Also in ALT text):

'-----------------------------------------
' Moving a face around the screen!
' Phillip J Rhoades - 2026-04-05
'-----------------------------------------

'Initializing some variables and the screen
Let Row = 1
Let Col = 1
Dim PrevRow
Dim PrevCol

Locate Row, Col
Print Chr$(2)

'Start of the main loop
Do
'Get the Keypress
TheKey$ = InKey$

'If there's no Keypress, there's no need to do all this
'so skip it all
If TheKey$ <> "" Then
'Record the Row and Col before changing
PrevRow = Row
PrevCol = Col

'Take note of which arrow key is pressed for movement.
Select Case TheKey$
Case Chr$(0) + Chr$(77): Col = Col + 1 'Left
Case Chr$(0) + Chr$(75): Col = Col - 1 'Right
Case Chr$(0) + Chr$(80): Row = Row + 1 'Down
Case Chr$(0) + Chr$(72): Row = Row - 1 'Up
End Select

'Keep the character on the screen
If Row < 1 Or Row > 23 Then
Row = PrevRow
End If
If Col < 1 Or Col > 79 Then
Col = PrevCol
End If

'Blank the old and print the new location
'to move the character.
Locate PrevRow, PrevCol 'Move cursor to old place
Print " " 'Blank the old character
Locate Row, Col 'Move cursor to new place
Print Chr$(2) 'Print the character to move on screen
End If 'This loop was mostly skipped if no Keypress
Loop Until TheKey$ = "q"
'End of the main loop