品德,往往只在于有勇气做出选择.

2016-07-02
cmd操作远程oracle数据库

一、导出命令

1
exp username/password@ipAddress/orcl`oracle的sid` file=c:\本地存放数据库备份的路径 full=y direct=y

full=y:指全部导出
direct=y:指以直接路径导出

二、导入命令

1
imp username/password@ipAddress/orcl`oracle的sid` file=要导入远程数据库的文件 full=y
阅读此文

2016-06-25
时间引发的讨论

———作者:候江龙

一、时间 (下面用反证法证明时间客观存在)

时间是为了研究运动而引入的一个物理量。运动是物体各个状态的有序集合,简言之,时间是联系物体各个状态(即现状)的一种工具。
假设时间不真实存在,则时间是伴随记忆出现的。记忆使我们具有分析与现状相关联的原画面与将要发生的新画面之间的关系。因为这些画面存在顺序,所以我们在思考这个顺序(或方向)是怎么产生并且又表示什么意义的时候利用了时间这一概念——这使我们能够量化世界从而理解万事万物。(画面指一个准静止状态)
我们所处的现状可以抽象为一幅持续更新的画面,而且我们一次只能存在于一个画面中,并且我们具有储存原画面的能力,总会自觉的将原画面与现状进行联系和对比。每个画面单独被考虑时是不存在时间的,把无数个画面整合在一起,我们却感受到了时间,这便出现了“无数个0加起来大于0”的现象。所以,时间应是不真实存在的。总结一下:单一的画面在记忆的作用下感知了运动,此时人类思考这个运动,大脑便产生时间的感觉为使人类更好的理解和生存。

阅读此文

2016-05-13
为博客加入多说评论模块

1. 登录多说网站http://duoshuo.com/,创建站点:

1
2
3
可以使用常用的社交账号进行登录,无需注册
选择`我要安装`来创建一个站点
录入基本的创建信息,点击`创建`按钮来创建一个站点

2. 修改主题配置文件:

我用的主题是freemind,主题地址https://github.com/wzpan/hexo-theme-freemind.git,修改主题的步骤请参考”修改Hexo博客主题”
1.打开当前主题路径/_config.yml,找到duoshuo_shortname标签,设置为刚才创建站点时多说域名中的内容,请注意,没有前缀http://和后缀.duoshuo.com.

阅读此文

2016-05-13
为博客添加About导航

有些主题没有About,所以我们给博客加一个About页面.

  1. 打开当前主题路径/_config.yml(注:此路径为主题文件目录下的配置,而非Hexo根目录下的配置),找到menu标签,在menu下扩展一条title:

    1
    2
    3
    4
    - title: About
    url: about
    intro: "About me."
    icon: "fa fa-user"
  2. 在Hexo目录中执行以下命令:

    1
    $ hexo new page "about"
  3. 部署项目到github:

    1
    2
    3
    $ hexo clean
    $ hexo g
    $ hexo d

经过以上几步,就可以成功为博客创建一个About导航了.

阅读此文

2016-05-13
jdbc连接Sql Server 2008

  1. 下载驱动包

    1
    https://yunpan.cn/cSgGFjDdLW9Qz  访问密码 `bc5c`
  2. 数据库连接信息
    driverClass=com.microsoft.jdbc.sqlserver.SQLServerDriver
    url=jdbc:microsoft:sqlserver://数据库连接ip地址:1433;DatabaseName=数据库名称
    user=sa
    password=数据库访问密码

  3. java代码

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    public static void main(String[] args) throws ClassNotFoundException {
    String driverClass = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
    String url = "jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=test";
    String username = "sa";
    String password = "password";
    Class.forName(driverClass);
    try {
    Connection connection = DriverManager.getConnection(url, username, password);
    } catch (SQLException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    }
    }
阅读此文

2016-05-10
Welcome to MarkdownPad 2

MarkdownPad is a full-featured Markdown editor for Windows.

Built exclusively for Markdown

Enjoy first-class Markdown support with easy access to Markdown syntax and convenient keyboard shortcuts.

Give them a try:

Bold (Ctrl+B) and Italic (Ctrl+I)
Quotes (Ctrl+Q)
Code blocks (Ctrl+K)
Headings 1, 2, 3 (Ctrl+1, Ctrl+2, Ctrl+3)
Lists (Ctrl+U and Ctrl+Shift+O)

See your changes instantly with LivePreview

Don’t guess if your hyperlink syntax is correct; LivePreview will show you exactly what your document looks like every time you press a key.

Make it your own

Fonts, color schemes, layouts and stylesheets are all 100% customizable so you can turn MarkdownPad into your perfect editor.

A robust editor for advanced Markdown users

MarkdownPad supports multiple Markdown processing engines, including standard Markdown, Markdown Extra (with Table support) and GitHub Flavored Markdown.
With a tabbed document interface, PDF export, a built-in image uploader, session management, spell check, auto-save, syntax highlighting and a built-in CSS management interface, there’s no limit to what you can do with MarkdownPad.

阅读此文

2016-05-09
Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

阅读此文