2019年7月23日 星期二

WebsStorm display NPM tab

The Tab [NPM] was gone, where can we show/display it?

It is easy. Right click on package.json, then choose [Show npm Scripts]


2019年6月18日 星期二

Synology NAS 開機執行特定 Script 於 rc.d 資料夾下

想在 Synology NAS 開機時執行特定 Script

1. 將寫好的 script 放在 /usr/local/etc/rc.d/ 之,檔案名稱一定要有 .sh 為結尾(ex. your_script.sh)

2. 變更權限 sudo chomd 755 your_script.sh

3. script 內容必須包含 start 和 stop 等參數,範例如下

#!/bin/sh
#
# Put this file in /usr/local/etc/rc.d/your_script.sh

case "$1" in
stop)
 echo "[Stop]"
 # do something here"
 ;;
start) 
 echo "[Start]"
 sudo "/volume1/matt/your_script.sh"
 ;;
restart)
 echo "[Restart]"
 $0 stop
 sleep 1
 $0 start
 ;; 
status)
 ps | grep laravel_queue_listen | grep -v grep
 ;;
*)
 echo "usage: $0 { start | stop | restart | status}" >&2
        exit 1
        ;;
esac
之後你可以透過手動 ./your_script.sh start|stop|restart 來操作。

在系統開機時也會自動執行 ./your_script.sh start

可參考官方文件 [Run Scripts When the System Boots]
https://originhelp.synology.com/developer-guide/integrate_dsm/run_with_system_boot.html

2019年5月29日 星期三

安裝 npm forever 會遇到的小問題

安裝 forever
npm install forever -g
接著 forever start your_node_code.js
就可以在背景一直執行(不會因為terminal 關閉而結束)

但是有可能會遇到 forever: command not found 的問題

這時候的解決方法就是想辦法找到你的 forever 被安裝在哪裡,然後用 ln 的方式導到你的 /usr/bin/ 下使用

以我的例子
先用 npm get prefix 找到npm 的位置
/volume1/@appstore/Node.js_v8/usr/local

然後發現forever package其實被安裝在
/volume1/@appstore/Node.js_v8/usr/local/lib/node_modules/forever/bin/forever

於是我們將它link起來以便隨地使用
sudo ln -s /volume1/\@appstore/Node.js_v8/usr/local/lib/node_modules/forever/bin/forever /usr/bin/forever

收工

後記。
發現有可能把 $PATH 加入即可
export PATH=$PATH:/volume1/@appstore/Node.js_v8/usr/local/bin

2019年5月25日 星期六

Using Linux Crontab example

If you want to execute some task in every 5 minutes?
如果想在 Linux 中定時執行某些任務?
crontab -l    // see the list of crontab
crontab -e    // edit current crontab

Example situations: Sync up system time every 5 minutes.
Create a file /root/synctime.sh and set 775, the synctime.sh execute your update logic then which execute every 5 mins
*/5 * * * * /root/synctime.sh


Here is a online crontab exerciser (這裡有個線上 crontab 的練習器)
https://crontab.guru/every-weekday

2019年5月6日 星期一

[Git] 在 TortoiseGit 裡記憶專案密碼

也許你也覺得每次 pull/push 程式碼就要重新輸入一次密碼好煩?來,以下教你如何用 TortoiseGit 記憶專案密碼。

1。首先,右鍵點選專案裡的 [Settings]


2。移到 Credential 頁面,Config Type 選擇 Local,然後填入你 Repository 的 URL,Helper是指認真的工具,在此選 manager,將會以微軟內建對話框詢問。(若忘記專案網址,可用指令查詢: git config --get remote.origin.url


就這麼簡單。