2020年10月29日 星期四

可運用於資訊教育中的影像處理雲端工具

程式教育如火如荼的推展下,許多以前的影像處理的東西似乎漸漸被遺忘,例如:photoImpact、photocap、Flash、GIF Animator等等,但在資訊教育的領域裡,這些應該也是資訊基本能力,以下介紹幾個最近常用的雲端工具:

1. 像素動畫工具,可以建立角色,搭配 MIT Scatch 各種主題式的程式教學 https://www.piskelapp.com/

2. 可以取代 photoshop影像處理工具
https://www.photopea.com/

3. 簡單將 JPG, PNG, GIF 轉成 PDF, SVG, EPS
https://vectormagic.com/

如何在 Google Chrome中執行 Flash( 以 lightbot 為例)

因為安全性因素,Google Chrome 封鎖 Flash執行,但如果確定來源內容沒問題,則可以暫時開啟。


1. 點擊網址列右上角的圖示。 


2. 點擊管理




3. 打開 Flash 設定


4. 再點選一次原先要執行的畫面,即可允許執行。




2020年10月21日 星期三

免費而且可以商用的圖標(icons in personal and commercial projects freely)

https://www.flaticon.com/

https://smashicons.com/

https://www.freepik.com/


[App Inventor2] 印出 Fibonacci Sequence

 Fibonacci Sequence

The Fibonacci Sequence is the series of numbers:

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ...

The next number is found by adding up the two numbers before it:

1 = 1 + 0

2 = 1 + 1

3 = 1 + 2

5 = 2 + 3

8 = 3 + 5 …


[app inventor2] 印出質數

 Prime Numbers

Prime Number is a natural number greater than 1 that has exactly two different natural number divisors: 1 and itself. A natural number greater than 1 that is not a prime number is called a composite number. The smallest prime number is 2.


Make an app with app inventor to show a list of prime numbers up to 100. An  example is as follows:


Thinking...

  1. Declare two variables Dividend and Divisor.

  2. Check the  remainder = (Dividend % Divisor) is 0 or not. If remainder = 0 then Dividend is a prime number.

  3. If Dividend=Divisor then Dividend is a prime number.




[app inventor2] 印出偶數和奇數


 




2020年10月14日 星期三

Scratch & Math - 如何找出100以內的質數

對國一新生來說,這個內容似乎不容易,但經過說明,學生也可以做出來,真是讓人驚訝,現在小孩的學習能力不容小覷。

國一的數學課本是利用埃拉托斯特尼篩法來尋找質數。此處教學時是利用兩個變數、迴圈及條件來處理。用不插電的方式先寫流程也不錯。

流程如下:

1 刪除 質數清單
2 被除數=2
3 重複迴圈 (100) {
4     除數=2
5     重複直到 { (mod(被除數/除數)=0)
6          除數 ++
7      }
8      如果 (被除數=除數) 則 被除數添加質數清單
9    被除數 ++
10}   




2020年10月6日 星期二

sketchup 蓋磚牆


基本形狀:固定大小全磚與半磚
練習技巧:不同視圖選取、移動、大量複製
造形:自由創作

熱門文章