- Profilage par actions
- Contenus par expériences décorélé des prestations / lieux / agents
- Recommendation d'itinéraires par relation avec des contenus (expériences)
- Génération d'itinéraires par relation des Lieux avec des Contenus (expériences)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
// Square brackets aren't that usable in azerty. | |
// Replaces [ with ù and ] with $, closest usable combination to the American qwerty | |
{ "keys": ["super+shift+ù"], "command": "prev_view" }, | |
{ "keys": ["super+shift+$"], "command": "next_view" }, | |
{ "keys": ["super+ù"], "command": "unindent" }, | |
{ "keys": ["super+$"], "command": "indent" }, | |
{ "keys": ["super+alt+ù"], "command": "fold" }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"auto_complete": true, | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_delay": 50, | |
"auto_complete_selector": "source - comment", | |
"auto_complete_size_limit": 4194304, | |
"auto_complete_triggers": | |
[ | |
{ | |
"characters": "<", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fr: | |
activemodel: | |
errors: | |
format: '%{attribute} %{message}' | |
messages: &id001 | |
accepted: doit être accepté(e) | |
blank: doit être rempli(e) | |
confirmation: ne concorde pas avec la confirmation | |
empty: doit être rempli(e) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Node.js CheatSheet. | |
// Download the Node.js source code or a pre-built installer for your platform, and start developing today. | |
// Download: http://nodejs.org/download/ | |
// More: http://nodejs.org/api/all.html | |
// 0. Synopsis. | |
// http://nodejs.org/api/synopsis.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copy/Paste this script into your main Stage within `compositionReady` | |
(function(){ | |
var stage = sym.getSymbolElement('.' + e.compId); | |
var parent = stage.parent(); | |
var stageWidth = stage.width(); | |
var stageHeight = stage.height(); | |
stage.css({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Setup a Spotify Connect client | |
# | |
# Hardware: | |
# - RaspberryPi3 | |
# - Creative Sound Blaster Play2 | |
# | |
# Resources: | |
# https://github.com/plietar/librespot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LOCAL_IP_ADDRESS=$(ifconfig | grep -E -no "inet ([0-9]{1,3}\.*){4}" | cut -d" " -f2 | grep -v 127 | cut -d\n -f1) | |
LOCAL_IP_GROUP=$(echo $LOCAL_IP_ADDRESS | cut -d. -f1-3) | |
function rpi-connect | |
{ | |
DEST_ADDR="$LOCAL_IP_GROUP.$1" | |
echo "Trying to connect to $DEST_ADDR" | |
ssh -i $HOME/.ssh/rpi pi@$DEST_ADDR | |
} |
- Board d'inspiration : Contenus expériences + Naviguation UX + petite couche de recommandation
- La recommendation sous toutes ses formes : qu'elle propose de l'existant ou du nouveau -> surcouche du board d'inspiration (se base sur un formulaire particulier)
- L'UX/UI de la page itinéraire
- La modélisation de l'itinéraire et la technologie utilisée
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
# free_disk_space | |
# | |
# remove files from downloads folder | |
# clear cache for rubygem, yarn, composer, homebrew, docker | |
### | |
free_disk_space() { | |
if command -v docker &> /dev/null; then | |
echo "--> Clear Docker images cache" && \ |
OlderNewer