Markdown语法


思维导图文件下载

致谢

  • 站在这位 巨人 的肩膀上

直接使用HTML

  • 一般来说直接使用

  • 特殊:块标签必须在前后加上空白,例如:div,table,pre,p

  • 注意:块标签中的MD语法无效,而段标签中有效,例如:span,cite,del

Read more ⟶

Sublime Text2简介


思维导图文件下载

安装

学习视频

美化

  • 更改图标

  • 添加Soda主题

      运行Packge Control Install,安装Theme-Soda
    
      修改Gloabl Setting-User,添加 "theme": "Soda Dark.sublime-theme"
    

插件

  • ZenCoding

Read more ⟶

什么是差额选举?


思维导图文件下载

差额投票

  • 一人多票

  • 让选民表达他们最讨厌那部分候选人

  • 统计哪部分候选人遭受的反对最多,它会将反对者相对最多的人淘汰掉

等额选举

  • 每一位候选人都会获得"一票"赞成或不赞成

Read more ⟶

如何把VIM变成Python IDE


思维导图文件下载

原文链接

简介

  • 2008年的老文章

  • 开发环境最重要的部分之一

      很容易的跨机器
    
  • 用git来保存VIM配置

      autoload目录目的是用来自动载入插件Pathogen
    
      我们使用Pathogen来载入bundle目录中的其他插件
    
      让我们下载Pathogen然后放进autoload目录中
    
      为了启动时可以载入,我们需要在文件~/.vimrc中加入
    
      把我们计划使用的插件用submodules方式放进git仓库中
    
      git submodule add http://github.com/tpope/vim-fugitive.git bundle/fugitive
    

git submodule add https://github.com/msanders/snipmate.vim.git bundle/snipmate git submodule add https://github.com/tpope/vim-surround.git bundle/surround git submodule add https://github.com/tpope/vim-git.git bundle/git git submodule add https://github.com/ervandew/supertab.git bundle/supertab git submodule add https://github.com/sontek/minibufexpl.vim.git bundle/minibufexpl git submodule add https://github.com/wincent/Command-T.git bundle/command-t git submodule add https://github.com/mitechie/pyflakes-pathogen.git git submodule add https://github.com/mileszs/ack.vim.git bundle/ack git submodule add https://github.com/sjl/gundo.vim.git bundle/gundo git submodule add https://github.com/fs111/pydoc.vim.git bundle/pydoc git submodule add https://github.com/vim-scripts/pep8.git bundle/pep8 git submodule add https://github.com/alfredodeza/pytest.vim.git bundle/py.test git submodule add https://github.com/reinh/vim-makegreen bundle/makegreen git submodule add https://github.com/vim-scripts/TaskList.vim.git bundle/tasklist git submodule add https://github.com/vim-scripts/The-NERD-tree.git bundle/nerdtree git submodule add https://github.com/sontek/rope-vim.git bundle/ropevim git submodule init git submodule update git submodule foreach git submodule init git submodule foreach git submodule update

Read more ⟶

What's the Cloud(转)


云计算擅长做什么呢?以下场景都是不错的利好方案:

  • 没有基础技术设施而又需要可伸缩性的创业公司。
  • 地理数据,政务信息之类的数据中心。
  • 桌面办公(邮件,浏览器,日历类应用)。
  • 游戏(拥有服务端和三维渲染的廉价终端的这类)。
  • 需要动态处理大容量数据的业务。
  • 具有大容量数据和低安全要求的应用。
Read more ⟶