$ npm version major|minor|patch
With message.
# Install PHP 5.5 with FPM and MySQL extension | |
brew install --without-apache --with-fpm --with-mysql --with-phpdbg php55 | |
# Install PHP 5.5 extensions | |
brew install php55-imagick php55-xdebug | |
# Install Nginx | |
brew install --with-debug nginx | |
# Install MySQL |
Verifying I am +vutran on my passcard. https://onename.com/vutran |
{ | |
"presets": ["es2015", "stage-0"] | |
} |
Portable
{ | |
custom_fields: { | |
MyCustomField1: { | |
type: 'text', | |
defaultValue: '', | |
required: true, | |
}, | |
MyCustomField1: { | |
type: 'text', | |
defaultValue: '', |
export default { | |
AF: 'Afghanistan', | |
AX: 'Aland Islands', | |
AL: 'Albania', | |
DZ: 'Algeria', | |
AS: 'American Samoa', | |
AD: 'Andorra', | |
AO: 'Angola', | |
AI: 'Anguilla', | |
AQ: 'Antarctica', |
import React, { Component } from 'react'; | |
import got from 'got'; | |
class PostEntry extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
post: false, | |
}; | |
} |