<img class="alignnone" src="https://lh3.googleusercontent.com/-3GO-mR5H1So/WAYCLOzj2TI/AAAAAAAKmTE/K1oLu53s3n49HFFCylSJA6UHGDK0iWs5QCJoC/s0/Screenshot_2016-10-18-11-52-24.png" alt="" />

Some would-be new owners of Pixel phones are likely feeling disappointed right now…

FWIW – I ordered mine on 6 Oct and was “allocated” stock.

    <img class="alignnone" src="https://lh3.googleusercontent.com/-R3AB5KZDI2w/V_NJxkS1q8I/AAAAAAAAqNw/HuctH0Llgq48DB8Dlw_9ZtW9259odvS4gCJoC/s0/2016%2B-%2B1" alt="" />

Shared from Neil “Captain Crash” Howell on Facebook :

URGENT APPEAL to any of my friends who live in the Bedford/Milton Keynes area. This is my daughter Kayla Vivienne Mae. She has gone missing this morning. She is 13 years old. She got as far as the school gates and then walked away. She went back home, got changed and then disappeared. If anyone, anyone at all in those area sees her please call me immediately on 07925 159989. Thank you.

#NeilHowell

    <img class="alignnone" src="https://lh3.googleusercontent.com/-XM8R0JWk_aQ/V8IKcAaM2EI/AAAAAAAKPmI/J3StoyFyzN8tB6C_c7DDldIT39RJAuBTQCJoC/s0/2016-08-25%2B22.47.13.png" alt="" />

Screenshot taken from my old S4, but I was just wondering if similar functionality was present to attach/link to S Notes from calendar events. Or, conversely, create calendar events from notes?

Seems such a shame the older S4 did this with S Memo, and the newer Note software does not.

PHP logo

PHP.  It’s been a little while since I had to deal with you but, seriously, is this really a thing?

[php]$value = 10;
$temp = 0;
   
for($ctr = 0; $ctr < $value; $ctr++) {

echo "value + ctr: " . $value + $ctr . "<br>";
// this doesn’t work?!

$temp = $value + $ctr;
echo "value + ctr: " . $temp . "<br>";
// … but this does work?

}[/php]

Perhaps (hopefully) things have changed in PHP7?