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
{ | |
"name": "onramp-app", | |
"version": "0.0.0", | |
"scripts": { | |
"ng": "ng", | |
"start": "node server.js", | |
"test": "ng test", | |
"test-headless": "ng test --no-watch --no-progress --browsers=ChromeHeadlessCI", | |
"lint": "ng lint", | |
"e2e": "ng e2e", |
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
version: '2.0' | |
services: | |
wordpress: | |
container_name: wp_web | |
image: wordpress | |
volumes: | |
- ./wp-content:/var/www/html/wp-content | |
ports: | |
- 80:80 |
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 | |
##################################################### | |
# Name: Bash CheatSheet for Mac OSX | |
# | |
# A little overlook of the Bash basics | |
# | |
# Usage: | |
# | |
# Author: J. Le Coupanec | |
# Date: 2014/11/04 |
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 | |
rm -r ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User | |
ln -s ~/Dropbox/Sync/Sublime/User |
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
{ | |
"always_show_minimap_viewport": false, | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"enable_tab_scrolling": false, | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
"*.pyc", |
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
{ | |
"coordinates": [ | |
{ | |
"x": 7, | |
"y": 2 | |
}, | |
{ | |
"x": 7, | |
"y": 3 | |
}, |
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
{ | |
"coordinates": [ | |
{ | |
"x": 4, | |
"y": 2 | |
}, | |
{ | |
"x": 4, | |
"y": 3 | |
}, |
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
// THE JS | |
var console = { | |
log: function (text) { | |
document.getElementById('text').innerHTML = text; | |
} | |
} | |
console.log('text'); | |
//THE 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
function randomNumberGenerator (max, count) { | |
var set = Array.apply(null, {length: count}).map(Function.call, Math.random); | |
for(var i in set) set[i] = Math.floor(set[i] * max) + 1; | |
return set; | |
} | |
var output = randomNumberGenerator(500, 50); | |
console.log(output); |
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
{ | |
"name" : "jeanpierre/install-test", | |
"description" : "Test project for WordPress stack via Composer", | |
"license": "GPL-2.0", | |
"authors" : [ | |
{ | |
"name" : "Jean-Pierre Barthelemy", | |
"email" : "[email protected]", | |
"homepage": "http://jeanpier.re/" | |
} |
NewerOlder