Archive pour décembre 2010
Why does std::for_each return the Functor ?
Posté par Olivier dans Trucs & Astuces le 9 décembre 2010
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 […]
Effacer un trait de marqueur indélébile sur un tableau blanc
Posté par Olivier dans Trucs & Astuces le 9 décembre 2010
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 […]
Enabling the NFS server in Mac OSX
Posté par Olivier dans Trucs & Astuces le 7 décembre 2010
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: […]