[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系統 | 發表迴響

[line]如何將個人LINE ID轉成可以加入好友的專屬網址(LINE超連結)

參考網址:https://golife.com.tw/good-idea/line-id-url/

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

[scratch]在簡報中建立Scratch積木圖案

參考網址:哈希技術部落格

老師教孩子學習Scratch時,使用投影片與孩子說明Scratch積木功能,是很常見的狀況。
但想把Scratch裡的積木程式放到投影片中,最直覺的作法便是截圖然後放進投影片內。而這樣的做法有幾個常見的困擾:
(1) 圖片需要去背
(2) 圖片解析度不高
(3) 如果要調整內容需要重新截圖

可以透過google擴充套件讓我們有效率的直接在投影片中建立自動去背、向量圖高解析度、可以編輯的scratch積木圖案。除此以外,更可以客製化製作出自己想要的積木哦

步驟一:安裝 Scratch Blocks 擴充套件  url

步驟二:開啟google簡報,使用擴充功能

步驟三:透過產生器製作積木

範例:

當 @greenflag 被點擊
移動(10)點

text to Scratch blocks tool

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

[NetFlix]Netflix 雙字幕怎麼開?教你快速啟用 Netflix 中英字幕

參考網址:塔科女子

安裝 Chrome 套件「NflxMultiSubs」

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

[scratch]kittenbot小黑貓

參考網址:https://kblock.kittenbot.cn/

購買套件  https://www.kittenbot.cc/

全佑電腦- 機器人科學館

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

[scratch]OSEP scratch3

參考網址:https://sites.google.com/view/osep-scratch3

線上編輯
https://ys-fang.github.io/OSEP/app/

課程列表
https://2blog.ilc.edu.tw/868/44668/

OSEP scratch3(註)是以MIT原版scratch3為基礎,再增加支援多種硬體及網路功能的擴展積木。

其中網路功能的擴展積木可以直接使用,跟硬體有關的擴展積木需要安裝(啟動)轉譯程式。

有讀寫google試算表的擴充套件

google 試算表寫入
示範影片 https://www.youtube.com/watch?v=B6uRUmgsoSE&list=PL52qbzg6rwU6T4qVpjjFKSmE9Sl8jKKwp&index=16
scratch3寫入google試算表
Apps Script  發佈/部署為網應用程式

function doGet(e) {
  var params = e.parameter;
  var column1 = params.c1;
  var column2 = params.c2;
  var column3 = params.c3;
  var column4 = params.c4;
  var column5 = params.c5;
  var column6 = params.c6;
  var column7 = params.c7;
  var column8 = params.c8;
  var date = new Date();
  var now = date.getFullYear()+'/'+(date.getMonth() + 1)+'/'+date.getDate() + ' '+ date.getHours() + ':' + date.getMinutes() + ':' + date.getSeconds();


  //sheet資訊
  var SpreadSheet = SpreadsheetApp.openById("檔案ID");
  var Sheet = SpreadSheet.getSheets()[0];
  var LastRow = Sheet.getLastRow();

  //存入資訊
  Sheet.getRange(LastRow+1, 1).setValue(column1);
  Sheet.getRange(LastRow+1, 2).setValue(column2);
  Sheet.getRange(LastRow+1, 3).setValue(column3);
  Sheet.getRange(LastRow+1, 4).setValue(column4);
  Sheet.getRange(LastRow+1, 5).setValue(column5);
  Sheet.getRange(LastRow+1, 6).setValue(column6);
  Sheet.getRange(LastRow+1, 7).setValue(column7);
  Sheet.getRange(LastRow+1, 8).setValue(column8);
  Sheet.getRange(LastRow+1, 9).setValue(now);
 
  //回傳資訊
  return ContentService.createTextOutput("ok");
}

 

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

[scratch]用廣播產生分身

參考網址:https://www.timelog.to/a113480629

如果分身還沒刪除,每個分身都會收到廣播訊息,分身就會以等比級數(2, 4, 8, 16, …)的數量產生。

例題:https://scratch.mit.edu/projects/518997936/

 

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

[bootstrap]什麼!Bootstrap 4 變成 Bootstrap 5 了

參考網址:https://hsiangfeng.github.io/css/20210205/1934188738/

六角學院 bootstrap 使用手冊 中譯

目前(2021/4/21)仍在bata-3階段

V5正式版已釋出 https://blog.getbootstrap.com/2021/05/05/bootstrap-5/

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