Based off of: http://docs.sequelizejs.com/en/1.7.0/articles/express/
Create and initialize your a directory for your Express application.
$ mkdir sequelize-demoBased off of: http://docs.sequelizejs.com/en/1.7.0/articles/express/
Create and initialize your a directory for your Express application.
$ mkdir sequelize-demo| import { Link } from 'react-router-dom' | |
| import { Badge, Col, Menu } from 'antd' | |
| const StyledBadge = styled(Badge)` | |
| .ant-badge-count { | |
| background-color: #7ECBBF; | |
| color: white; | |
| box-shadow: 0 0 0 1px #d9d9d9 inset; | |
| } | |
| ` |
These are my own personal notes on how i setup a Pi Zero W as an access points it is a blatant copy of this: https://gist.github.com/tcg/0c1d32770fcf6a0acf448b7358c5d059 but is just missing a couple of things from: http://imti.co/post/145442415333/raspberry-pi-3-wifi-station-ap and like tcg, this is not intended as a guide but notes as i will invariably have to rebuild this sometime and i have broken biscuits for brains.
this is really just the same info as here https://gist.github.com/gbaman/975e2db164b3ca2b51ae11e45e8fd40a
cmdline.txt add: modules-load=dwc2,g_ether after the word rootwaitconfig.txt and add dtoverlay=dwc2 to the end of the filesshAnswer Y/N/NA to all questions as appropriate.
Delete sections that don't apply.
Linting
Have you fixed all:
Browsers
Have you tested this in:
| import ReactUpdates from 'react-dom/lib/ReactUpdates' | |
| import ReactDefaultBatchingStrategy from 'react-dom/lib/ReactDefaultBatchingStrategy' | |
| import 'isomorphic-fetch' | |
| const logError = (err, extra = {}) => { | |
| fetch('/logger', { | |
| method: 'POST', | |
| credentials: 'same-origin', | |
| headers: { 'Content-Type': 'application/json' }, | |
| body: JSON.stringify({ |
diskutil list to identify the disk number, e.g. /dev/disk2diskutil unmountDisk /dev/disk2sudo dd bs=1m if=image.img of=/dev/rdisk2/Volumes/boot.
config.txt, add this as the last line of the file: dtoverlay=dwc2cmdline.txt, add this as a parameter, just after the rootwait parameter: modules-load=dwc2,g_ether| /** | |
| * This code is licensed under the terms of the MIT license | |
| * | |
| * Deep diff between two object, using lodash | |
| * @param {Object} object Object compared | |
| * @param {Object} base Object to compare with | |
| * @return {Object} Return a new object who represent the diff | |
| */ | |
| function difference(object, base) { | |
| function changes(object, base) { |
| # All build snippets are based on Ubuntu trusty: | |
| containers: | |
| build: | |
| setup: | |
| - !Ubuntu trusty | |
| - !UbuntuUniverse | |
| # ------------------------------------------------------------------------ |