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
/*****************************************************************************/ | |
/* Zero-Dark-Matrix | |
/* Optimized for Chrome Stable Channel v30 | |
/* https://github.com/mauricecruz/chrome-devtools-zerodarkmatrix-theme | |
/*************************************************************************/ | |
/********************************************** | |
/* Readability | |
/* ------------------------------------------- | |
/* Adjust the line height for elements|sources |
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
#!/usr/bin/env bash | |
# Met à jour la box | |
apt-get update | |
# Install Vim | |
apt-get install -y vim | |
# Install Apache | |
apt-get install -y apache2 |
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 | |
# Setting version of gitlab and dist wanted | |
version="8.11" | |
dist="ubuntu/trusty" | |
# The script | |
URL=https://packages.gitlab.com/gitlab/gitlab-ce/packages/$dist |
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 | |
# show commands being executed, per debug | |
# set -x | |
# define database connectivity | |
_db="xxxxxxxx" | |
_db_host="xxxxxxxx" | |
_db_user="xxxxxxx" | |
# _db_password="xxxxxx" |
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
import 'whatwg-fetch'; | |
import isPlainObject from 'lodash/isPlainObject'; | |
import isArray from 'lodash/isArray'; | |
/** | |
* Parses the JSON returned by a network request | |
* | |
* @param {object} response A response from a network request | |
* | |
* @return {object} The parsed JSON from the request |