Skip to main content

跟娃一起玩Raspberry Pi


跟娃一起玩Raspberry Pi


这几天在家跟娃一起玩编程:MIT的Media Lab搞了一个Scratch编程语言,专门面向小
孩子学习编程。买的Raspberry Pi上面就预装了Scratch,还有一个音乐编程语言/工具
:Sonic Pi。

娃这两天用Scratch写游戏,用Sonic Pi写音乐,玩得不亦乐乎……

Raspberry Pi上是一个定制的Debian Linux操作系统,叫做Raspbian,基本用法跟
Debian差不多,程序包也都是用agt-get。用apt-get给Raspberry-Pi装上了一个练习打
字的程序,klavaro,给小孩子学打字很好,然后装了一个Claws Mail,给娃们设置了
一个Gmail账户,用Claws Mail用IMAP访问。最后,纯粹无聊,装了一个USENET
newsreader,tin。

在设置tin的时候,搜索了一下有关的USENET新闻组,居然发现有一个comp.sys.
raspberry-pi新闻组,居然是2013年新建的一个big 8组。印象中big 8很久都没有组建
新的新闻组了,有趣。

如果感兴趣,可以看看raspberry-pi的网站。三十来块钱的Linux计算机,非常适合小
孩子学计算机:

http://www.raspberrypi.org/

另外,Scratch是一个非常适合小孩子学习的编程语言:

http://scratch.mit.edu/

玩计算机,打字非常重要,在Raspberry Pi上有一个很好用的打字练习程序,Klavaro:

http://klavaro.sourceforge.net/en/

如果你不用tin,也不用Agent Newsreader,在Google Groups上也可以看见raspberry-
pi新闻组:comp.sys.raspberry-pi:

http://groups.google.com/forum/#!forum/comp.sys.raspberry-pi

可以给娃设置一个Gmail账户,然后在Raspberry Pi上安装Claws Mail,用IMAP收信。
claws mail可以直接用apt-get安装。Claws Mail的网站:

http://www.claws-mail.org/

当然,如果用字符终端,用alpine也可以收发IMAP邮件,我在Mac上就一直用alpine。
alpine也可以用apt-get拿到:

http://www.washington.edu/alpine/

Sonic Pi音乐编程教程:

http://www.raspberrypi.org/learning/sonic-pi-lessons/

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...