删除Windows write live 2011上最后一个帐号

There is a terrible user experience in Windows Live Writer 2011. Windows Live Writer 2011有个坑爹的设计,

You can not delete the last blog account, because of the delete button is disabled. 你不能通过界面删除最后一个博客帐号。

But, you can edit regedit to delete the last account 可以通过编辑注册表去删除帐号

Find "HKEY_CURRENT_USER\Software\Microsoft\Windows Live\Writer\WebLogs" the random GUID that denotes your account. 找到"HKEY_CURRENT_USER\Software\Microsoft\Windows Live\Writer\WebLogs"删除名为随机的GUID的子键

Deleting Your Last And Only Blog From Windows Live Writer

标签: other
日期: 2013-04-09 17:30:06, 11 years and 282 days ago
  • Register 注册

  • Create repository 创建库
    新建库 可以在任何有权限的账户上创建库,无论是个人或组织帐号

    1. 在任意页面的右上角的用户条,点击“Create a New Repo"按钮
    2. 选择创建库的帐号
    3. 输入库名字,选择库类型public公有或private私有;然后点击“Create repository”
  • Delete repository 删除库 删除库

    1. 切换至要删除的库
    2. 选择库操作条上的“Settings”
    3. 点击“Delete this repository”在Danger Zone 区域
    4. 阅读警告,输入库名
    5. 点击“I understand the consequences, delete this repository”
  • Establish a secure connectio SSH Keys 如果决定不使用推荐的HTTPS方法,也能用SSH keys去建立一个安全的终端到github的链接, 下面的步骤将引导你产生一个SSH key然后加入公钥到github帐号

    1. 检查SSH keys 首先,我们需要检查一个存在的ssh keys在你的计算机。 cd ~/.ssh 如果没有文件或路路,那么进行第二步,否则密钥对已存在那么跳到第三步。
    2. 产生新的SSH key 产生新的SSH key ssh-keygen -t rsa -C "your_email@example.com"
    3. 加入SSH key到GitHub 拷贝公钥到剪切版 ~/.ssh/id_rsa.pub
      1. 进入账户设置“Account Settings”
      2. 点击侧栏的“SSH Keys”
      3. 点击“Add SSH key”
      4. 黏贴公钥到“Key”区域
      5. 点击“Add key”
      6. 确认密码后,添加成功
    4. 测试 ssh -T git@github.com
标签: git
日期: 2013-04-06 17:30:06, 11 years and 285 days ago
  • Repository Configure 库配置

    • git init --bare name.git initial an empty git repository 初始化一个空git库
  • Local Setting 本地配置

    • git config user.name name 设置用户名 set user name

    • git config user.email email 设置email地址 set user email

  • Status 状态查询

    • git log --oneline --graph 显示日志 show log

    • git status -s 显示工作区状态 show work box status

  • Box - Stage 工作区和暂存区

    • git add -A 加入所有修改至缓存区 add file new file, removing file and motified content to stage

    • git add -u 加入修改内容至缓存区 update motified content to stage

    • git rm file 移除文件 remove file from work box and stage

      • git diff 比较工作区和暂存区 compare stage with HEAD(local Repository)
    • git checkout -- file 从缓存区恢复至工作区 restore file in work box from stage

  • Stage - Repository 暂存区和库

    • git reset, git reset HEAD, git reset -- file 用库重置暂存区 restore stage from repository

    • git diff --cached 比较暂存区和库 compare stage with HEAD(local Repository)

    • git commit -m 'message' 提交缓存区至库 commit stage to repository

  • Box - Repository 工作区和库

    • git diff HEAD 比较工作区和库 compare work box with HEAD(local Repository)
  • Repository - Stage - Box

    • git reset --hard HEAD 用库恢复工作区和暂存区 restore work box and stage from repository

    • git checkout [commit] -- file 检出至工作区和暂存区 checkout to work box and stage

  • Repository

    • git reset --soft HEAD^ 还原至上一版本 revert to last version(HEAD^)

    • git commit --amend -m 'new comment' modify log 修改版本日志

  • Local Repository - Remote Repository 本地库和远程库

    • git clone file://path.name.git 克隆git库 clone git repository

    • git push 更新远程库 update remote repository

    • git pull 获取远程库,合并到本地 fetch and merge remote to local

  • With SubVersioN

   
