create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| // background transparency | |
| background-transparency(color, alpha = 1) | |
| ms-color = argb(color, alpha) | |
| background rgb(color) | |
| background rgba(color, alpha) | |
| .lt-ie8 & | |
| zoom 1 | |
| .lt-ie9 & | |
| background transparent | |
| filter s('progid:DXImageTransform.Microsoft.gradient(startColorstr=%s,endColorstr=%s)', ms-color, ms-color) |
| // 大家写在评论中吧,代码高亮可以这样写: | |
| // ```js | |
| // your code | |
| // ``` | |
| // update: Fri Aug 31 08:39:21 | |
| // copyright: https://gist.github.com/3549352 | |
| // 加个性能测试:http://jsperf.com/get-dom-s-first-element | |
| var util = {}; |
A timeline of the last four years of detecting good old window.localStorage.
October 2009: 5059daa
| # Outputs the reading time | |
| # Read this in “about 4 minutes” | |
| # Put into your _plugins dir in your Jekyll site | |
| # Usage: Read this in about {{ page.content | reading_time }} | |
| module ReadingTimeFilter | |
| def reading_time( input ) | |
| words_per_minute = 180 |
| (function (root, factory) { | |
| if ( typeof define === 'function' && define.amd ) { | |
| define([], factory(root)); | |
| } else if ( typeof exports === 'object' ) { | |
| module.exports = factory(root); | |
| } else { | |
| root.myPlugin = factory(root); | |
| } | |
| })(typeof global !== "undefined" ? global : this.window || this.global, function (root) { |
| #!/usr/bin/env python2.7 | |
| #based on https://gist.github.com/hhatto/6405956 from hhato | |
| import sys | |
| new_vim_color = [] | |
| xtermMap = { | |
| '0': '#000000', '1': '#800000', '2': '#008000', '3': '#808000', '4': '#000080', | |
| '5': '#800080', '6': '#008080', '7': '#c0c0c0', '8': '#808080', '9': '#ff0000', | |
| '10': '#00ff00', '11': '#ffff00', '12': '#0000ff', '13': '#ff00ff', '14': '#00ffff', |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.