2017年10月27日 星期五

如何在 eclipse 快速地 stop/terminate 一個 java application

參考此篇: https://stackoverflow.com/questions/321118/what-is-the-short-cut-in-eclipse-to-terminate-debugging-running 直接講結論:要使用快速鍵的話,要切換到 debug view 就會有效。 但是......如何在不切換 view 的情況下 stop/terminate 呢...
Posted on 10/27/2017 10:10:00 上午 | Categories: ,

2017年10月12日 星期四

cmd script 自動產生日期、時間字串,並 copy 到剪貼簿中

要先定義 os.date & os.time 的字串格式 For /f "tokens=1-4 delims=- " %%a in ('date /t') do (set _thisDate=%%a%%b%%c) For /f "tokens=1-2 delims=/:" %%a in ('time /t') do (set _thisTime=%%a%%b) set _thisDateTime=%_thisDate%.%_thisTim...
Posted on 10/12/2017 03:12:00 下午 | Categories:

2017年10月5日 星期四

redis monitor

監控 redis 現在被呼叫 (查詢) 的狀...
Posted on 10/05/2017 10:05:00 上午 | Categories:

2017年10月2日 星期一