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 | |
# Set up the environment after installing the Vagrant machine | |
# Basic utilities | |
sudo apt-get install curl -y | |
sudo apt-get install git -y | |
# Node | |
sudo apt-get install npm -y |
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
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" --incognito --flag-switches-begin --sync-keystore-encryption --flag-switches-end |
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
/* Disable font boosting in Chrome for Android */ | |
body * { | |
max-height: 1000000em; | |
} |
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
/* This is a test file. | |
** Create a cheese object, let the odor waft through the air, | |
** then decide whether to eat it. | |
*/ | |
var cheddar = new Cheese(); | |
var aroma = cheddar.waft(); | |
// Unless it's *really* nasty, eat it. |
NewerOlder