Skip to content

Instantly share code, notes, and snippets.

/**
* [js-md5]{@link https://github.com/emn178/js-md5}
*
* @namespace md5
* @version 0.7.3
* @author Chen, Yi-Cyuan [[email protected]]
* @copyright Chen, Yi-Cyuan 2014-2017
* @license MIT
*/
(function () {

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@yuxinliu-alex
yuxinliu-alex / PlainTask Tutorial zhCN.todo
Created May 21, 2018 02:31
PlainTasks 教程中文版
如何使用 PlainTasks:
项目:
☐ 任何以冒号结尾的行都会被作为项目标题
☐ 可以通过缩进在项目中创建新的项目
☐ 项目可以被折叠(利用了编辑器的原生功能)
任务:
可以在任何位置添加普通文本作为笔记或描述;
就是这么简单!
# Thanks to this post:
# http://blog.ikato.com/post/15675823000/how-to-install-consolas-font-on-mac-os-x
$ brew install cabextract
$ cd ~/Downloads
$ mkdir consolas
$ cd consolas
$ curl -O http://download.microsoft.com/download/f/5/a/f5a3df76-d856-4a61-a6bd-722f52a5be26/PowerPointViewer.exe
$ cabextract PowerPointViewer.exe
$ cabextract ppviewer.cab
@yuxinliu-alex
yuxinliu-alex / main.cs
Created December 16, 2016 08:03 — forked from gistlyn/main.cs
Simple OrmLite CRUD demo
using System;
using System.Collections.Generic;
using ServiceStack;
using ServiceStack.Text;
using ServiceStack.OrmLite;
using ServiceStack.OrmLite.Sqlite;
using ServiceStack.DataAnnotations;
public class User
{