紫風(fēng)亂寫

          除了他眼前的屏幕,這個(gè)人什么也沒看見。
          被周圍的電腦簇?fù)碇恢浪鶆?chuàng)造的現(xiàn)實(shí),但又意識到那是虛幻。
          他已經(jīng)超越了技術(shù)。也超越了機(jī)器。
          posts - 62, comments - 93, trackbacks - 0, articles - 0
            BlogJava :: 首頁 :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理

               摘要: 軟件開發(fā)團(tuán)隊(duì)和測試團(tuán)隊(duì)之間的關(guān)系是復(fù)雜而有趣的,雙方有共同目標(biāo),又互相競爭。雙方的共同目標(biāo)在于減少軟件交付之后缺陷的嚴(yán)重程度和數(shù)量。雙方的利益競爭在于測試人員盡可能的發(fā)現(xiàn)軟件開發(fā)團(tuán)隊(duì)交付的軟件產(chǎn)品的缺陷。在這種情況下,減少無謂的內(nèi)耗,共同保證共同目標(biāo)的實(shí)現(xiàn),才可能實(shí)現(xiàn)雙方的共贏。但是在很多時(shí)候,軟件開發(fā)團(tuán)隊(duì)和測試人員之間總存在著一種緊張的關(guān)系,并因此無謂的添加了到達(dá)共同目標(biāo)的困難。

          在我經(jīng)歷過的一些開發(fā)過程中,多次因?yàn)榕c測試人員之間的頗為愉快的合作,實(shí)現(xiàn)了雙贏和共贏。總結(jié)出來幾點(diǎn),拋磚引玉:
          1. 保持良好的心態(tài),提高對開發(fā)人員與測試人員之間關(guān)系的認(rèn)識
          2. 對于客戶想法的理解,開發(fā)團(tuán)隊(duì)與測試團(tuán)隊(duì)需要達(dá)成一致并且保持同步。
          3. 互相幫助,共同提高  閱讀全文

          posted @ 2010-10-24 05:07 Justfly Shi 閱讀(1806) | 評論 (0)編輯 收藏

          1. test if the command notify-send is installed
          notify-send "Hello"
          If the command is not found, install the required package following the tips
          2. vi notify.sh and input the below content into it.
          #!/bin/bash
          DISPLAY=:0.0 /usr/bin/notify-send -30000 "<b>Take a Break!</b>"
          3. chmod +x notify.sh
          4. crontab -e
          5. add the below content as a new line in the opened file. and then save it
          */45 * * * * /home/jimmy/notify.sh
          6. Done!

          posted @ 2010-09-28 15:49 Justfly Shi 閱讀(365) | 評論 (0)編輯 收藏

          It is only available for one session.
          using the below command before you run your query
          ALTER SESSION SET NLS_DATE_FORMAT = 'YYYY-MM-DD HH24:MI:SS';
          For more information, refer to the page http://www.oracle.com/technology/products/database/sql_developer/howtos/howto_policy_date_formats.html
          

          posted @ 2010-08-11 16:45 Justfly Shi 閱讀(365) | 評論 (0)編輯 收藏

          In Ubuntu, key F10 is used to open the first item of the menu bar, but If you use Emacs key binding in eclipse, F10 is used as the redo key. So you need to do the below change.

          Run gconf-editor, browse to /desktop/gnome/interface then scroll down to menubar_accel and delete the F10 value.

          From http://www.h4ck3r.net/2010/04/07/debugging-step-over-f10-eclipse-ubuntu/

          posted @ 2010-07-22 23:35 Justfly Shi 閱讀(336) | 評論 (0)編輯 收藏

          install jdk via Synaptic package manager, the name of it is sun-java6-jdk
          download the eclipse install file for Linux

          1.Extract the eclipse download and move to opt.

          tar xzf wtp-all-in-one-sdk-1.0-linux-gtk.tar.gz
          sudo mv eclipse /opt/eclipse
          cd /opt
          sudo chmod -R +r eclipse
          sudo chmod +x `sudo find eclipse -type d`

          2. Then create an eclipse executable in your path
          sudo touch /usr/bin/eclipse
          sudo chmod 755 /usr/bin/eclipse
          sudo vi /usr/bin/eclipse

          With this contents
          #!/bin/sh
          export ECLIPSE_HOME="/opt/eclipse"
          export GDK_NATIVE_WINDOWS=1

          $ECLIPSE_HOME/eclipse $*

          3 Then create a gnome menu item
          sudo vi /usr/share/applications/eclipse.desktop

          With this contents
          [Desktop Entry]
          Encoding=UTF-8
          Name=Eclipse
          Comment=Eclipse IDE
          Exec=eclipse
          Icon=/opt/eclipse/icon.xpm
          Terminal=false
          Type=Application
          Categories=GNOME;Application;Development;
          StartupNotify=true


          4 You now have a working eclipse. But run this command first to initialize the set up
          . /opt/eclipse/eclipse -clean

          Then from here on you can run from the menu item applications/programming/eclipse

          posted @ 2010-07-22 23:27 Justfly Shi 閱讀(341) | 評論 (0)編輯 收藏

          查找包含某字符串的所有文件
          grep -F 'aaa' -R ./

          如何指定輸出文件的某幾行
          想輸出多行用:
          sed -n '1,np' file
          跳著輸出用";"
          sed -n '1p;4p;7p;9p' file

          posted @ 2010-07-22 23:25 Justfly Shi 閱讀(276) | 評論 (0)編輯 收藏

          open System->Administration->Language support
          1. Install/Remove languages->check 'Chinese(Simplified)
          2. Keyboard input method system->ibus
          open System->Preferences->IBus Preferences->Input method->add "Chinese Pinyin"->move it to the top

          posted @ 2010-07-22 23:23 Justfly Shi 閱讀(422) | 評論 (0)編輯 收藏

          http://www.linuxsir.org/bbs/thread362467.html
          下面的這個(gè)已經(jīng)不再維護(hù)了。上面的這個(gè)好使。
          http://www.linuxsir.org/bbs/thread320802.html

          posted @ 2010-07-22 23:23 Justfly Shi 閱讀(563) | 評論 (2)編輯 收藏

          create or edit file /etc/hal/fdi/policy/mouse-wheel.fdi, change its content to below
          <?xml version="1.0" encoding="UTF-8"?>
          <match key="info.product" string="TPPS/2 IBM TrackPoint">
          <merge key="input.x11_options.EmulateWheel" type="string">true</merge>
          <merge key="input.x11_options.EmulateWheelButton" type="string">2</merge>
          <merge key="input.x11_options.XAxisMapping" type="string">6 7</merge>
          <merge key="input.x11_options.YAxisMapping" type="string">4 5</merge>
          <merge key="input.x11_options.ZAxsisMapping" type="string">4 5</merge>
          <merge key="input.x11_options.Emulate3Buttons" type="string">true</merge>
          </match>


          then run the below command

          sudo rm /var/cache/hald/fdi-cache
          sudo /etc/init.d/hal restart
          sudo /etc/init.d/gdm restart

          posted @ 2010-07-22 23:21 Justfly Shi 閱讀(393) | 評論 (0)編輯 收藏

          當(dāng)Eclipse無法找到類,無法正確導(dǎo)入類的時(shí)候,有的時(shí)候是因?yàn)閕ndex出錯,刪除下面這個(gè)目錄
          .metadata\.plugins\org.eclipse.jdt.core

          posted @ 2010-06-29 15:21 Justfly Shi 閱讀(631) | 評論 (0)編輯 收藏

          僅列出標(biāo)題
          共6頁: 上一頁 1 2 3 4 5 6 下一頁 
          主站蜘蛛池模板: 陇西县| 内黄县| 温州市| 裕民县| 朝阳县| 天等县| 稻城县| 勃利县| 佳木斯市| 镇巴县| 武胜县| 佛山市| 富顺县| 永福县| 天门市| 肇源县| 镇江市| 清涧县| 天峨县| 泉州市| 嘉义县| 保靖县| 承德县| 射洪县| 固安县| 三门县| 巴南区| 西安市| 辽中县| 启东市| 马尔康县| 延长县| 靖边县| 合作市| 延安市| 玉溪市| 渝中区| 遂平县| 右玉县| 河曲县| 拉孜县|