- https://kitchener.citynews.ca/2024/01/25/lower-than-expected-school-enrolment-could-impact-wrdsb-budget-deficit/
- https://www.cbc.ca/news/canada/toronto/school-boards-deficits-ontario-education-1.73412103]
- https://www.cbc.ca/news/canada/toronto/school-boards-deficits-ontario-education-1.7341210
- https://ottawacitizen.com/news/local-news/school-of-thought-breaking-down-ontario-public-school-funding
[1] - https://kitchener.citynews.ca/2024/01/25/lower-than-expected-school-enrolment-could-impact-wrdsb-budget-deficit/ [2] - https://www.cbc.ca/news/canada/toronto/school-boards-deficits-ontario-education-1.7341210 [3] - https://www.cbc.ca/news/canada/toronto/school-boards-deficits-ontario-education-1.7341210 [4] - https://ottawacitizen.com/news/local-news/school-of-thought-breaking-down-ontario-public-school-funding
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[1] - [https://kitchener.citynews.ca/2024/01/25/lower-than-expected-school-enrolment-could-impact-wrdsb-budget-deficit/](https://kitchener.citynews.ca/2024/01/25/lower-than-expected-school-enrolment-could-impact-wrdsb-budget-deficit/) | |
[2] - https://www.cbc.ca/news/canada/toronto/school-boards-deficits-ontario-education-1.7341210 | |
[3] - https://www.cbc.ca/news/canada/toronto/school-boards-deficits-ontario-education-1.7341210 | |
[4] - https://ottawacitizen.com/news/local-news/school-of-thought-breaking-down-ontario-public-school-funding |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[1] - https://kitchener.citynews.ca/2024/01/25/lower-than-expected-school-enrolment-could-impact-wrdsb-budget-deficit/ | |
[2] - https://www.cbc.ca/news/canada/toronto/school-boards-deficits-ontario-education-1.7341210 | |
[3] - https://www.cbc.ca/news/canada/toronto/school-boards-deficits-ontario-education-1.7341210 | |
[4] - https://ottawacitizen.com/news/local-news/school-of-thought-breaking-down-ontario-public-school-funding |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GET http://example.preinheimer.com/ip.php HTTP/1.1 | |
Host: example.preinheimer.com | |
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:67.0) Gecko/20100101 Firefox/67.0 | |
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 | |
Accept-Language: en-US,en;q=0.5 | |
Accept-Encoding: gzip, deflate | |
DNT: 1 | |
Connection: keep-alive | |
Upgrade-Insecure-Requests: 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"defaults":{ | |
"username":"preinheimer_test" | |
}, | |
"proxy_groups":{ | |
"Canada":{ | |
"Ottawa":{ | |
"servers":[ | |
{ | |
"name":"Ottawa - IP 1", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying that +preinheimer is my blockchain ID. https://onename.com/preinheimer |
I hereby claim:
- I am preinheimer on github.
- I am preinheimer (https://keybase.io/preinheimer) on keybase.
- I have a public key whose fingerprint is 83A8 F889 39CC 47EC 98B8 C3C2 54D4 4908 49A8 3BD2
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Run at least two of me in different terminal windows, they count independently | |
$val = 5; | |
apc_store('count_key', $val); | |
while(1) | |
{ | |
$val = apc_inc('count_key'); | |
echo "APC has: " . $val . "\n"; | |
flush(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (apc_exists('count_key')) | |
{ | |
$val = apc_inc('count_key'); | |
}else | |
{ | |
apc_store('count_key', 0); | |
$val = 0; | |
} | |
echo $val; |