[rasp]Linux 掛載 ISO 映像檔

參考網址:LINUX 技術手札

mkdir /mnt/iso

mount -o loop /home/phpini/myimage.iso /mnt/iso

umount /mnt/iso

發表於 Linux系統, 軟體使用 | 發表迴響

[教學]另一種型態的IRS(即時回饋)系統-plicker

參考網址:https://get.plickers.com/

plickers介紹

不需要遙控器,老師只要使用手機掃瞄學生的答案卡,就可以蒐集學生的答案。

發表於 教學科技 | 發表迴響

[教學]翰林命題大師

參考網址:翰林命題大師

結合原本的命題光碟,可以進行線上測驗,考試的界面優秀。

發表於 教學科技 | 發表迴響

[google]題庫批次匯入google表單

參考網址:http://n.sfs.tw/content/index/14616

發表於 軟體使用 | 發表迴響

[google meet]點名

參考網址:燕秋老師教學頻道
✍教師安裝/學生不用裝
✍套件名稱:Google Meet Attendance Collector https://chrome.google.com/webstore/de…
✍套件名稱:Google Meet Attendance-V2 https://chrome.google.com/webstore/de…

發表於 軟體使用 | 發表迴響

[chrome]dino小恐龍

參考網址:https://www.dcard.tw/f/funny/p/231181966

1. 到Chrome擴充套件下載chrome-dino-cosplay  套件原始碼https://github.com/superj80820/chrome-dino-cosplay
2. 輸入Chrome://dino進到小恐龍頁面(或者你也可以拔網路線XDD)
3. 按F12叫出控制台
4. 點選插建
5. 選擇你任何喜歡的角色並且按"Copy!!"
6. 點選Console頁面
7. 將剛剛複製的代碼貼上並且Enter!!

發表於 軟體使用 | 發表迴響

讓網頁出現漂亮的鍵盤按鍵

參考網址:http://campus-xoops.tn.edu.tw/modules/tad_book3/page.php?tbsn=52&tbdsn=1761

匯入CSS
 

<link rel="stylesheet" href="http://campus-xoops.tn.edu.tw/modules/tadtools/css/kbdfun.css" type="text/css" />

 

使用範例

<kbd>Ctrl</kbd>
<kbd class="ios">Ctrl</kbd>
<kbd class="dark">Ctrl</kbd>
<kbd class="android color">Ctrl</kbd>

 

 

發表於 程式設計, 軟體使用 | 發表迴響

[regedit]windows 10 合併工作列按鈕的註冊表 REG 設置

參考網址:百度經驗

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"TaskbarGlomLevel"=dword:00000002

以上是win10合并任务栏按钮的设置 0:始终隐藏标签;1:占满后隐藏;2:从不合并

 

修改regedit之後無法立即生效
Reflash.bat
 

@echo off
echo explorer.exe已關閉!
taskkill /im explorer.exe /f
echo 正在開啟explorer.exe
start "" "C:\WINDOWS\explorer.exe"
echo explorer.exe已開啟!
ping -n 4 127.1>nul
pause
exit


 

發表於 Windows系統, 軟體使用 | 發表迴響

[bootstrap]網頁設計軟體

參考網址:
Pingendo免費全視覺化Bootstrap開發工具,設計RWD網頁更直覺

軟體名稱:Pingendo
軟體性質:免費
支援平台:Windows/MAC/Liunx
下載網址:http://pingendo.com/
軟體更新速度慢

 

Pinegrow Web Editor全視覺化的Bootstrap開發工具

軟體名稱:Pinegrow Web Editor
軟體語言:英文
軟體性質:付費
適用平台:Win/Mac/Liunx
軟體下載:http://pinegrow.com/

 

Bootstrap studio
https://bootstrapstudio.io/
需要自己寫CSS的機會比較多  

發表於 軟體使用 | 發表迴響

[apache2]啟動SSL

參考網址:SSL For Free 免費 SSL 憑證申請,使用 Let’s Encrypt 最簡單方法教學!

網站名稱:SSL For Free
網站鏈結:https://www.sslforfree.com/

值得一試的三個理由:

  1. 使用 Let’s Encrypt 來產生網站的免費 SSL 憑證
  2. 無須透過 Unix 指令,網頁端也能簽發憑證檔案
  3. 每三個月自動通知使用者重新延長時間

 

https://www.mytechgirl.com/tw/how-to/add-ssl-to-website-free-mtg6688.html

要在網頁的根目錄 mkdir .well-known

將下載下來的認檔放到指定的位置

啟動ssl:sudo a2enmod ssl
sudo a2ensite default-ssl
重新啟動伺服器:service apache2 restart

 

另一篇文章https://ccnrz.wordpress.com/2017/05/04/%E5%9C%A8-ubuntu-apache-%E4%B8%8A%E5%95%9F%E7%94%A8-https-%E8%87%AA%E7%B0%BD%E6%86%91%E8%AD%89/

 

檢查憑證的狀態
$ echo | openssl s_client -connect sp.idv.tw:443 | openssl x509 -noout -dates
 

depth=2 C = US, ST = New Jersey, L = Jersey City, O = The USERTRUST Network, CN = USERTrust RSA Certification Authority
verify return:1
depth=1 C = AT, O = ZeroSSL, CN = ZeroSSL RSA Domain Secure Site CA
verify return:1
depth=0 CN = sp.idv.tw
verify return:1
DONE
notBefore=May  5 00:00:00 2021 GMT
notAfter=Aug  3 23:59:59 2021 GMT

 

發表於 Linux系統 | 發表迴響