libpam-mount automounts SMB shares at login, just like Windows
Monday, October 8th, 2007Now my
Method follows.
Now my
Method follows.
Like the typical ones from supermarkets. Maybe works for other bag-like structures, I dunno.
Voila! A stable, knotted plastic bag, albeit at a fair amount of time and effort! The reward is that unfolding is easy - it practically springs apart itself when untied.
I encourage you to try it, as the structure formed is oddly familiar, and the saving in storage space considerable.
A picture tells a thousand words. (more…)
The may be operator. A syntax for expressing a conditional cause chain
or known sequence of expressions likely to resolve to a single value. Akin to the SQL function COALESCE().
PHP example
Expression without may be operator:
if( !isset( $id ) )
if( isset( $_COOKIE['id'] ) )
$id = $_COOKIE['id'];
else
if( isset( $_POST['id'] ) )
$id = $_POST['id'];
else
if( isset( $_GET['id'] ) )
$id = $_GET['id'];
else
$id = -1;
This is my 200th post, by the way.
Does anyone who knows me think that a “Faculty of Arts, Computing, Engineering and Sciences” would be a bad place for me to live if I were intent on using my talents to do works of good? If so, please sound off. Hell, sound off anyway. It’s good for the soul.
What is the outcome of sorting a circular list?
On
(more…)