The score takes care itself
盡最大努力做好每個細節,接下來就「讓成功自己達陣」。
My Standard of Performance:An Environment of Excellence

  • 我在球隊中扮演許多角色,而其中我最重視的,就是如同導師般協助身邊的人,讓他們達成自己設下的目標。


How to Know if You’re Doing the Job
Coaches Aren’t Supposed to Cry: Survive One Minute at a Time

  • 失敗是成功的一部分,而且是關鍵的一環。所有人都可能被擊倒,所以首先要退一步,知道挫折必然會降臨,並學習如何面對挫敗。

  • 要有失敗的心理準備。

  • 要逼自己走出失敗,別深陷在慘敗的回憶中

  • 要給自己適度的時間復原,或是難過

  • 要告訴自己:「我會堅持再戰。」

  • 要及早開始為下一場比賽做好準備。

  • 不要問「為什麼是發生在我身上?」

  • 不要以為別人會同情你

  • 不要怨天尤人。

  • 不要沉浸於別人的憐憫之中。

  • 不要怪罪他人。


My Standard of Performance: High Requirements for Actions and Attitudes
An Organization Has a Conscience

  • 無論在商場、球場或任何領域,每個優秀的組織都是有良心的組織,而最理想的組織或團隊,則會在所有成員身上看見相同的價值觀。

  • 領導者必須知道該做什麼,並具備足夠的能力與決心,去完成該做的事。最重要的,就是具體付出行動,展現個人的信念。

  • 對工作要有衝勁,並以聰明的方法不斷追求進步

  • 尊重團隊中的每個人,以及各自的工作

  • 致力於教導與學習(也就是提升自我的領導能力)

  • 公平待人

  • 展現自己真實的人格特質

  • 重視能讓自己進步的細節

  • 懂得自我控制(這點在高壓處境下尤其重要)

  • 用正面話語和態度來對待他人

  • 無論結果如何,都要為自己付出的努力自豪

  • 樂意為團隊多付出心力

  • 理性面對勝敗與褒貶(切忌贏球就得意忘形、輸球就一蹶不振)

  • 鼓勵成員溝通與提出意見(尤其是壓力很大的時候)

  • 在自己與被領導的人之間,設法取


Knibu 發表在 痞客邦 留言(0) 人氣()

Good Strategy Bad Strategy
 

Knibu 發表在 痞客邦 留言(0) 人氣()

https://www.youtube.com/watch?v=C2_Ax3gAX_0
https://www.youtube.com/watch?v=yCToC_MN2Wc

Knibu 發表在 痞客邦 留言(0) 人氣()

P(A|B) = \frac{P(A)\, P(B | A)}{P(B)},
Bayes’ Law


Knibu 發表在 痞客邦 留言(0) 人氣()

https://surfedukators.com/surf-cutback/
 

Knibu 發表在 痞客邦 留言(0) 人氣()


Theory of Relativity

Knibu 發表在 痞客邦 留言(0) 人氣()


https://dsc.kktix.cc/events/google-deep-learning

Knibu 發表在 痞客邦 留言(0) 人氣()


windows架git server的安裝流程紀錄


Reference material
windows架git server的安裝流程紀錄
git + apache + windows xp
Git Server on Windows 安裝手記
Hosting a Git server under Apache on Windows
Gitblit GO Installation & Setup
Installing IIS 8 on Windows Server 2012
Git Server 架設,使用APACHE(windows 7)
在 Windows 系统上配置 Apache Git 服务器


