Quick and Dirty Apricot Emulator 0.0.3 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Quick and Dirty Apricot Emulator 0.0.3 (Default branch)
# 1  
Old 08-25-2008
Quick and Dirty Apricot Emulator 0.0.3 (Default branch)

ImageQDAE is an emulator supporting various 16-bitcomputers made by Apricot in the 1980s. These werenon-IBM-compatible systems running custom versionsof MS-DOS or CP/M.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need a quick and dirty solution

I have a list of multiple versions of software. The list is formated as follows: NAME VERSION I simply need to pull out the highest version of each software, for example: Original File a v1.0 a v1.1 a v1.2 b v2.1 b v2.2 b v2.21 b v3.0 Output a v1.2 b v3.0 (13 Replies)
Discussion started by: Finja
13 Replies

2. Shell Programming and Scripting

Quick-and-dirty g++ compilation

I am creating a small bash file that will take one argument and compile it: #!/bin/bash OUT=${$1%.cpp} # C++ source files always end in .cpp g++ -Wall $1 -o $OUT chmod 777 $OUT The error message says 'bad substitution', namely where OUT is defined. How to fix this? (1 Reply)
Discussion started by: figaro
1 Replies
Login or Register to Ask a Question
MakeMethods::Emulator::mcoder(3pm)			User Contributed Perl Documentation			MakeMethods::Emulator::mcoder(3pm)

NAME
Class::MakeMethods::Emulator::mcoder - Emulate the mcoder module SYNOPSIS
package MyClass; use Class::MakeMethods::Emulator::mcoder [qw(get set)] => [qw(color sound height)], proxy => [qw(runner run walk stop)], calculated => weight; sub _calculate_weight { shift->ask_weight } DESCRIPTION
This module emulates the functionality of the mcoder module, using Class::MakeMethods to generate similar methods. For example, the following lines are equivalent: use mcoder 'get' => 'foo'; use mcoder::get 'foo'; use Class::MakeMethods::Template::Hash 'scalar --get' => 'foo'; You may use this module directly, as shown in the SYNOPSIS above, or you may call "use Class::MakeMethods::Emulator::mcoder '-take_namespace';" to alias the mcoder namespace to this package, and subsequent calls to the original package will be transparently handled by this emulator. To remove the emulation aliasing, call "use Class::MakeMethods::Emulator::mcoder '-release_namespace'". The same mechanism is also available for the "sugar" subclasses. Caution: This affects all subsequent uses of the mcoder module in your program, including those in other modules, and might cause unexpected effects. SEE ALSO
See Class::MakeMethods for general information about this distribution. See Class::MakeMethods::Emulator for more about this family of subclasses. See " mcoder" for documentation of the original module. perl v5.10.1 2004-09-06 MakeMethods::Emulator::mcoder(3pm)