摘要: 使用AutoHotkey 实现MarkDown的英文符号输出 数字按键中的字符输出 1:: Send % "{ASC 0" . Asc("!") . "}" 2:: Send % "{ASC 0" . Asc("@") . "}" 3:: Send % "{ASC 0" . Asc("#") . " 阅读全文
posted @ 2017-03-26 12:05 某甲 阅读(190) 评论(0) 推荐(0)
摘要: # Django MPTT easyui ## 测试指令按照MPTT的文档,先创建模型,然后添加数据 from django.db import models from mptt.models import MPTTModel, TreeForeignKey class Genre(MPTTMode 阅读全文
posted @ 2017-02-15 10:15 某甲 阅读(1438) 评论(0) 推荐(0)
摘要: -module(test_des). -export([test/0]). hexstr2bin(S) -> list_to_binary(hexstr2list(S)). hexstr2list([X,Y|T]) -> [mkint(X)*16 + mkint(Y) | hexstr2list(T 阅读全文
posted @ 2016-09-18 17:47 某甲 阅读(413) 评论(0) 推荐(0)