Company:CodeHS

From HandWiki
Short description: Computer science learning platform
CodeHS, Inc.
CodeHS Logo.png
Type of businessPrivate
Founded2012
Headquarters,
Area servedWorldwide
Founder(s)Jeremy Keeshin, Zach Galant[1]
IndustryInternet
ServicesTechnology education
WebsiteCodeHS
CommercialYes
Current statusActive

CodeHS is an interactive online learning platform offering computer science and programming instruction for schools and individual learners. CodeHS is focused on spreading access to and knowledge of computer science by offering online instructional materials supported by remote tutors. In the introductory learning module, students on the site practice computer science concepts and programming skills by giving commands to a dog named Karel. In the most popular course offered, which is similar to the original Karel programming language developed by Richard E. Pattis, Karel the dog must complete various tasks by moving around a grid world, and putting down and picking up tennis balls using only simple commands. Later learning modules teach more advanced concepts using languages like JavaScript, Java, and HTML.[2]

History

CodeHS was founded in 2012 by Jeremy Keeshin and Zach Galant, both Stanford University Computer Science graduates. Keeshin and Galant based CodeHS on their experience as section leaders and teaching assistants for several of Stanford's introductory computer science courses.[3] The company joined the Imagine K12 incubator's third class, launching in October 2012,[4] and its investors include NewSchools Venture Fund, Seven Peaks Ventures, Kapor Capital, Learn Capital, Imagine K12, Marc Bell Ventures, and Lighter Capital.[5] In total, CodeHS has raised $2.9 million as of December 2016.

NBC Education Nation

CodeHS was selected as one of three education technology companies to take part in the 2013 Innovation Challenge, part of the NBC Education Nation initiative.[6] Innovation Nation challenge participants CodeHS, Teachley, and GigaBryte participated in a series of challenges in October 2013, culminating in a live pitch contest broadcast live on NBC during the Education Nation Summit. CodeHS won the Innovation Challenge, earning a $75,000 prize awarded by the Robin Hood Foundation.[7][8]

Hour of Code

During the week of December 9, 2013, CodeHS participated in the nationwide Hour of Code challenge promoted by Code.org. CodeHS was featured as a tutorial for learning JavaScript on the Computer Science Education Week website. Over the course of the week, an estimated 116,648 participants started learning to code for an hour on CodeHS.[9]

Karel the Dog

The first learning module on CodeHS teaches introductory programming concepts by having students give basic commands to Karel the Dog using Karel-specific JavaScript commands.[10] This approach is based on the original Karel programming language developed by Richard E. Pattis and is used in Stanford University's introductory computer science classes. Karel initially knows only a few basic commands: move(); to have Karel move one spot forward, turnLeft(); to have Karel turn left, putBall(); to have Karel put down one tennis ball in the current spot, and takeBall(); to have Karel pick up one tennis ball from the current spot. Karel can be "taught" additional commands by defining new functions composed of these basic commands. The programmer can also use elements like loops and conditionals to control the flow of the program.

After Karel the dog, Tracy the turtle was introduced.

Superkarel

Karel evolves into Superkarel and gains the ability to turnRight() and turnAround().

Example

The following is an example of a simple program to have Karel repeat a series of commands (put down a tennis ball, move, turn left, move, then turn right) three times:

Demonstration of Karel the Dog executing the sample program.
Demonstration of Karel the Dog executing the sample program.
'"`UNIQ--nowiki-0000000A-QINU`"'
  function start() {
      for (var i = 0; i < 3; i++) {
          putBall();
          move();
          turnLeft();
          move();
          turnRight();
      }
  }
  
  function turnRight() {
      turnLeft();
      turnLeft();
      turnLeft();
  }

Reception

CodeHS received significant media coverage upon its launch, including articles in the Forbes , TechCrunch, and Education Week.[11][12][13][14] The site has also been featured on various blogs for its interactive and beginner-focused approach to teaching programming.[15]

See also


References

  1. "Meet the Team - CodeHS". https://codehs.com/team/. 
  2. "Course: Introduction to Computer Science". http://codehs.com/course/1. 
  3. "CodeHS: About". http://codehs.com/about/. 
  4. "Y Combinator Of Education Imagine K12 Launches Its 3rd Cohort, Bringing The Digital Revolution To Classrooms Near You". 29 October 2012. https://techcrunch.com/2012/10/29/imagine-k12-third-graduation/. 
  5. "CodeHS Financials and Metrics". https://craft.co/codehs. 
  6. "Education Nation 2013". NBC News. https://www.nbcnews.com/feature/education-nation/education-nation-2013-summit-n15296. 
  7. "CodeHS Wins Innovation Challenge at Education Nation". Getting Smart. 8 October 2013. http://gettingsmart.com/2013/10/codehs-wins-innovation-challenge-education-nation/. 
  8. "Innovation and Entrepreneurship in Education". NewSchools Venture Fund. http://www.newschools.org/blog/codehs. 
  9. "Computer Science Education Week". http://csedweek.org/learn. 
  10. "What is Karel and What Language does Karel Use?". http://feedback.codehs.com/knowledgebase/articles/330097-what-is-karel-and-what-language-is-karel-in. 
  11. "Tech Startup CodeHS Aims to Bring Computer Literacy to High Schools". https://www.forbes.com/sites/annefield/2012/12/03/tech-startup-codehs-aims-to-bring-computer-literacy-to-high-schools/. 
  12. "STEM Ed: CodeHS Wants To Teach Every American High Schooler How To Code". 27 November 2012. https://techcrunch.com/2012/11/26/codehs/. 
  13. Tomassini, Jason (17 September 2012). "Startup Hopefuls Test Ideas With Educators". Education Week. http://www.edweek.org/ew/articles/2012/09/17/04incubator_ep.h32.html. 
  14. "The Anatomy of an Education-Technology Startup". 17 September 2012. http://www.edweek.org/ew/section/multimedia/incubator-snapshot.html. 
  15. "Top 10 Websites To Learn Coding (Interactively) Online". http://www.hongkiat.com/blog/sites-to-learn-coding-online/. 

External links