PandLE Playing AND LEarning https://www.pandle.net/ 2020-05-25 Mon, 25 May 2020 20:40:21 +0200 Jekyll v3.8.5 Action Script <p>ActionScript is an object-oriented language originally developed by Macromedia Inc. (now owned by Adobe Systems). It is a dialect of ECMAScript (meaning it is a superset of the syntax and semantics of the language more widely known as JavaScript), and is used primarily for the development of websites and software targeting the Adobe Flash Player platform, used on Web pages in the form of embedded SWF files. The language itself is open-source in that its specification is offered free of charge and both an open source compiler (as part of Adobe Flex) and open source virtual machine (Mozilla Tamarin) are available.</p> <p>Appeared: 1998<br /> Designed by: Gary Grossman<br /> Community: <a href="http://www.adobe.com/devnet/actionscript.html">adobe.com</a></p> 2020-05-25 https://www.pandle.net/language/action-script/ https://www.pandle.net/language/action-script/ action-script language Java <p>Java is a programming language originally developed by James Gosling at Sun Microsystems (which has since merged into Oracle Corporation) and released in 1995 as a core component of Sun Microsystems’ Java platform. The language derives much of its syntax from C and C++ but has a simpler object model and fewer low-level facilities than either C or C++. Java applications are typically compiled to bytecode (class file) that can run on any Java Virtual Machine (JVM) regardless of computer architecture. Java is a general-purpose, concurrent, class-based, object-oriented language that is specifically designed to have as few implementation dependencies as possible. It is intended to let application developers “write once, run anywhere” (WORA), meaning that code that runs on one platform does not need to be recompiled to run on another.</p> <p>Appeared: 1991<br /> Designed by: James Gosling and<br /> Sun Microsystems<br /> Community: <a href="http://www.oracle.com/technetwork/java/index.html">oracle.com</a></p> 2020-05-25 https://www.pandle.net/language/java/ https://www.pandle.net/language/java/ java language Arkanoid <p>Arkanoid is an arcade game developed by Taito in 1986. It is based upon Atari’s Breakout games of the 1970s. The title refers to a doomed “mothership” from which the Vaus, the player’s ship, escapes.</p> <p>Reference: <a href="http://en.wikipedia.org/wiki/Arkanoid">wikipedia.org</a></p> 2020-05-25 https://www.pandle.net/game/arkanoid/ https://www.pandle.net/game/arkanoid/ arkanoid game Tetris <p>Tetris is a puzzle video game originally designed and programmed by Alexey Pajitnov in the Soviet Union. It was released on June 6, 1984, while he was working for the Dorodnicyn Computing Centre of the Academy of Science of the USSR in Moscow. He derived its name from the Greek numerical prefix tetra- (all of the game’s pieces, known as Tetrominoes, contain four segments) and tennis, Pajitnov’s favorite sport.<br /> The Tetris game is a popular use of tetrominoes, the four element special case of polyominoes. Polyominoes have been used in popular puzzles since at least 1907, and the name is given by the mathematician Solomon W. Golomb in 1953. However, even the enumeration of pentominoes is dated to antiquity.</p> <p>Reference: <a href="http://en.wikipedia.org/wiki/Tetris">wikipedia.org</a></p> 2020-05-25 https://www.pandle.net/game/tetris/ https://www.pandle.net/game/tetris/ tetris game Frogger <p>Frogger is an arcade game introduced in 1981. It was developed by Konami, and licensed for worldwide distribution by Sega/Gremlin. The object of the game is to direct frogs to their homes one by one. To do this, each frog must avoid cars while crossing a busy road and navigate a river full of hazards. Skillful players may obtain some bonuses along the way.</p> <p>Reference: <a href="http://en.wikipedia.org/wiki/Frogger">wikipedia.org</a></p> 2020-05-25 https://www.pandle.net/game/frogger/ https://www.pandle.net/game/frogger/ frogger game Asteroids <p>Asteroids is a video arcade game released in 1979 by Atari Inc. It was one of the most popular and influential games of the Golden Age of Arcade Games.[citation needed] Asteroids uses a vector display and a two-dimensional view that wraps around in both screen axes (a toroidal topology).</p> <p>Reference: <a href="http://en.wikipedia.org/wiki/Asteroids_%28video_game%29">wikipedia.org</a></p> 2020-05-25 https://www.pandle.net/game/asteroids/ https://www.pandle.net/game/asteroids/ asteroids game Pacman <p>The developer of the classic Pacman arcade game is Namco. The designer is Toru Iwatani, and Hideyuki Mokajima San is the programmer. Toshio Kai is responsible for the sound and music. The release dates for the game were 1979, 1980, 1991, 1999, 2005, and again in 2006. It is a maze game for up to two players who take alternating turns. The game was licensed by Midway for distribution in the United states. It was first released in Japan. The game immediately became popular and still is today. The game inspired an animated television serious and a Top 40 Pop song. Pac Man was a good change from the space invaders games that seemed to be about the only choice people had until Pac Man was released.</p> <p>Reference: <a href="http://www.80smusiclyrics.com/games.shtml">80smusiclyrics.com</a></p> 2020-05-25 https://www.pandle.net/game/pacman/ https://www.pandle.net/game/pacman/ pacman game Space Invaders <p>Space Invaders​ is an arcade video game designed by Tomohiro Nishikado, and released in 1978. It was originally manufactured and sold by Taito in Japan, and was later licensed for production in the United States by the Midway division of Bally. Space Invaders is one of the earliest shooting games and the aim is to defeat waves of aliens with a laser cannon to earn as many points as possible.</p> <p>Reference: <a href="http://en.wikipedia.org/wiki/Space_Invaders">wikipedia.org</a></p> 2020-05-25 https://www.pandle.net/game/space-invaders/ https://www.pandle.net/game/space-invaders/ space invaders game Awk <p>AWK is a data driven programming language designed for processing text-based data, either in files or data streams. It is an example of a programming language that extensively uses the string datatype, associative arrays (that is, arrays indexed by key strings), and regular expressions.</p> <p>Appeared: 1977<br /> Designed by: Alfred Aho, Peter Weinberger, and Brian Kernighan<br /> Community: <a href="http://awk.info/">awk.info</a></p> 2020-05-25 https://www.pandle.net/language/awk/ https://www.pandle.net/language/awk/ awk language Sed <p>sed (stream editor) is a Unix utility that parses text files and implements a programming language which can apply textual transformations to such files. It reads input files line by line (sequentially), applying the operation which has been specified via the command line (or a sed script), and then outputs the line.</p> <p>Appeared: 1974<br /> Designed by: Lee E. McMahon<br /> Community: <a href="http://sed.sourceforge.net/">sourceforge.net</a></p> 2020-05-25 https://www.pandle.net/language/sed/ https://www.pandle.net/language/sed/ sed language