Today I used the PHP for the first time.
$data = <<<EOF my data EOF; echo $data;
Today I used the PHP for the first time.
$data = <<<EOF my data EOF; echo $data;
Today I learned about the view-source URI scheme. Check it out!
Reading about URI schemes today.
The UriSchemes page at the W3C suggests a few ways to add support for URL schemes. Maybe I could get file: URLs doing something suitable for SMB network resources in Firefox.
The URI file://bender-xp/C$/ works in an anchor tag in IE8 to open the \\bender-xp\C$ file share on my network. In this case bender-xp was the name of my local machine but it works for remote file shares too (I tested it to a Samba share on another box).
Unfortunately my version of Firefox (version 9.0.1) doesn’t support this.