svnadmin create     git init --bare
svn checkout        git clone
svn update          git pull
svn revert          git reset git checkout --
                    git [commit] checkout --
svn add             git add
svn rm              git rm
svn mv              git mv
svn diff            git diff 
                        git diff --cached
                    git diff HEAD
svn status          git status -s
svn commit -m ''    git commit -m '';git push
svn log             git log 
  • 保存当前工作进度

    • git stash save work box to the stash 保存进度

    • git stash list 显示进度列表 list stash

    • git stash apply 恢复进度 apply a single stashed state on the top of work box

    • git stash pop 从进度列表移动某个缓存覆盖工作区 remove a single stashed state and apply it on the top of work box

    • git stash clear 删除所有存储的进度 clean the stash

标签: git
日期: 2013-03-11 17:30:06, 11 years and 311 days ago

Title

This is an Main Title
=====================
This is an Sub Title
----------------------

Section

  • This is an H1
  • This is an H2
  • This is an H3
  • This is an H3
  • This is an H4
  • This is an H5
  • This is an H6

List

* 1
   + 1-1
      - 1-1-1
        - 1-1-2
   + 1-2
* 2
* 3
  1. 3-1
  2. 3-2

as:

  • 1
    • 1-1
    • 1-1-1
    • 1-1-2
    • 1-2
  • 2
  • 3
    1. 3-1
    2. 3-2

important

  • _em_
  • **strong**

link

[This](http://codepongo.com) is a link.

as:
This is a link.

[This][1] is a reference-style link.
[1]: http://codepongo.com/ "codepongo"

as:
This is a reference-style link.

image

![alt=markdown.jpg](markdown.jpg) alt=markdown.jpg

paragraph

$(linesep)
this is one pargraph
$(linesep)
$(linesep)
this is two pargraph
$(linesep)
$(linesep)
...
$(linesep)

this is one pargraph

this is two pargraph

sample


Mini Markdown Syntax Sample

a Mini Markdown for Writing document myself

Section One

This is a Section Contents.

Section Two

There is a list in this section. * 1 + 1-1 - 1-1-1 - 1-1-2 + 1-2 * 2 * 3 + 3-1 + 3-2

Section Three

there is a long long long long long long long long long long long long

long long sentence in this section.

Section Four

  • This is a reference-style link.

  • This is a link.

Section Five

there are two pargraphs in this section

this is one pargraph

this is two pargraph

Section Six

An image is shown in this section.

alt=markdown.jpg

Markdown zh_tw

python markdown2

Markdown syntax English

标签: markdown
日期: 2013-01-16 17:30:06, 12 years ago

alt=zjdict icon图标

a command line word dictionary

Function 功能

  • green application 绿色软件 无需安装 解压即用

  • new word file as text format 文本格式生词本

  • command user interface 命令行交互

  • local dictionary. 离线词典 you can translate word by local startdict dictionary 本地使用星际译王词典

  • translate on line. 在线翻译 support baidu online translate and youdao online translate. 支持百度词典,有道词典在线翻译

  • mode 多模式 translate mode 翻译模式 search mode 查找模式

  • matching 匹配方式 regular expression 支持正则表达式

snapshot 截图

alt=run运行 alt=translate翻译 alt=search 查找 alt=search mode查找模式

command 命令

  • ,save save to 'new word' file保存至生词本

  • ,search <regular> 查找

  • ,search search mode 查找模式

  • ,quit or ,exit exit 退出

develop 开发

标签: application, python
日期: 2012-10-22 17:30:06, 12 years and 86 days ago