Hundreds of Children Programmers Gather for First International Turtleart Day

Total Page:16

File Type:pdf, Size:1020Kb

Hundreds of Children Programmers Gather for First International Turtleart Day Hundreds of Children Programmers Gather for First International TurtleArt Day CAACUPÉ, Paraguay, Octo er 1", 2$!% - Sugar La s)*), educational non,ro-t pro.ider of free and o,en&source learning software for children, is proud to cele rate TurtleArt Day [1] in Caacu,2, Paraguay, with 23" students, their parents, and 77 teachers. They were joined by educators and Sugar de.elo,ers from 8 countries throughout the Americas and as far away as Australia. Additional TurtleArt Days are planned for Peru, Costa Rica, Argentina, and Malaysia; the ne9t will be Octo er 1"th in Monte.ideo, Uruguay4 Caacu,2 has been the focus of a one&to&one learning program run by Paraguay Educa [2] since #$$6. The foundation is acti.e in 3" schools, wor;ing with 3<" teachers and 9,70$ children. The children of Caacu,2 li.e in areas with high po.erty le.els: 6$% of them are street wor;ers and most ha.e at least one parent li.ing a road. Much of the coordination was done by ":.olution@ children, youth leaders in Caacu,2 who attend school in the morning, teach in the afternoon, and on wee;ends su,,ly technical su,,ort to school programs4 TurtleArt is a programming en.ironment with a gra,hical "turtle@ that draws colorful art based on sna,&together elements. Its "low floor@ pro.ides an easy entry point for beginners. It also has @high ceiling@ programming features that challenge the more ad.enturous student. TurtleArtBs roots are in Logo, the first programming language for children, created by Seymour Pa,ert, Cally FeurDeig, Daniel Bo row, and Cynthia Solomon in 1=<7. LogoFs friendly turtle, which relies on instructions from children to mo.e, has ins,ired ada,tations from Logo for the A,,leG II to (egoG MindstormsG, TurtleArt, and Scratch4 An international grou, of TurtleArtists tra.elled to Caacu,2 with the generous su,,ort of BEHA Ean; to launch the first TurtleArt Day. Also partici,ating was EduIamJ [3] attendants, a grou, of de.elo,ers who wor; on o,en&source educational software. Caacu,2Fs partici,ants en5oyed wor;sho,s to create TurtleArt pro5ects; interacti.e programming that in.ol.ed ro ots and sensors; and discussions where educators and children shared their e9,eriences4 @(ogo was designed to be 'mathlandB; TurtleArt is 'artlandB, says Artemis Pa,ert, co&creator of TurtleArt. "It allows us to bring together art and programming. While you do art, you also do ,rogramming, math, and geometry -& the tools you need while focusing on doing art. We ha.e o ser.ed that artists become more comforta le with programming and programmers become more comforta le with art when they use TurtleArt4@ Erian Sil.erman, co&creator of TurtleArt, o ser.ed: "I was amaDed at the passion of the children that came to TurtleArt Day. They were wildly enthusiastic and maintained their focus for si9 hours. They came to the e.ent ha.ing had only rudimentary e9,erience with TurtleArt and they left ha.ing more understanding a out its artistic potential4@ Cecilia RodrKgueD AlcalL, E9ecuti.e Director of Paraguay Educa, said, "The as,ects of TurtleArt Day highlighted by the E.olution team included cultural e9change between the children and the international community, and children teaching each other, pursuing their personal interests, including pro5ects in.ol.ing physical&world interaction4@ Claudia Urrea, an educator and mem er of the Sugar La s O.ersight Board, said, "Cith TurtleArt, the children en5oyed programming the ro ots and using sensors, creating artistic images, engaging in the concrete use of mathematical conce,ts such as varia les and random num ers, realiDing how quic;ly the pace of their learning e.ol.ed, and disco.ering the multi,le a,,lica ilities of com,utation4@ Andres Aguirre of the Butia pro5ect, a ro ot programmed with TurtleArt, said, “:.en though the children had limited time to use the ro ots, they were a le to e9,eriment with some high&le.el ,rogramming conce,ts such as conditionals and control structures4O 0!] htt,://turtleartday.org 0#] htt,>PP///4,araguayeduca.org 0%] htt,://cei al5am.org A out Sugar La sG: Sugar La s, a volunteer&dri.en, non,ro-t organiDation, is a mem er pro5ect of the Software Freedom Conser.ancy. Sugar La s coordinates volunteers around the world who are passionate a out pro.iding educational o,,ortunities through the Sugar Learning Platform. Sugar is installed on more than three million com,uters. Sugar La s is su,,orted by donations and is see;ing funding to accelerate de.elo,ment. For more information, please visit htt,://www.sugarla s.orgP,ress or contact pr@sugarla s.org4 'ugar La sG is a registered trademar; of the Software Freedom Conser.ancy. Other names are trademar;s of their res,ecti.e owners4 RRR .
Recommended publications
  • Python 3 – Turtle Graphics Today's Lecture Logo and Turtle Graphics
    Today’s lecture The Turtle graphics package Brief history Basic commands Drawing shapes on screen Python 3 – Turtle graphics Lecture 25 – COMPSCI111/111G SS 2018 1 2 Logo and Turtle graphics The Turtle package In 1967, Seymour Papert and Wally Feurzeig created an Some functions are part of Python’s core libraries, in interpretive programming language called Logo. other words they are ‘built-in’ Papert added commands to Logo so that he could control a print() turtle robot, which drew shaped on paper, from his computer input() Turtle graphics is now part of Python float() Using the Turtle involves instructing the turtle to move on the Other functions need to be imported into your screen and draw lines to create the desired shape Python program The turtle module needs to be imported at the start of any Python program that uses it: import turtle 3 4 Basic Turtle commands Turtle example Using the Python interpreter in IDLE to demonstrate how to There are four basic turtle commands use Turtle graphics turtle.forward(x) First, import the turtle package Moves turtle forward in direction it is facing by x steps turtle.back(x) Moves turtle backward from its facing direction by x steps >>> import turtle turtle.left(x) >>> Turns the turtle x degrees counterclockwise turtle.right(x) Turns the turtle x degrees clockwise 5 6 Turtle example Algorithm We are going to draw a right-angled triangle 90° Important information: The turtle appears as an icon draw a line x-axis (0,0) Initial position: (0, 0) 180° 0° Turn 90 degrees left (anti-clockwise) Initial direction: East (0°) Colour: black draw a line Line width: 1 pixel y-axis Turn 135 degrees left (anti-clockwise) Pen: down (ready to draw) 270° 7 8 draw a line 90degree Turtle example Turtle example Initial direction: 0 Step 1: Draw a line Note how the turtle is now facing upward after being turned 90 degrees left >>> import turtle >>> import turtle >>> >>> >>> turtle.forward(200) >>> turtle.forward(200) >>> >>> turtle.left(90) 1.
    [Show full text]
  • An Exploration of Artistic and Technological Symmetry
    An Exploration of Artistic and Technological Symmetry Artemis Papert Abstract In this interview, biologist, artist, and shiatsu healer Artemis Papert describes how computational thinking can help people organize their thoughts in a more formal way. She discusses TurtleArt, a software that allows both children and adults to create two-dimensional static art images using geometry and coding as a medium. TurtleArt not only bridges the worlds of math and art, but is also easy to learn. She concludes by reading an excerpt from the article, “Teaching Children Thinking”— written in 1971 by her father Seymour Papert—as a still relevant starting point for where technology is heading. You’re known as an artist and a healer, can you tell us how your career unfolded and how these two areas of talent emerged? I’ve always liked drawing and painting since ever I can remember. I might have gone to art school had I been born in a different family, but I was born in a family of academics. So, it felt like academia was the thing to do. My mother worked with Jean Piaget and my father was a mathematician who also came to work with Jean Piaget because Piaget wanted to understand how children understand numbers. And he thought it would be a good thing to have mathematicians in his team—so that’s how my parents met and how I came along. I always wanted to become a biologist. Back then, I was young and naïve and wanted to save the Antarctica, and the Rain Forest … My career as a biologist didn’t quite evolve as I had hoped it would.
    [Show full text]
  • Integrating Language Arts and Computational Thinking: A
    Integrating Language Arts and Computational Thinking: A Reflection on the Importance of Gossip by Glen Bull, University of Virginia According to Cynthia Solomon, Seymour Papert went to Europe in the summer of 1966 and returned with the initial specifications for the computing language Logo (Personal Communication, 2018). Logo is notable as the first computing language designed specifically for children. Solomon and Papert collaborated with Wally Feurzeig to develop an initial implementation of the computing language, which they began testing with children in local schools the following year. At the time, Papert was codirector of the MIT Artificial Intelligence Laboratory. Artificial intelligence (AI) is the science of creating computer programs that can replicate the performance of humans. An important aspect of AI is interpretation of human language. Therefore, not surprisingly, an important aspect of Logo is its capability to process words and sentences. Feurzeig originated the name of the language, Logo, the Greek word for word. Papert summarized this work in Mindstorms: Children, Computers, and Powerful Ideas, published in 1980. Papert introduced the term “computational thinking” in Mindstorms. He also described the use of Logo by middle school students to generate “computer poetry.” The students created syntactic structures that generated sentences in the process of exploring the way in which language works. Background Like many others, I was influenced by the vision that Papert outlined in Mindstorms. Texas Instruments donated 10 TI 99/4 microcomputers with Logo that I used to offer an initial course, Teaching With Logo, at the University of Virginia in fall 1980. The TI microcomputer had a fraction of the power of today’s personal computers.
    [Show full text]
  • Creating an Adventure Game with an Embedded Novice Programming Environment for Learning LOGO
    Creating an Adventure Game with an Embedded Novice Programming Environment for Learning LOGO Ioannis Sarlis1, Dimitrios Kotsifakos2, Dr. Panagiotis Zaharias3 1MSc, Med, IT Teacher, [email protected] 2 MSc, PhD (candidate), Electronic Engineering, VET, University of Piraeus, [email protected] 3Adjunct Faculty Member, Open University of Cyprus, [email protected] Abstract This article presents the construction of a game that includes a Novice Programming Environment for high school students and is to be used for teaching LOGO programming language. This programming environment is a game that is designed, implemented and tested specifically for junior high-school students for them to acquire basic programming skills. This game is called "Super Turtle Adventures" and is based on Digital Game-Based Learning (DGBL). It helps students to learn LOGO Programming Language, by creating various challenges and puzzles, which they must solve using LOGO code. Students pass from one level to the next by solving these puzzles. The benefit for students playing this game is, on the one hand, the improvement of their programming skills on the other that they learn to respect the environment through recycling. The article treats programming as a new digital skill that needs to be mastered by high school students. The article concludes that programming should be taught using DGBL in schools and suggests "Super Turtle Adventures" game as a Digital Game-Based Learning application for teaching LOGO in schools. Keywords: LOGO Programming Language, Teaching Programming, Novice Programming Environment (NPE), Digital Game-Based Learning (DGBL) 1. Digital Game-Based Learning (DGBL) Digital Game-Based Learning (DGBL) is a teaching approach that involves the use of digital games into teaching, in order to learn, explore and/or practice some form of training material.
    [Show full text]
  • Bilişim Teknolojilerinin Stratejik Rekabet
    T.C. SELÇUK ÜN İVERS İTES İ SOSYAL B İLİMLER ENST İTÜSÜ İŞ LETME ANA B İLİM DALI BİLİŞİ M TEKNOLOJ İLER İNİN STRATEJ İK REKABET ÜSTÜNLÜ ĞÜ SA ĞLANMASINDA ÜRET İM SÜREC İ TASARIMINA ETK İSİNİN UZMAN S İSTEM YAKLA ŞIMI İLE ANAL İZİ VE TÜRK ELEKTRON İK SANAY İ UYGULAMASI DOKTORA TEZ İ DANI ŞMAN PROF.DR. MAHMUT TEK İN HAZIRLAYAN MEHMET YILDIZ 004127001002 KONYA-2006 İÇİNDEK İLER İÇİNDEK İLER ................................................................................................. ii ŞEK İLLER LİSTES İ .........................................................................................v TABLOLAR LİSTES İ ......................................................................................vi KISALTMALAR............................................................................................. vii GİRİŞ ..................................................................................................................1 BİRİNC İ BÖLÜM BİLİŞİ M TEKNOLOJ İLER İ, REKABET ÜSTÜNLÜĞÜ VE ÜRET İM SÜREC İ 1.1. Veri, Bilgi ve Üst Bilgi Kavramları................................................................3 1.2. Bilgi Yönetimi...............................................................................................8 1.2.1. Stratejik Bilgi Yönetimi ......................................................................13 1.3. Teknoloji Kavramı.......................................................................................17 1.3.1. Teknoloji Yönetimi .............................................................................21
    [Show full text]
  • Artificial Intelligence, Education and Music: the Use of Artificial Intelligence to Encourage and Facilitate Music Composition by Novices
    DOCUMENT RESUME ED 329 452 SO 021 063 AUTHOR Holland, Simon TITLE Artificial Intelligence, Education and Music: The Use of Artificial Intelligence To Encourage and Facilitate Music Composition by Novices. INSTITUTION Open Univ., Walton, Bletchley, Bucks (England). Inst. of Educational Technology. REPORT NO CITE-88 PUB DATE Jul 89 NOTE 305p. PUB TYPE Reports - Descriptive (141) EDRS PRICE MF01/PC13 Plus Postage. DESCRIPTORS *Artificial Intelligence; Cognitive Processes; Cognitive Psychology; Computer Science; Computer Uses in Education; Educational Research; *Educational Technology; Educational Theories; *Musical Composition; *Music Education; Music Theory IDENTIFIERS Harmony ABSTRACT The goal of this project was to find ways of using artificial intelligence to encourage and aid music composition by musical novices, particularly those without traditional musical skills. Two complementary approaches are presented. In the first approach, Harmony Space, a new kind of direct manipulation toolfor music, is described. Two recent cognitive theories of harmony demonstrated how to design Harmony Space, with the expressivity to allow novices to sketch, analyze, modify, and compose harmonic sequences simply and clearly by moving two-dimensional patternson a computer screen linked to a synthesizer. An investigation witha small number of subjects showed that Harmony Space considerably reduces the prerequisites required for novices to learn about, sketch, analyze, and experiment with harmony--activities that would normally be very difficult without considerable theoreticalknowledge or instrumental skill. The second approach described is a knowledge-based tutoring system to help novices usean interface to compose chord sequences; this system is in the developmental stage. It is argued that traditional, remedial intelligenttutoring systems approaches were inadequate for tutoring in domains thatrequire open-ended thinking.
    [Show full text]
  • Chapter 14. a Half Century Perspective on the Role of Computers in Learning and Teaching
    Music Learning with Massive Open Online Courses (MOOCs) 213 L. Steels (Ed.) © 2015 The authors and IOS Press. This article is published online with Open Access by IOS Press and distributed under the terms of the Creative Commons Attribution License. doi:10.3233/978-1-61499-593-7-213 Chapter 14. A Half Century Perspective On The Role Of Computers In Learning And Teaching Ken KAHN University of Oxford Abstract. For more than fifty years people have been exploring how computers might enhance learning and teaching. The malleable nature of computers has en- abled suggestions that a computer can act like flash cards, personal tutors, text- books, reference books, virtual laboratories, quizzes, virtual spaces, lecture halls, and study groups. Perhaps the most radical suggestion has been to see the com- puter as something learners can creatively mold into something personally mean- ingful that is dynamic, interactive, and shared. And that the process of constructing such computational artefacts is rich in learning opportunities. These range from a deeper understanding of the subject matter of the constructions to high-level skills in thinking and problem solving. Keywords. Constructionism, technology-enhanced learning, Seymour Papert, history of computers and education Introduction The idea that computers can play an important role in learning and teaching is over fifty years old. This chapter describes the history of attempts to use computers to support and enhance learning from a personal perspective. Instead of a complete history it attempts to highlight groundbreaking and significant ideas and computer systems that have led to today’s efforts to provide technology-enhanced learning.
    [Show full text]
  • A LOGO-LIKE INTERFACE for MICROWORLDS and SIMULATIONS for PHYSICS TEACHING in SECOND LIFE Renato P
    TATI - A LOGO-LIKE INTERFACE FOR MICROWORLDS AND SIMULATIONS FOR PHYSICS TEACHING IN SECOND LIFE Renato P. dos Santos 1 1 ULBRA - Brazilian Lutheran University/PPGECIM Abstract Student difficulties in learning Physics have been thoroughly discussed in the scientific literature. Of particular interest to this work, is their general difficulty in distinguishing between the concepts of velocity and acceleration. Already in 1980, Papert discusses how students trying to develop Newtonian thinking about motion have no direct experience of pure Newtonian objects; he complained that schools teach Newtonian motion by manipulating equations rather than by manipulating the Newtonian objects themselves, what would be possible in a ‘physics microworld’. Second Life (SL) is a huge simulation of an Earth-like world and can be used as a platform for building immersive virtual simulations in which the student can experience alternative physical descriptions in a way that is completely impossible in real world. On the other hand, SL and its scripting language have a remarkable learning curve that discourages most teachers at using it as an environment for educational computer simulations and microworlds. The objective of this work is to describe TATI, a textual interface which, through TATILogo, an accessible Logo language extension, allows the generation of various physics microworlds in Second Life, containing different types of objects that follow different physical laws, providing a learning path into Newtonian Physics. Keywords : Second Life, Logo, physics microworlds, physics teaching, computer simulations INTRODUCTION Student difficulties in learning Physics have been thoroughly discussed and there is an extensive scientific literature on the subject, accumulated since the 70's.
    [Show full text]
  • Istoria Matematicii
    IstoriaMatematicii file:///C:/Programele%20Mele/IstoriaMatematicii/IstoriaMatematicii.html Istoria Matematicii Cuprins: Introducere Numere și reprezentarea lor Aritmetică Algebră Geometrie Analiză matematică Logică Matematică aplicată Matematică computațională Programarea calculatoarelor Repere istorice Introducere Din totdeauna, matematica a făcut apanajul potentaților vremii, a fost un instrument cu ajutorul căruia oamenii și-au măsurat bogăția, strălucirea sau puterea. Acest material nu își propune o înșiruire de date istorice sau nume ale unor matematicieni aranjate cronologic, ci mai degrabă o călătorie în timp prin universul matematicii, pentru a redescoperi ordinea în care s-au formulat principalele probleme și soluțiile lor. Dintre personalitățile matematicii, atenția se va abate mai mult asupra celor care au avut ceva de socotit, decât asupra acelora care au făcut socotelile. Oricare dintre realizările lor poate fi astăzi un bun exercițiu pentru scrie proiectul cu mijloace moderne, sau pentru calculul necesarului. Cel care poate alcătui proiectul și caietul de sarcini pentru Piramida lui Keops, sau pentru Zidul Chinezesc, va putea proiecta mai ușor o locuință modernă sau o anexă. Poate fi un exercițiu bun și calculația pentru un proiect ce utilizează doar tehnologia și resursele existente la vremea respectivă. Fiecare dintre subiectele propuse poate face subiectul unei disertații, al unui eseu sau al unei ore de curs facultativ. Nedorind a amalgama prea mult noțiunile și așa destul de complexe, șirul povestirii este deșirat în mai multe capitole, structurate pentru diferitele ramuri ale matematicii. Textul nu are caracter didactic dar poate inspira viitorii profesori de matematică. Este bun un pretext pentru o călătorie în timp, un fel de temă de casă a unui elev mai întârziat ca vârstă.
    [Show full text]
  • Introducing Computational Thinking in K-12 Education: Historical, Epistemological, Pedagogical, Cognitive, and Affective Aspects Michael Lodi
    Introducing Computational Thinking in K-12 Education: Historical, Epistemological, Pedagogical, Cognitive, and Affective Aspects Michael Lodi To cite this version: Michael Lodi. Introducing Computational Thinking in K-12 Education: Historical, Epistemological, Pedagogical, Cognitive, and Affective Aspects. Computers and Society [cs.CY]. Dipartimento diIn- formatica - Scienza e Ingegneria, Alma Mater Studiorum - Università di Bologna, 2020. English. tel-02981951 HAL Id: tel-02981951 https://hal.inria.fr/tel-02981951 Submitted on 28 Oct 2020 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Copyright Alma Mater Studiorum · Universit`adi Bologna PhD program in COMPUTER SCIENCE AND ENGINEERING INTRODUCING COMPUTATIONAL THINKING IN K-12 EDUCATION: HISTORICAL, EPISTEMOLOGICAL, PEDAGOGICAL, COGNITIVE, AND AFFECTIVE ASPECTS Presented by: MICHAEL LODI Dep. of Computer Science and Engineering INRIA Focus team PhD program coordinator: Supervisor: Prof. DAVIDE SANGIORGI Prof.SIMONE MARTINI © Michael Lodi, 2020 Licence: Unless otherwise authorized by the author, the thesis may be freely consulted and a copy may be saved and printed for strictly personal study, research and teaching purposes, with express prohibition of any direct or indirect commercial use. All other rights on the material are reserved. This is an authors' pre-print version of the work.
    [Show full text]
  • End-User Programming End-User
    Empowering Users One of the key features of computers is InvitedInvited ResearchResearch Overview:Overview: programmability Perform the specific actions desired End-User Programming But only if know how Spreadsheets enable people to define their own computations Brad Myers, Andrew Ko, and Margaret Burnett Invented late 1970’s Human Computer School of Elec. Engr. One of the key reasons InteractionInteraction InstituteInstitute & & ComputerComputer ScienceScience personal computers became Carnegie Mellon Univ. Oregon State Univ. popular for business How to generalize to other areas? Copyright © 2006 – Brad A. Myers Copyright © 2006 - Brad A. Myers, CMU 2 Malleability is Key Today Definitions Hottest new thing on the web is end-user ““Program”Program” authoring ‘‘A‘‘A setset ofof statementsstatements thatthat cancan bebe submittedsubmitted asas aa unit to some computer system and used to Blogs direct the behavior of that system’’ Flickr – Oxford Dictionary of Computing MySpace ““Programming”Programming” Key is personalization ‘‘The‘‘The processprocess ofof transformingtransforming aa mentalmental planplan ofof desired actions for a computer into a End users shape the artifact representation that can be understood by the Raises expectations for the level of computer’’ – Jean-Michel Hoc and Anh Nguyen-Xuan personalization, customization generally Copyright © 2006 - Brad A. Myers, CMU 3 Copyright © 2006 - Brad A. Myers, CMU 4 Definitions, cont. Definitions, cont. ““ProfessionalProfessional ProgrammerProgrammer”” ““End-UserEnd-User
    [Show full text]
  • Implementation: the Interactive 'Whole Story"(Susan B
    DOCUMENT RESUME ED 381 135 IR 017 057 TITLE Joining Forces: Spreading SuccessfulStrategies. Proceedings of the Invitational Conference on Systemic Reform (Washington, D.C., February23-25, 1995). INSTITUTION Department of Education, Washington,DC.; National Science Foundation, Washington, D.C. PUB' DATE 95 NOTE 100p. PUB TYPE Collected Works Conference Proceedings (021) EDRS PRICE MFOI/PC04 Plus Postage. DESCRIPTORS Change Strategies; *Educational Change;*Educational Improvement; Educational Innovation;Educational Technology; Elementary Secondary Education; Excellence in Education; Exhibits;*Mathematics Education; *Science Education; Tech Prep; TwoYear Colleges; Workshops IDENTIFIERS *Scaling (Maximum Dissemination) ABSTRACT This briefing book outlines programactivities and contains a set of briefing papers which provide abackground for the conference. The conference agenda is in thefirst section, followed by two sections previewing each of theissues and theme conference sessions, including an overview of each topic,specific issues involved, the conference presentation, and presenters.The fourth section outlines the 47 workshops offered at theconference, and section five describes 44 conference exhibits. Thefinal section contains five briefing papers: "What Are the Challengesto 'Scaling Up' Reform?" (Stephen P. Klein; and others);"Workforce Issues in Spreading Excellence in Science and Mathematics"(Ray Marshall); "Tech Prep: A Business Perspective" (Carver C.Gayton); "Full-scale Implementation: The Interactive 'Whole Story"(Susan B. Millar);
    [Show full text]