/* http://meyerweb.com/eric/tools/css/reset/ | |
v2.0-modified | 20110126 | |
License: none (public domain) | |
*/ | |
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, |
Arquivos | |
Ctrl + Shift + N New Project | |
Shift + Alt + N New Web Site | |
Ctrl + Shift + O Open Project | |
Shift + Alt + O Open Web Site | |
Ctrl + Shift + A Add New Item | |
Shift + Alt + A Add Existing Item | |
Ctrl+N New File | |
Ctrl+O Open File | |
Ctrl+], Ctrl+N Add New Diagram |
var request = require('request'); | |
var sendMessage = function(device, message){ | |
var restKey = '****'; | |
var appID = '****'; | |
request( | |
{ | |
method:'POST', | |
uri:'https://onesignal.com/api/v1/notifications', | |
headers: { |
let start = 0; | |
const limit = 10; | |
items.slice(start, limit).forEach(subset => | |
await Promise.all(subset.map(async (item) => { | |
// do async work with a single item | |
})) | |
.then(() => (start += limit) | |
); |
function createStore (reducers) { | |
var state = reducers() | |
const store = { | |
dispatch: (action) => { | |
state = reducers(state, action) | |
}, | |
getState: () => { | |
return state | |
} | |
} |
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
- By Edmond Lau
- Highly Recommended 馃憤
- http://www.theeffectiveengineer.com/
Generally, you will add a git remote for your Heroku app during the Heroku app creation process, i.e. heroku create
. However, if you are working on an existing app and want to add git remotes to enable manual deploys, the following commands may be useful.
Note that on Heroku, you must always use master
as the destination branch on the remote. If you want to deploy a different branch, you can use the syntax local_branch:destination_branch
seen below (in this example, we push the local staging
branch to the master
branch on heroku.
$ git remote add staging https://git.heroku.com/staging-app.git
import React, { PropTypes } from 'react'; | |
import Head from 'next/head'; | |
import Router from 'next/router'; | |
// Script errors occuring during initial client render can cause the server-rendered | |
// content to be hidden by an error page. Track router events to determine if the | |
// error being handled happened during initial render, and throw within | |
// getInitialProps to allow the server-rendered content to remain visible. | |
const isClient = typeof window !== 'undefined'; | |
let isInitialClientRender = isClient; |