Archive pour décembre 2010

Why does std::for_each return the Functor ?

In short: Because the provided Functor is copied by for_each. A bit longer: the functor has to be copied so that for_each can use a reference to it in the loopage as the functor is copied, the context of the functor would be lost at end of for_each if it was not returned class Object […]

,

Un commentaire

Effacer un trait de marqueur indélébile sur un tableau blanc

Scénario hyper classique mais ô combien génant, vous prenez un marqueur pour dessiner sur le tableau blanc. Vous commencez à tracer quand tout à coup, vous vous rendez compte que le marqueur n’était pas « pour tableau blanc » mais bien un indélébile. Pas de panique: il suffit de dessiner avec un marqueur pour tableau blanc sur […]

Pas de commentaire

Enabling the NFS server in Mac OSX

Mac OSX, born as BSD Unix, still has an NFS server included even in the workstation editions. To enable NFS sharing, follow that very simple procedure: edit the /etc/exports file (do « man 5 exports » for more info) run « sudo nfsd update » check the exported directories with « showmount -e » And voilà ! That’s it… Sample /etc/exports: […]

,

Pas de commentaire