2021-10-08 遊戲式機器學習 - PAIA 乒乓課程 - 電子書 (MLGame | Ping Pong)

2021-07-02 ML Game 機器學習遊戲平台

資訊科學

ML Game 機器學習遊戲平台

# 相關網站

# 軟體與套件

 

 

 

 

2020-10-28 L-game 遊戲

資訊科學

L-game,平板或觸控電視都可以玩

  1. 不能超出格子
  2. 不能重疊
  3. 可以旋轉
  4. 最後不能放的就輸了

https://scratch.mit.edu/projects/441984354/fullscreen/

2020-02-11 Scratch 模擬低彩度 (saturation) 色彩

2020-01-04 文字化分析 Scratch 3 專案

資訊科學

文字化分析 Scratch 3 專案

  1. 取得完整分析資訊:
  2. 取得 JSON 格式分析資訊

2018-07-27 Thonny 初學者學習 Python 的好工具

資訊科學

Thonny 是初學者學習 Python 的好工具,安裝 jedi 後有 auto-completion 功能,另外還有 micro:bit 的外掛,提供一個友善的學習環境。

Python IDE for beginners
https://thonny.org/

BBC micro:bit 外掛
https://bitbucket.org/KauriRaba/thonny-microbit/src/master/

2018-06-07 罕見漢字處理資源

2017-10-26 Scratch 神奇形色牌遊戲 (SET Card Game)

資訊科學

Scratch 神奇形色牌遊戲 (SET Card Game)

SET 遊戲的初步實做,加入簡易的 set 判斷,另使用 Dr. Scratch 評估程式的內容程度。

行動裝置

https://phosphorus.github.io/app.html?id=183640221&turbo=false&full-screen=true

原始程式

https://scratch.mit.edu/projects/182119673/

2017-10-22 Scratch—輸入常用中文字元 (Common Used Chinese Characters)

資訊科學

Scratch—輸入常用中文字元 (Common Used Chinese Characters)

輔助程式

https://github.com/lyshie/scratch-chinese-fonts

JavaScript 版本 (適合手機與行動裝置)

https://sulfurous.aau.at/html/app.html?id=181299866&turbo=false&full-screen=true&aspect-x=4&aspect-y=3&resolution-x=&resolution-y=

https://scratch.mit.edu/projects/181299866/

2017-10-21 Scratch 成語字典—嵌入常用中文字 (Embedded Chinese Fonts)

資訊科學

Scratch 成語字典—嵌入常用中文字 (Embedded Chinese Fonts)

Scratch 遊戲設計除了系統字型外,大多數都以嵌入字元圖片(英文字母、符號)的方式來呈現額外的字型。

嵌入英文字母與符號大多僅需要不到100~200個字即可,也就是僅需要這些數量的圖片造型。

而中文字當然也可以此方式來呈現,但所需要的字元符號則是上萬個。本範例使用工具擷取出成語字典中

所用到的中文字,而非全部的中文字集。再使用 convert (ImageMagick) 程式將 TrueType 字型的字元輸出成 PNG 圖片。

最後以同名(字元名稱、檔案名稱、造型名稱)的方式匯入到 Scratch 中使用。

  • 取得教育部《成語典》純文字資料
  • git clone --depth 0 https://github.com/BuzzAcademy/idioms-moe-unformatted-data
    
  • 轉換字典內的所有中文字,由 True Type 字型轉成 PNG 格式的圖片
  • #!/bin/sh
    
    chars=$(cat 10.txt | fold -w1 | sort | uniq)
    
    for c in $chars; do
        convert -background none -fill red -font /opt/local/fonts/lyshie/TW-Kai-98_1.ttf -pointsize 64 label:"$c" "$c.png"                                        
    done
  • 參考資料 Convert TrueType glyphs to PNG image?

JavaScript 版本 (適合手機與行動裝置)

https://sulfurous.aau.at/html/app.html?id=181196702&turbo=false&full-screen=true&aspect-x=4&aspect-y=3&resolution-x=&resolution-y=

https://scratch.mit.edu/projects/181196702/

更多消息