cyber and many others are using Hackety Hack to learn how to code.

Hackety Hack is a free program for Windows, Mac OS X and Linux that can teach you how to make games, applications and more and share those programs with your friends. You can ask other budding programmers questions and follow them to see what code they're working on through the Hackety Hack website.

Sign up Learn More

hhshowcase_basic by cyber

#Image, only with correct name.
Shoes.app :title => "Shoes ShowCase",
 :width =>400, :height =>600 do
stack :margin =>50 do
image "http://hacketyhack.heroku.com/images/logo.png"
  end
stack do
caption "Hackety Hack showcase:"
para link("Shoes-Website",:click => "http://shoesrb.com/")
para link("Hackety Hack-website",:click => "http://hackety-hack.com/")
@p = progress :width =>0.6
animate do |i|
@p.fraction = (i % 100) / 100.0
end
para link("Created By: Cyber", :click =>"http://hackety-hack.com/hackers/cyber")
para "(C) Programmers 2010"
button "Close" do
close()  
  end
  end
  end