Skip to content

Instantly share code, notes, and snippets.

View summerscar's full-sized avatar

shenyu summerscar

View GitHub Profile
@summerscar
summerscar / gh-pages-deploy.md
Created May 15, 2019 17:01 — forked from cobyism/gh-pages-deploy.md
Deploy to `gh-pages` from a `dist` folder on the master branch. Useful for use with [yeoman](http://yeoman.io).

Deploying a subfolder to GitHub Pages

Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.

For the sake of this example, let’s pretend the subfolder containing your site is named dist.

Step 1

Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).

@summerscar
summerscar / pubsub.js
Created March 21, 2019 06:05 — forked from kashtrip/pubsub.js
Simple Publisher Subscriber implemented in JS
const events = {
topics: {},
subscribe: function(topic, listener) {
if(!this.topics.hasOwnProperty(topic)) {
this.topics = {
...this.topics,
[topic]: []
}
}
let index = this.topics[topic].push(listener) -1;