- plain ol' React
let state = initial
render(view(state), element)
view
is pure!
body > .container, | |
header .container, | |
nav .container { | |
width: 100%; | |
} | |
.pull-right .dropdown-menu { | |
right: 0; | |
left: auto; | |
} |
#!/bin/bash | |
# ---- | |
# | |
# Script de backup serveur perso vers serveur distant | |
# Fonctionnemenent : | |
# 1. Targz de /var/www | |
# 2. Targz de /etc/apache2/sites-available | |
# 3. Dump de toutes les bases de données MySql | |
# 4. Zip du backup courant avec protection par mot de passe |
To target IE 6 and 7 | |
@media screen\9 { | |
body { background: red; } | |
} | |
To target IE 6, 7 and 8 | |
@media \0screen\,screen\9 { | |
body { background: green; } | |
} |
Awesome PHP has been relocated permanently to its own Github repository. No further updates will made to this gist.
Please open an issue for any new suggestions.