background preloader

Programming\

Facebook Twitter

Maze Generation: Growing Tree algorithm. # An implementation of the "Growing Tree" algorithm. This one is # notable for it's ability to become nearly identical to Prim's # algorithm, or the Recursive Backtracking algorithm, depending on # how the cells are removed from the list that aggregates as the # algorithm runs. # This script allows you to play with those settings by specifying # the mode after the width and height parameters, as "random" (pull # the cell from list at random), "newest" (pull the newest cell), # "middle" (pull the cell from the middle of the list), "oldest" # (pull the oldest cell), or a combination of any of these, e.g # ruby growing-tree.rb 10 10 newest:50,random:50 # That would select the newest cell half of the time, and a random # cell the other half of the time.

. # commands as well, to be chosen in order, by separating them with # semicolons; each subcommand may then be a comma-delimited list of # options to select randomly: # ruby growing-tree.rb 10 10 "newest;newest;oldest,middle" # see what you get! # 1. . # 2. End. Where can i find the lyrics to the plaza sesamo theme song. 1.  Numbers. Now that you've gotten everything setup , let's write a program! Open up your favorite text editor and type in the following: puts 1 + 2 Save your program (yes, that's a program!) As calc.rb (the is what we usually put at the end of programs written in Ruby). Introduction to puts So what's going on in that program? Puts 3 puts simply writes onto the screen whatever comes after it. Integer and Float In most programming languages (and Ruby is no exception) numbers without decimal points are called integers , and numbers with decimal points are usually called floating-point numbers , or more simply, floats Here are some integers: And here are some floats: In practice, most programs don't use floats; only integers.

Simple Arithmetic So far, we've got all the makings of a simple calculator. Puts 1.0 + 2.0 puts 2.0 * 3.0 puts 5.0 - 8.0 puts 9.0 / 2.0 This is what the program returns: (The spaces in the program are not important; they just make the code easier to read.) Mostly the same, right? Ruby Tutorial with Code Samples. Easy Computer Programming. Creating Wizard Dialogs with Java Swing. Oracle Technology Network > Java Software Downloads View All Downloads Top Downloads New Downloads What's New Java in the Cloud: Rapidly develop and deploy Java business applications in the cloud. Start for free. Essential Links Developer Spotlight Java EE—the Most Lightweight Enterprise Framework? Blogs Technologies Contact Us About Oracle Cloud Events Top Actions News Key Topics Oracle Integrated Cloud Applications & Platform Services. Hello Ruby on Rails world | mentalized. There is a newer version of this article updated for Rails 3 To some people Rails have a fairly high learning curve.

And certainly, it’s somewhat higher than, say, PHP. However, in the longer run learning Rails definitely pays off. This is a step by step tutorial to getting over the first hurdle: Creating a “hello world” application in Ruby on Rails. It works in Rails 1.0 assuming you have ruby and rails already installed and working on your system: rails hello cd hello ruby script\generate controller hello Create a file called index.rhtml in app/views/hello, containing “Hello world”. ruby script\server Navigate to in your browser and be greeted with your friendly application: “Hello world” PS: is a lot prettier “Hello world”-ish page. Young Developer Learning Path. Ninite Easy PC Setup - Silent Unattended Install Multiple Programs At Once.

What is a Turing machine? © Copyright B.J. Copeland, July 2000 Turing first described the Turing machine in an article published in 1936, 'On Computable Numbers, with an Application to the Entscheidungsproblem', which appeared in Proceedings of the London Mathematical Society (Series 2, volume 42 (1936-37), pp. 230-265). The head and the tape A Turing machine is an idealised computing device consisting of a read/write head (or 'scanner') with a paper tape passing through it. The tape is divided into squares, each square bearing a single symbol--'0' or '1', for example. This tape is the machine's general purpose storage medium, serving both as the vehicle for input and output and as a working memory for storing the results of intermediate steps of the computation.

The input that is inscribed on the tape before the computation starts must consist of a finite number of symbols. The read/write head is programmable. States The head contains a subdevice that I call the indicator. Atomic operations The instruction table. Lec 1 | MIT 6.00 Introduction to Computer Science and Programming, Fall 2008.