39:05
How to write a Turing-Complete Programming Language in 40 minutes
Using Ruby and my parser-generator gem "Babel Bridge" I'll show you how to write a Turing-...
published: 19 Sep 2012
author: Shane Brinkman-Davis
How to write a Turing-Complete Programming Language in 40 minutes
How to write a Turing-Complete Programming Language in 40 minutes
Using Ruby and my parser-generator gem "Babel Bridge" I'll show you how to write a Turing-Complete programming language in 40 minutes and 70 lines of Ruby co...- published: 19 Sep 2012
- views: 891
- author: Shane Brinkman-Davis
5:09
A Turing Machine - Overview
A Turing machine is a math concept that show that a few simple rules can be used to solve ...
published: 07 Mar 2010
author: Mike Davey
A Turing Machine - Overview
A Turing Machine - Overview
A Turing machine is a math concept that show that a few simple rules can be used to solve any computable computation. It is the basis for all of today's comp...- published: 07 Mar 2010
- views: 399965
- author: Mike Davey
66:10
Barbara Liskov: Programming the Turing Machine
Barbara Liskov, Professor of Electrical Engineering and Computer Science at the Massachuse...
published: 24 Aug 2012
author: princetonacademics
Barbara Liskov: Programming the Turing Machine
Barbara Liskov: Programming the Turing Machine
Barbara Liskov, Professor of Electrical Engineering and Computer Science at the Massachusetts Institute of Technology, discusses "Programming the Turing Mach...- published: 24 Aug 2012
- views: 1041
- author: princetonacademics
33:51
Turing Complete User [30c3]
Turing Complete User
What can be done to protect the term, the notion and the existence of...
published: 29 Dec 2013
Turing Complete User [30c3]
Turing Complete User [30c3]
Turing Complete User What can be done to protect the term, the notion and the existence of the Users? With the disappearance of the computer, something else is silently becoming invisible as well â the User. Users are disappearing as both phenomena and term, and this development is either unnoticed or accepted as progress â an evolutionary step. Though the Invisible User is more of an issue than an Invisible Computer. Speaker: olia lialina EventID: 5547 Event: 30th Chaos Communication Congress [30c3] by the Chaos Computer Club [CCC] Location: Congress Centrum Hamburg (CCH); Am Dammtor; Marseiller Straße; 20355 Hamburg; Germany Language: english Begin: Sat, 12/28/2013 17:30:00 +01:00 Lizenz: CC-by- published: 29 Dec 2013
- views: 668
1:44
wiresq - turing complete sequencer for iphone
http://heavyephemera.com/wiresq the first turing complete sequencer for iphone. buy now on...
published: 27 Oct 2010
author: Jonathan Brodsky
wiresq - turing complete sequencer for iphone
wiresq - turing complete sequencer for iphone
http://heavyephemera.com/wiresq the first turing complete sequencer for iphone. buy now on the app store: itunes.apple.com/us/app/wiresq/id399289681?mt=8.- published: 27 Oct 2010
- views: 3333
- author: Jonathan Brodsky
1:00
Turing complete Tetris sed script/program/game
A tetris like game written in sed AND its Turing complete. http://uuner.doslash.org/forfun...
published: 09 Oct 2008
author: xmlisnotaprotocol
Turing complete Tetris sed script/program/game
Turing complete Tetris sed script/program/game
A tetris like game written in sed AND its Turing complete. http://uuner.doslash.org/forfun/sedtris.sed Props:- # sedtris.sed - sed tetris # 26th of May, 2008...- published: 09 Oct 2008
- views: 6735
- author: xmlisnotaprotocol
1:07
CS:GO bots are turing complete
here we go!...
published: 19 Sep 2012
author: hamaaaaaaaa
CS:GO bots are turing complete
12:50
Universal Turing Machine implemented in Minecraft redstone logic
This is a Universal Turing Machine implemented in Minecraft. The video is running at 60 ti...
published: 27 Aug 2011
author: neonsignal
Universal Turing Machine implemented in Minecraft redstone logic
Universal Turing Machine implemented in Minecraft redstone logic
This is a Universal Turing Machine implemented in Minecraft. The video is running at 60 times normal speed, in other words, each minute is an hour of run tim...- published: 27 Aug 2011
- views: 30445
- author: neonsignal
17:25
Complete powerpoint presentation - A Tribute to Alan Turing
This talk was given by Prof YB Yeung in the HK International Computer Conference on 21 Nov...
published: 27 Nov 2012
author: yinfun2
Complete powerpoint presentation - A Tribute to Alan Turing
Complete powerpoint presentation - A Tribute to Alan Turing
This talk was given by Prof YB Yeung in the HK International Computer Conference on 21 Nov 2012. The conference was organised by the Hong Kong Computer Socie...- published: 27 Nov 2012
- views: 145
- author: yinfun2
0:41
Game of Life - Universal Turing Machine
This is a Universal Turing Machine implemented in Conway's Game of Life designed by Paul R...
published: 05 Feb 2012
author: TheCommuator
Game of Life - Universal Turing Machine
Game of Life - Universal Turing Machine
This is a Universal Turing Machine implemented in Conway's Game of Life designed by Paul Rendell in 2010.- published: 05 Feb 2012
- views: 8380
- author: TheCommuator
18:22
rant on accounting and turing completeness
let us offer the hypothesis that "accounting" is Turing complete, in the sense that Java o...
published: 31 Jan 2013
author: richard mullins
rant on accounting and turing completeness
rant on accounting and turing completeness
let us offer the hypothesis that "accounting" is Turing complete, in the sense that Java or Basic is Turing complete, i.e. can be used to do any computation ...- published: 31 Jan 2013
- views: 137
- author: richard mullins
14:52
Stephen's (mostly) Finished Minecraft Computer
Well, my computer is nearly done. I have a couple minor things to implement, but I'm happy...
published: 28 Jan 2011
author: Science With Stephen
Stephen's (mostly) Finished Minecraft Computer
Stephen's (mostly) Finished Minecraft Computer
Well, my computer is nearly done. I have a couple minor things to implement, but I'm happy with it so far.- published: 28 Jan 2011
- views: 62083
- author: Science With Stephen
44:12
Leveraging Scala's Typesystem for Better Code
Scala's type system is extremely powerful (actually, it's Turing complete). By understandi...
published: 14 Aug 2013
Leveraging Scala's Typesystem for Better Code
Leveraging Scala's Typesystem for Better Code
Scala's type system is extremely powerful (actually, it's Turing complete). By understanding the tight interplay between implicit conversions and the type system, we can write very concise, yet generic and powerful code. For example, while in Java collecting all int values from both Map[String,List[Integer]] and Map[String,Map[String,Integer]] (had to modify angular brackets due to YouTube limits -ed) requires two separate functions or reflection based code which isn't type safe, in Scala it is quite easy to write a single piece of type safe code to accomplish this for arbitrary nestings of Map and List. In this talk we will show how to write Scala code able to leverage the information given by the type signatures, both for better APIs and for writing less code. A talk given at Scalapeño 2013 by Ofer Ron, graciously hosted at Google's Campus Tel-Aviv.- published: 14 Aug 2013
- views: 86
10:16
Some Theory of Computation for dan91709
The following is effectively part 2 of my last video http://www.youtube.com/watch?v=MGRhqX...
published: 16 Apr 2012
author: Daniel Page
Some Theory of Computation for dan91709
Some Theory of Computation for dan91709
The following is effectively part 2 of my last video http://www.youtube.com/watch?v=MGRhqXN9ul4 , where this is a video discussing the faulty reasoning of da...- published: 16 Apr 2012
- views: 178
- author: Daniel Page
Youtube results:
5:18
Turing Machines
How a Turing Machine works....
published: 27 Mar 2012
author: pgcap glasgow
Turing Machines
Turing Machines
How a Turing Machine works.- published: 27 Mar 2012
- views: 1256
- author: pgcap glasgow
4:36
gold standard for requirements statement for a system
gold standards for requirements statement: 1. make a runnable requirements statement that ...
published: 18 Nov 2012
author: richard mullins
gold standard for requirements statement for a system
gold standard for requirements statement for a system
gold standards for requirements statement: 1. make a runnable requirements statement that can be easily implemented using Prolog or 2. make a running model, ...- published: 18 Nov 2012
- views: 19
- author: richard mullins
4:34
Tech. Explorers - Turing Tutorials Part 1 - Put, Get and Var
Link to the Turing Programs: http://suhaildawood.com/turing Today We: - Learn the 'put' fu...
published: 09 May 2011
author: techexplorers
Tech. Explorers - Turing Tutorials Part 1 - Put, Get and Var
Tech. Explorers - Turing Tutorials Part 1 - Put, Get and Var
Link to the Turing Programs: http://suhaildawood.com/turing Today We: - Learn the 'put' function - Learn the 'get' function - Learn how to create a variable ...- published: 09 May 2011
- views: 641
- author: techexplorers
7:25
My RPG game summative turing
My grade 10 programming summative, the first real game I've coded in the Turing programmin...
published: 12 Sep 2012
author: tacoman1592
My RPG game summative turing
My RPG game summative turing
My grade 10 programming summative, the first real game I've coded in the Turing programming language. It was from my first year in programming with a very ba...- published: 12 Sep 2012
- views: 279
- author: tacoman1592