/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

scalatutorials.com
| | korz.dev
3.0 parsecs away

Travel
| | This is a small interpreter for BF I wrote about a month ago. Nothing new, but I thought I might share it anyway. A small usage example: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 package de.niklaskorz.brainfuck class Interpreter { var offset = 0 var data = new Array[Char](30000) var loopStart = new scala.collection.mutable.Stack[Int] def eval(source: String) { var i = 0 while (i < source.
| | niklaskorz.de
4.5 parsecs away

Travel
| | Dies ist ein kleiner Interpreter für BF, den ich vor einem Monat geschrieben habe. Nichts neuartiges, aber ich dachte mir, ich teile es trotzdem. Ein kleines Nutzungsbeispiel: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 package de.niklaskorz.brainfuck class Interpreter { var offset = 0 var data = new Array[Char](30000) var loopStart = new scala.collection.mutable.Stack[Int] def eval(source: String) { var i = 0 while (i < source.
| | codewithstyle.info
5.2 parsecs away

Travel
| | Recently, after three years of focusing mainly on the .NET platform, I've changed jobs. My current company uses Scala for server-side programming in t
| | nataliiadziubenko.com
19.6 parsecs away

Travel
| There's a ton of documentation and specifications describing the internal workings of the JVM. However, going through all of that to simply gain some understanding might be a bit too much. I've read those specs and looked inside, so here's a simple little explanation of how synchronized works in Java...