Skip to content

Instantly share code, notes, and snippets.

@janzeteachesit
janzeteachesit / article.md
Created October 20, 2017 02:57 — forked from KevinAst/article.md
Integrating GitBook with JSDoc to Document Your Open Source Project

Integrating GitBook with JSDoc to Document Your Open Source Project

Introduction

Good documentation should include two distinct elements - a Guide and an API:

  1. The Guide builds concepts, providing examples, etc.

GitBook is well suited to

@janzeteachesit
janzeteachesit / gist:e0884e9359f1f958de8ea568f1f10717
Created February 12, 2017 05:05 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@janzeteachesit
janzeteachesit / TextGenerator.py
Created January 23, 2017 06:02 — forked from rinchik/TextGenerator.py
Text generator class. Analyzes and generates quotes of the random length.
from collections import Counter
from random import randint
import sys
class TextGenerator:
text_file = 'example_bible.txt'
raw_data = None
@janzeteachesit
janzeteachesit / TextAnalyzer.py
Created January 23, 2017 06:01 — forked from rinchik/TextAnalyzer.py
Python class that does text analysis and compiles a hash map of words and word following given word sorted by frequency
from collections import Counter
import pprint
class TextAnalyzer:
text_file = 'example.txt'
raw_data = None

Deploy your site with git

This gist assumes:

  • you have a local git repo
  • with an online remote repository (github / bitbucket etc)
  • and a cloud server (Rackspace cloud / Amazon EC2 etc)
    • your (PHP) scripts are served from /var/www/html/
    • your webpages are executed by apache
  • apache's home directory is /var/www/