Sorry, this entry is only available in Français.
Blog #I.T.
Apprendre à utiliser les flexbox CSS (presque) en s’amusant
Un tutorial bien fichu qui fera enfin comprendre comment fonctionne les propriétés CSS de placement flex
http://flexboxfroggy.com/“>Voir le site : Flexbox Froggy
C’est mon prénonyme Thomas Park qui a eu l’idée de faire une appli web bien sympa, ou il faut placer correctement des grenouilles sur des nénuphars en éditant une propriété CSS et on voit en live le résultat. La dernière étape (24 !) est la seule un peu ardue, autant dire que la progression est plutot sympa, et le fait de répéter pas mal de fois les mêmes commandes aident a mémoriser les propriétés.
Have fun !
An alternative of Hungarian notation applied to PHP
For some cases, by example when you works on webservices or an ETL, you can be a little lost between all the variables you use, specifically arrays.
I developed a derivative of the Hungarian notation to prefix my variables and find myself there. This notation can be applied in php, but also to any other languages, especially non-typed.
There is the prefixing I use with PHP variables in that specific cases, depending on their type and design :
Scalar types prefix
$is
,$b
: boolean$s
: string$i
: int (unsigned)$n
: natural (signed int)$f
: float$fd
: float round to 1 decimals$fc
: float round to 2 decimals$fm
: float round to 3 decimals$m
: mixed.
Non-scalar prefix types
$o
: object$r
: resource (PHP-specific)
Array, can be, by design, a collection of elements, or a single element. For me an “element” is an object-like data, stored as an associative array. While a collection if an array of elements.
So I can distinguish 3 different types for arrays :
$e
: (array) Element (or Entry, or Entity) ; associative array containing data about an element.$c
: (array) Incremented Collection ; an array with auto-incremented keys containing elements. Means that the array keys don’t identify an element, event if the order to process it can be important.$a
: (array) Associative collection ; an array with associative & manually-assigned keys (like “hashes” in Perl ) containing elements.
For collections, I usually also put the variable in plural (or simply suffix with an s). I suggest to combine collection prefixes with the other prefix showing the values each entry contains :
$ca
: incremented-collection of Associative collection$cm
: incremented-collection of mixed elements$ae
: associative-collection of array elements$as
: associative-collection of string elements$am
: associative-collection of mixed elements (each entry can contain different things)$cbo
: increment-collection of boolean OR objects. So we have to test if the entry is an object before processing it.
Semantic types :
$u
: unsafe type or value, need to be checked or sanitized for security reason.- Can be combined : ie
$us
for unsafe string, with possible code injection. $zo
: string of encoded object$zj
: string of encoded json$zh
: string of encoded html entities, ie: ‘"’$ts
: timestamp (signed int)$d
: date, format ‘Y-m-d’ (string)$dt
: datetime, format ‘Y-m-d H:i:s’ (string)
I personnally try to avoid to prefix private members / functions with underscores.
(Français) Protéger votre vie privée, des alternatives à Google & co
Sorry, this entry is only available in Français.
a .gitignore model file for your PHP projects
This is a model of .gitignore file for your PHP project. It differs from other models you can see, in GitHub for example, because of the use of regular expressions and exceptions, making the file shorter and the rules smarter and more adaptative to any kind of projects.
(Français) Tuto : Installer Composer sur un projet web pour gérer facilement les libraires externes (et internes) de ton framework
Sorry, this entry is only available in Français.
(Français) Les tests binaires – une fonctionnalité sous-estimée
Sorry, this entry is only available in Français.
(Français) Suivre ou pas la tendance/mode des domaines en .io?
Sorry, this entry is only available in Français.
(Français) Symfony versus Symphony, deux frameworks PHP homophones : plagiat ou concours de circonstance ?
Sorry, this entry is only available in Français.
(Français) 8 outils gratuits pour faire du Scrum dans tous les sens
Sorry, this entry is only available in Français.