Prévoir ~1H pour la préparation
- plonger dans le saladier dans 1L + chemipro : barboteur, écumoire, ouvreboite, verre, petite cuillère, verre doseur ...
- 1L + chemipro : nettoyer seau, cuiller brasseur
- bien nettoyer le kit (rebords)
| const proxy = require('express-http-proxy'); | |
| const url = require('url'); | |
| module.exports = (app) => { | |
| const { api: { hostname, port } } = app.get('coConfig'); | |
| const target = `http://${hostname}:${port}`; | |
| app.use('/api', proxy(target, { | |
| forwardPath: req => url.parse(req.originalUrl).path, | |
| decorateRequest: (proxyReq, req) => { |
| // PiGraph/index.spec.jsx | |
| const AXE_LENGTH = 100; | |
| export function calcXpoint(level, count) { | |
| return AXE_LENGTH - (level * Math.sin((count * Math.PI) / 180)); | |
| } | |
| export function calcYpoint(level, count) { | |
| return AXE_LENGTH - (level * Math.cos((count * Math.PI) / 180)); | |
| } | |
| //-------------- |
| // ==UserScript== | |
| // @name leboncoin-distance | |
| // @namespace net.herezia | |
| // @description Affiche la distance en mn et km avec le lieu d'une offre | |
| // @include https://*.leboncoin.fr/*/offres/* | |
| // @version 3 | |
| // @grant GM_getValue | |
| // @grant GM_setValue | |
| // ==/UserScript== | |
| const DEFAULT_FETCH_OPTIONS = { |
| alias docker-clean='docker rm `docker ps -aq`; docker rmi `docker images -q -f "dangling=true"`' |
| const SignListByIdReducer = (state = { }, action) => { | |
| switch (action.type) { | |
| case actions.SUBMIT_EMAIL: | |
| return Object.assign({}, state, { | |
| [action.id]: { | |
| id: action.id, | |
| email: action.email, | |
| list: action.list, | |
| loading: true, | |
| errors: [], |
| #from pmartin | |
| # tmux > 2.0 | |
| # Bindings de keys | |
| set -g prefix C-a | |
| set-window-option -g mode-keys vi | |
| bind-key C-a last-window | |
I hereby claim:
To claim this, I am signing this object:
Ce script reprend les différentes commandes présentés dans la vidéo suivante :
https://www.youtube.com/watch?v=srGrhjOEx7M
Le plugin Tagbar dépend de ctags :