- create Docker droplet via digitalocean one-click-app-docker
- log into it
- generate SSH key
ssh-keygen -t rsa -N "" -f /root/.ssh/id_rsa
- Copy it
ssh-keygen -t rsa -N "" -f /root/.ssh/id_rsa
Aloha,
Je voudrais une chouette photo permettant de remercier close the gap de fournir tous les laptops gratuitement.
Pourriez vous prévoir cette semaine (peut être quand Charleroi vient ?) de réaliser ceci: Chaque écran de laptop qui affiche un "merci" en géant. Chaque apprenant peu choisir:
Il y a le backend, il y a le frontend... Et il y a les frameworks Javascript tels que Angular (made in Google), Vue.js (opensource) et React (Made in Facebook).
A priori, ce sont d'abord des outils pour faire du frontend, mais avec la particularité que vous pouvez manipuler des services de données externes (tels que Firebase ou AWS) directement depuis votre code frontend. Des bâtards, quoi.
Ils sont particulièrement indiqués pour les applications web et les interfaces très réactives, plus que pour les simples sites vitrines (où l'utilisateur va surtout lire).
résumé d'une discussion chez BeCode/Lovelace2 (animée par Juan et Alex).
Sass is a powerhouse language that is adding new features all the time. For this introduction we will go over the basics of the language and see how they all tie together. We will discuss nesting, parent selector definitions, variables, Sass math, @extends, and @mixins.
Commenting your code is the number one awesome thing any developer can do. In CSS you can place comments in your code /* */, but this will appear in the actual CSS and sometimes you don't want or need all that stuff to be there.
In Sass comments are highly encouraged. Sass has what are called 'silent comments' using the // syntax. This will allow the developer to comment like crazy and none of this is exposed in the final CSS. An interesting feature is that Sass supports both types of comments.
Scss
Voilà. C'est quasi fini. 25 avril --> 27 octobre 2017
185 jours
15.984.000 secondes
266.400 minutes
4440 heures
26 semaines et 3 jours.
Vous avez été la première promo de BeCode.
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.php$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule . /index.php [L] | |
| </IfModule> |
| # 1. Install brew --> http://brew.sh/ | |
| # 2. run the following commands in your Terminal | |
| brew tap homebrew/dupes | |
| brew tap homebrew/versions | |
| brew tap homebrew/homebrew-php | |
| brew install --with-openssl curl | |
| brew install --with-homebrew-curl --with-apache php71 | |
| brew install php71-mcrypt php71-imagick | |
| # 3. Follow these instructions to make Apache and php-cli use the newer php executable and make the change persist after reboot. | |
| brew info php71 |
| function add_nonbreaking_space_to_text($title, $id = null){ | |
| $title = explode(' ', $title); | |
| $length = count($title); | |
| if( $length >0){ | |
| $title[ $length-2 ] .= " " . $title[ $length-1 ]; | |
| array_pop($title); | |
| } | |
| return implode(" ", $title); | |
| } |