Skip to content

Instantly share code, notes, and snippets.

View paradite's full-sized avatar
👀
Looking for interesting projects

Zhu Liang paradite

👀
Looking for interesting projects
View GitHub Profile
@paradite
paradite / keybase.md
Created August 31, 2016 06:59
keybase.md

Keybase proof

I hereby claim:

  • I am paradite on github.
  • I am paradite (https://keybase.io/paradite) on keybase.
  • I have a public key whose fingerprint is D52F 27FD B7CC 54ED F503 2B02 4F0E 079D 382E E914

To claim this, I am signing this object:

@paradite
paradite / README.md
Created February 20, 2016 11:29 — forked from oodavid/README.md
Deploy your site with git

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/
@paradite
paradite / issues closed.txt
Last active February 12, 2016 07:15
Issues that can be closed
https://github.com/socketio/socket.io/issues/2044
@paradite
paradite / git commands
Last active January 31, 2016 16:55
set up gh-pages branch and remove master branch
git checkout -b gh-pages
git push --set-upstream origin gh-pages
git branch -d master
(change default branch on GitHub to gh-pages)
git push origin :master
@paradite
paradite / gist:4015e4dfbce64a286dc4
Last active August 29, 2015 14:28 — forked from hzlzh/gist:3128038
console.log() snippet for Sublime Text 2
<snippet>
<!-- put this file in /packages/User/<Folder Name>/console_log.sublime-snippet then restart your Sublime Text 2 -->
<content><![CDATA[console.log($1);$0]]></content>
<tabTrigger>conl</tabTrigger>
<scope>text.html,source.js</scope>
<description>console.log()</description>
</snippet>
<snippet>
<!-- put this in another file /packages/User/<Folder Name>/console_dir.sublime-snippet then restart your Sublime Text 2 -->