Kelvin's note
  • https://git-scm.com 下載  git for windows  https://git-scm.com/

  • 安裝tortoisegit,看你是32位元還是64位元,擇一安裝即可 https://code.google.com/p/tortoisegit/wiki/Download 

  • 安裝apache,我是裝這個:httpd-2.2.22-win32-x86-openssl-0.9.8t.msi,port請選擇8080(如下圖),並https://ftp.tc.edu.tw/pub/Apache/httpd/binaries/win32/ https://httpd.apache.org/download.cgi


    • 在你想要的槽建立一個專門放倉儲管理的資料庫,C:/Kelvin/GitRepos

    • 去修改apache的設定,到C:\Program Files (x86)\Apache Software Foundation\Apache2.2\conf找到httpd.conf檔案。

    • 再在 httpd.conf 的末尾添加一句 Include conf/git.conf

    • 新建一个 git.conf , 与 httpd.conf 保存在同一个目录, 實際目錄路徑可能因系統不同而不同


    <Directory />

        Options FollowSymLinks

        AllowOverride None

        Order deny,allow

        Allow from all

    </Directory>




    <Directory "C:/Kelvin/GitRepos">

         Options Indexes FollowSymLinks

        AllowOverride None

        Order allow,deny

        Allow from all

    </Directory>




    <Directory "C:/Program Files/Git/mingw64/libexec/git-core/">

         Options Indexes FollowSymLinks

        AllowOverride None

        Order allow,deny

        Allow from all

    </Directory>




    #Set this to the root folder containing your Git repositories.

    SetEnv GIT_PROJECT_ROOT C:/Kelvin/GitRepos




    # Set this to export all projects by default (by default,

    # git will only publish those repositories that contain a

    # file named "git-daemon-export-ok"

    SetEnv GIT_HTTP_EXPORT_ALL




    # Route specific URLS matching this regular expression to the git http server.

    ScriptAliasMatch \

      "(?x)^/git/(.*/(HEAD | \

        info/refs | \

        objects/(info/[^/]+ | \

          [0-9a-f]{2}/[0-9a-f]{38} | \

          pack/pack-[0-9a-f]{40}\.(pack|idx)) | \

        git-(upload|receive)-pack))$" \

        "C:/Program Files/Git/mingw64/libexec/git-core/git-http-backend.exe/$1"




    ScriptAlias /git/ "C:/Program Files/Git/mingw64/libexec/git-core/git-http-backend.exe/"

    <Location /git/>

    AuthType Basic

    AuthName "GIT Repository"

    AuthUserFile "C:/Kelvin/GitRepos/htpasswd"

    Require valid-user

    </Location>


    • 對著GitRepos的資料夾按右鍵,選擇Git Bash,會出現console視窗,


    輸入

    git init --bare project
    建立出project資料夾後,再輸入
    cd project
    進入後再輸入 
    git update-server-info
    輸入完再輸入
    touch daemon-export-ok

    • 為目錄https://ip_addr/git增加權限

      • 請到C:\Program Files (x86)\Apache Software Foundation\Apache2.2\bin  按右鍵點選git bash

      • 輸入htpasswd -cmb /C/Kelvin/GitRepos/htpasswd root calvin

      • /C/Kelvin/GitRepos/為你的倉儲路徑 (必須和git.conf一致)

      • 後面接著htpasswd則是你命名的檔案名稱 (必須和git.conf一致)

      • ID: root

      • PWD: calvin

      • 到C:/Kelvin/GitRepos如果你有看到htpasswd檔出來你就成功了


    • 測試:隨便開一個資料夾,對他按右鍵選擇選擇 Git clone,將之前建置的project資料夾給複製一份起來到另外個資料夾,

      • git clone https://root:calvin@ip_addr/git/project

      • 複製URL打 http:127.0.0.1:8080/git/project

      • 接著輸入帳密的部分:root/calvin

      • 如果有成功抓下來,那就恭喜你成功哩。



    Knibu 發表在 痞客邦 留言(0) 人氣()


    [Catching Waves]
    - keep head still

    Knibu 發表在 痞客邦 留言(0) 人氣()

    https://www.cwb.gov.tw/V7/forecast/fishery/tide_1.h...
    https://www.windguru.cz/int/

    Knibu 發表在 痞客邦 留言(0) 人氣()

    https://www.cwb.gov.tw/V7/forecast/fishery/tide_1.h...
    https://www.windguru.cz/int/

    Knibu 發表在 痞客邦 留言(0) 人氣()

    1
    Blog Stats
    ⚠️

    成人內容提醒

    本部落格內容僅限年滿十八歲者瀏覽。
    若您未滿十八歲,請立即離開。

    已滿十八歲者,亦請勿將內容提供給未成年人士。