Gifted Bulletin Board

Welcome to the Gifted Issues Discussion Forum.

We invite you to share your experiences and to post information about advocacy, research and other gifted education issues on this free public discussion forum.
CLICK HERE to Log In. Click here for the Board Rules.

Links


Learn about Davidson Academy Online - for profoundly gifted students living anywhere in the U.S. & Canada.

The Davidson Institute is a national nonprofit dedicated to supporting profoundly gifted students through the following programs:

  • Fellows Scholarship
  • Young Scholars
  • Davidson Academy
  • THINK Summer Institute

  • Subscribe to the Davidson Institute's eNews-Update Newsletter >

    Free Gifted Resources & Guides >

    Who's Online Now
    0 members (), 313 guests, and 14 robots.
    Key: Admin, Global Mod, Mod
    Newest Members
    Emerson Wong, Markas, HarryKevin91, Gingtto, SusanRoth
    11,429 Registered Users
    May
    S M T W T F S
    1 2 3 4
    5 6 7 8 9 10 11
    12 13 14 15 16 17 18
    19 20 21 22 23 24 25
    26 27 28 29 30 31
    Previous Thread
    Next Thread
    Print Thread
    Page 3 of 3 1 2 3
    Joined: Jul 2012
    Posts: 1,478
    Z
    Member
    Offline
    Member
    Z
    Joined: Jul 2012
    Posts: 1,478
    Thanks for the heads up; code.org looks like a nice aggregator.

    Codea for iPad development looks interesting, and some other nice bits there. Hopefully they don't overpopularize the field and undermine DS's future earning potential. smile

    Joined: Mar 2013
    Posts: 161
    Member
    Offline
    Member
    Joined: Mar 2013
    Posts: 161
    I'm looking for something very introductory for my DD10 who loves Minecraft but has shown no interest in computers or programming.

    Have any of you heard of or used CodeSpells?
    https://sites.google.com/a/eng.ucsd.edu/codespells/home

    I was reading this bit of PR, and it seems like something that might catch her interest.
    http://ucsdnews.ucsd.edu/pressrelea...velop_first_person_player_video_game_tha

    This thread seemed to be the best place to ask for some opinions.

    Joined: Apr 2012
    Posts: 36
    U
    Junior Member
    Offline
    Junior Member
    U
    Joined: Apr 2012
    Posts: 36
    My DS9 has gotten into Codeacademy recently. When I was a kid, I had a book with a bunch of simple BASIC computer programs you could type in and play around with. It was called "What to do after you hit 'Return'".

    I'd love to get him a book like that for Christmas (but ideally for a modern language yet beginner friendly language like Python or Javascript). Any ideas?


    Joined: Mar 2013
    Posts: 1,453
    Member
    Offline
    Member
    Joined: Mar 2013
    Posts: 1,453
    Originally Posted by SiaSL
    Well, yes. But if you are writing web apps it is pretty much the name of the game.


    It was before Grails, at least. Never liked it myself, frankly.

    For learning variables, flow of control and modularity almost any computer language will do the job. I have always liked the parsimony of C but each to their own.

    I think that Code Academy looks like an interesting site - thanks Bostonian.


    Become what you are
    Joined: Mar 2013
    Posts: 1,489
    B
    Member
    Offline
    Member
    B
    Joined: Mar 2013
    Posts: 1,489
    JavaScript is Not the same as Java the programming language. Java is a fine place to start learning to program, there is not need to start with C. In fact it's the language many universities use as a first language.

    However JavaScript is a scripting language, used in HTML to add programming functionality to web-pages. They are NOT the same thing and learning one won't help learning the other.

    Joined: Mar 2013
    Posts: 1,489
    B
    Member
    Offline
    Member
    B
    Joined: Mar 2013
    Posts: 1,489
    Originally Posted by Bostonian
    Originally Posted by Bostonian
    Codecademy http://www.codecademy.com is a free site for learning to program in JavaScript. You do the programming exercises online -- there is nothing to download.

    Now Python has been added http://www.codecademy.com/tracks/python . AOPS also offers Python courses, for a fee. For the adventurous, try Haskell http://tryhaskell.org/ . I found it interesting but already have some programming experience.

    Python is a great choice for a first programming language. There isn't as much ramp up learning all the nitty gritty details. It is in fact the language first introduced to Engineers at Berkley who have had no previous programming experience.

    Joined: Jul 2012
    Posts: 1,478
    Z
    Member
    Offline
    Member
    Z
    Joined: Jul 2012
    Posts: 1,478
    By the way this week is The Hour of Code... The idea being everyone should take an hour this week to learn a bit of coding. Many of the various code learning sites are offering free tutorials. Here's a good jump off point:
    http://csedweek.org/

    Even parents with no experience might like to try the Start link on that page and follow the first course which has video tutorials and uses a drag and drop language to solve tasks.

    Joined: Dec 2012
    Posts: 45
    P
    Junior Member
    Offline
    Junior Member
    P
    Joined: Dec 2012
    Posts: 45
    Originally Posted by Zen Scanner
    By the way this week is The Hour of Code... The idea being everyone should take an hour this week to learn a bit of coding. Many of the various code learning sites are offering free tutorials. Here's a good jump off point:
    http://csedweek.org/
    Thanks for posting this Zen Scanner!

    DS7 has already done some basic coding before, but he just finished the Hour of Code a few minutes ago and really enjoyed it. It re-ignited his interest in learning to code. I know many of our kids are interested in learning to code, so I wanted to post again to make sure everyone knows about the Hour of Code Week!

    Pi22

    Joined: Mar 2014
    Posts: 67
    L
    LRS Offline
    Member
    Offline
    Member
    L
    Joined: Mar 2014
    Posts: 67
    My son is currently doing codecademy. He is 8 and homeschooled. He chose to learn Python even though I thought he would want to do javascript (because of Minecraft?)
    He really did not want to learn another visual block language, he wants to Type it in!

    Anyway, I think it seems well designed. We just signed up and jumped in! He got his first two badges...

    Joined: Oct 2011
    Posts: 2,856
    Member
    Offline
    Member
    Joined: Oct 2011
    Posts: 2,856
    FYI, Minecraft is in Java, not Javascript. As mentioned before, they're very different languages entirely.

    Javascript, originally developed by Netscape (now Mozilla), can basically be thought of as an add-on to HTML. It only runs in a browser, and it adds limited functionality to web pages.

    Java, originally developed by Sun (acquired by Oracle), is a full-function, object-oriented programming language that can be used to write entire applications from the ground up. It runs within its own java virtual machine (JVM), which abstracts the application code from the OS and hardware of the machine it's running on. This makes any Java application fully portable from one machine type to another with no changes to the program code. You just have to install the correct JVM, and it interprets the program calls into the appropriate system calls.

    Java is a pretty complicated beast to tackle, and as a first programming language, I'd recommend your DS's choice of Python over it.

    And big kudos to him for deciding to learn to actually write programs!

    Page 3 of 3 1 2 3

    Moderated by  M-Moderator 

    Link Copied to Clipboard
    Recent Posts
    Beyond IQ: The consequences of ignoring talent
    by indigo - 05/01/24 05:21 PM
    Technology may replace 40% of jobs in 15 years
    by indigo - 04/30/24 12:27 AM
    NAGC Tip Sheets
    by indigo - 04/29/24 08:36 AM
    Employers less likely to hire from IVYs
    by Wren - 04/29/24 03:43 AM
    Testing with accommodations
    by blackcat - 04/17/24 08:15 AM
    Powered by UBB.threads™ PHP Forum Software 7.7.5