※ 儲存的SVG圖檔可以直接給 LibreOffice 使用,MS Office 則要 2016 版之後才支援 SVG 圖片格式。
※ 儲存的SVG圖檔可以直接給 LibreOffice 使用,MS Office 則要 2016 版之後才支援 SVG 圖片格式。
參考網址:http://www.sport.mlc.edu.tw/docs/multievents/
搜尋關鍵字combined events scoring tables
http://www.sport.mlc.edu.tw/docs/multievents/combinedEventsScoring.htm
http://www.sport.mlc.edu.tw/docs/multievents/
http://www.sport.mlc.edu.tw/docs/multievents/functions.js
http://legacy.usatf.org/statistics/calculators/combinedEventsScoring/
<?php /** * 測試php執行時間 */ function microtime_float() { list($usec, $sec) = explode(" ", microtime()); return ((float)$usec + (float)$sec); } $time_start = microtime_float(); //休息一下或程式碼放這裡 usleep(100); $time_end = microtime_float(); $time = $time_end - $time_start; echo "執行時間".$time.'秒<br />';
參考網址: 藤小二 https://www.youtube.com/watch?v=U4OGPtKBAF4
完整關機 shift+關機
進入BIOS Fn+F2 按著 再按電源鍵
修改function key behavior 模式
media模式:F1..F12
function模式 : Fn+F1..F12
還原進入鍵
Fn + Alt + F10 + 電源鍵
要刪除括號內的文字,可以找出它們,然後將它們替換為空白。
1。 按 Ctrl + H 鍵來啟用 查找和替換 對話框中 查找內容 文本框,輸入 (*) 進入它,然後去 更換 文本框,輸入 () 進去。 看截圖:
2。 然後點擊 “全部替換”。 然後會彈出一個對話框提醒您更換次數。 點擊 OK 關閉它。
相關函數
儲存格C2:=LEFT(B2,FIND("(",B2)-1)
參考網址:https://www.cyberciti.biz/tips/linux-iptables-how-to-specify-a-range-of-ip-addresses-or-ports.html
For example, allow incoming request on a port 22 for source IP in the 192.168.1.100-192.168.1.200 range only. You need to add something as follows to your iptables script:
iptables -A INPUT -p tcp --destination-port 22 -m iprange --src-range 192.168.1.100-192.168.1.200 -j ACCEPT
if –protocol tcp (-p tcp) is specified, you can specify source port range with following syntax:
And destination port range specification with following option :
For example block lock all incoming ssh access at port 22, for source port range 513:65535:
iptables -A INPUT -p tcp -s 0/0 --sport 513:65535 -d 195.55.55.78 --dport 22 -m state --state NEW,ESTABLISHED -j DROP