Make sure everything is up to date in the App Store
2. Install Homebrew
- Open a terminal window and execute the Homebrew install script:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"| // Safari blocks the UI as soon as a form is submitted | |
| // This behaviour prevents us from doing animations inside buttons | |
| // This is a workaround to give the render engine some time before blocking | |
| // This depends on jQuery browser to know if the current browser is Safari | |
| // We happened to have that dependency when I implemeneted this workaround | |
| $(function () { | |
| if (!$.browser.safari) { | |
| return; |
Make sure everything is up to date in the App Store
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"| // padding/margins helpers | |
| $sizes: (xs: 0.5rem, sm: 1rem, md: 1.5rem, lg: 2rem, xl: 2.5rem); | |
| $properties: ('top', 'right', 'left', 'bottom'); | |
| @each $name, $value in $sizes { | |
| @each $prop in $properties { | |
| .margin-#{$prop}-#{$name} { | |
| margin-#{$prop}: $value; | |
| } |
Estos son los pasos a seguir para habilitar memoria swap en tu VPS corriendo Ubuntu, probablemente esto sirva para otros VPS
echo "Reemplazar 4G por el doble de memoria ram del sistema, ejemplo si tengo 1gb de ram, entonces colocar 2G)"
sudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile| build: | |
| image: node:5-wheezy | |
| commands: | |
| - npm install --silent | |
| - npm test | |
| cache: | |
| mount: | |
| - .git | |
| - node_modules |
| var ViewPagerAndroid = function (_React$Component) { | |
| babelHelpers.inherits(ViewPagerAndroid, _React$Component); | |
| function ViewPagerAndroid() { | |
| var _ref; | |
| var _temp, _this, _ret; | |
| babelHelpers.classCallCheck(this, ViewPagerAndroid); |
| var slackWebhookPath = '/services/T02N0QWAS/B2N58DH4N/lczo4THnmZvr2sNVMutCGH4P'; | |
| var https = require('https'); | |
| var util = require('util'); | |
| var colorMap = { | |
| 'ALARM': 'danger', | |
| 'OK': 'good', | |
| 'INSUFFICIENT_DATA': 'warning' | |
| }; | |
| exports.handler = function(event, context) { |
| class EventSupport { | |
| constructor(props) { | |
| this.parent = props.parent; | |
| this.name = props.name; | |
| this.eventQueue = {}; | |
| } | |
| trigger(eventName, props) { | |
| if (typeof props === 'undefined') { |
| FROM wordpress:latest | |
| # Setup SMTP by running apache2-config.sh | |
| COPY ["apache2-config.sh", "/usr/local/bin/"] | |
| CMD ["apache2-config.sh"] |