This file contains hidden or 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 | |
| # | |
| # NOTE: specify the desired level of logging. | |
| # | |
| # - none, debug, warn, error | |
| # | |
| chunkc core::log_level error |
This file contains hidden or 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
| provider "aws" { | |
| region = "eu-west-1" | |
| profile = "perso" | |
| } | |
| variable "web_port" { | |
| description = "Port for the web server" | |
| default = "8080" | |
| } |
This file contains hidden or 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
| version: '2' | |
| services: | |
| airsonic: | |
| restart: unless-stopped | |
| image: binhex/arch-airsonic | |
| volumes: | |
| - $DATA_VOLUME:/config:rw | |
| - $MUSIC_VOLUME:/media:rw | |
| - /etc/localtime:/etc/localtime:ro |
This file contains hidden or 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
| ! Font | |
| URxvt.font: xft:DroidSansMonoForPowerline Nerd Font:size=8:antialias=true:hinting=true | |
| URxvt.boldFont: xft:DroidSansMonoForPowerline Nerd Font:size=8:antialias=true:bold:hinting=true | |
| URxvt.italicFont: xft:DroidSansMonoForPowerline Nerd Font:size=8:antialias=true:italic:autohint=true:hinting=true | |
| URxvt.bolditalicFont: xft:DroidSansMonoForPowerline Nerd Font:size=8:antialias=true:bold:italic:autohint=true:hinting=true | |
| URxvt.letterSpace: -1 | |
| ! Scrollbar | |
| URxvt*scrollBar: false |
This file contains hidden or 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_modules |
This file contains hidden or 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
| let query = `login=${process.argv[2]}&pwd=${process.argv[3]}`; | |
| var socket = require('socket.io-client')('http://wac.epitech.eu:1337', {query}); | |
| socket.on('connect', (msg) => { | |
| console.log('Now connected'); | |
| console.log(msg); | |
| socket.emit('toto', 'tata'); | |
| socket.emit('move', 'up'); |
NewerOlder