Something Basic About Software Testing

一些常识性的问题

  • 软件测试者的目标是什么?
    • 找bug,并且尽快的找到和修复
  • 在一个已经完成的产品上修复一个bug比在一开始就找到要难更多倍
  • 为什么完全测试一个软件是不可能的?
    • 因为太多输入输出
    • 太多路径组合
  • 测试人员最重要的技能是编程
Read more
Comments

UML Final Exam Note

UML final exam note

  • 3个小时

选择题

  • 10个选择,一题2分
  • 去看下up(书上第二章)。
Read more

TOFEL Experience(have Not Passed 100 Yet)

  • just for myself~~

reading

  • just reading the computer text book
  • do some more reading on and
Read more
Comments

Use Sqlite in Html5

  • There are three ways to store data using html5
    • using database (sqlite)
    • using localStorage
      • will only store on client, will not send to server
      • this data can be read even using different block on the same browser
      • the data will not disapear unless you delete it
    • using sessionStorage
Read more
Comments

Phonegap 框架原理

phonegap 实现原理

  • 关键
    • 1.用webview在本地来渲染解析html
      • 因此实际上他就是一个内嵌的浏览器
        • 类似于一个WebView,但是phonegap对webview做了些改造
    • 2.基于plugin模式来封装调用原生API
      • 以原生app的方式来运行
      • 用js调用原生的功能
    • 3.在框架首次启动的时候加载CallbackServer线程,并且监听前端XHR请求和链表中有无数据
      • 当XHR请求来了而链表为空,则线程等待10秒
        • 如果这个时间内有数据来,那么就唤醒线程把数据传到前端
      • 如果10s后没有数据,则传空数据回前端
      • 基于服务器推技术
    • 4.同步请求和异步请求有关键的区别
Read more

Matlab Classification Method

The method in the system

  • MultiNomial logistic Regressoin
    • bad in high dimension
      • Factor = mnrfit(train_data, train_label);
      • scores = mnrval(Factor, test_data);
Read more