My Vim Configuration

  • This is the vim configuration of my mac.
  • edit the file in the /usr/share/vim named “vimrc”
  • Some of them need to install some plugins and the command line will make sense
Read more
Comments

Congiure My Octopress Blog

1.In the _config.yml file

1
default_asides: [asides/recent_posts.html, asides/category_list.html, asides/comment.html, asides/github.html, custom/asides/earth.html]
  • and
Read more
Comments

2013 IEEE International Conference on Robotics and Biomimetics

Dec 12-14 2013 shenzhen, China

Team members

pengbin
qiudicong
zhudingqiao

here are the picture

Read more
Comments

Final Exam of the Sysu SE Android Class

在Android平台上实现一个本地应用——大学城特惠网

Some key codes
  • 应用功能描述:
      1. 具有登录界面,可以输入账号和密码,并且有两个按钮“登录”和“退出”。如果点击“退出”按钮可以直接退出程序(如图一所示);
      1. 登录账号和密码可任意输入,当账号和密码非空且一样时视作合法。如果输入信息不合法时,显示“账号或密码错误!”(如图二,图三所示);
      1. 成功登录后显示主界面(如图四所示):主界面顶部显示登录界面输入的账号,下面是一个列表,显示特惠信息表中所有条目(每个条目显示学校与打折信息);
      1. 点击每个列表项可进入查看相应的特惠信息的明细(参照特惠信息表),点击“返回”按钮可以返回到主界面
      1. 附加功能:
      2. 1, 使用对话框的形式代替原来输入非法登录信息的提示方式,要求如下:
          1. 对话框给出提示文字;
        • ii. 包含两个按钮:点击“是”按钮后回到登录界面,点击“否”按钮后退出程序。
      3. 2, 在桌面上显示本应用的 Widget 组件,要求如下:
          1. 能显示一些关于本应用的信息(例如应用名);
        • ii. 包含一个按钮,点击此按钮后能启动本应用。
      4. 3, 记住账号与密码,要求如下:
          1. 程序退出后记住当前登录用户的账号与密码,重新打开本应用后能自动填充两个文本框。
      5. 4, 记录用户登录的时间,要求如下:
          1. 在主界面显示当前用户登录的时间(X 分 X 秒),并且能够实时刷新.
Read more
Comments

Introduction to the Project of Network Attack and Defense

Produced by pengbin and wangyang

Abstract

  • A kind of penetration testing tool is introduced. And we carry out some experiments to penetrate some systems like WinXP and ubuntu linux. Also will we analyze the mechanic of the penetrating and showing why we can use the vulnerability of the system to get the whole access of it. Thus this kind of testing technology can be used in many areas which can help a good many of companies to protect their personal computer and server from the crackers that want to break into the system and do something bad.
Read more
Comments

CPSO-Sk 的实现(1)

  • 其实和标准的PSO是一样的
  • 只是初始种群是不一样的

    • 假设标准版的种群大小是100的话,那么
    • 这个版本是把100分成10份,然后再对每一份使用标准版的算法
  • 因此这两个算法本质上没有区别,只是初始种群大小不一样而已

Read more
Comments