The collected works of robespierre - Page 4

I suppose the analogy is
Spaceball : "3D-Spheric-Mouse" :: IBM Pointing Stick : Trackball

force sensors should cause less RSI since the hand never needs to move. with rotation sensors, the ball can "keep spinning", which wouldn't appear to be useful.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
it is not needed; the symbol index is always updated.

Code:
There is no ranlib program in IRIX.  Option -s creates the archive-symbol-table ld uses.

Options -r, -d, -m, and -q imply option -s.  Since option -s creates an archive-symbol-table, creating an object library by executing ar
once per object file will be very slow.  Creating an object library with a single execution of ar is much faster.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
it's a Tomy Tutor, although I have never actually seen one.
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
reminds me of the "Knock Down Kits" that equipment was packaged as for export to India or China.
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
I think of it as an elegant solution to the common guessing game called "did the machine buffer the keys I just typed, or were they flushed?"

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
I have a thermal paper terminal with a 300 baud acoustic coupler. it was modified to add a serial interface for some type of minicomputer.
it's from 1971, about a decade before the popular TI Silent 700 terminals that did basically the same thing.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
not as elegant as a Brunsviga...

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
This is so off topic, I love it :)

related to the Library of Congress and paper tape as a storage medium:
http://www.kinetta.com/download/files/K ... canner.pdf

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
not sure on the exact design, but from the description of the prototype the rollers do move slightly and use a hall effect switch to detect film tension. so the "dancer arms" are present, just with very short action. It seems like an attempt to contrast the design to a Geneva loop.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
for an unpartitioned disk you need to run fx first to install the disklabel.
see http://www.futuretech.blinkenlights.nl/6.5inst.html specifically the section "For systems with the 64bit ARCS PROM"

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
Please spare a thought for the poor patent illustrators. The job is already very constraining, but at least for mechanical patents they can deploy their skills at shading and complex details. Software patents only have horrible little boxes and arrows, it's enough to make a man jump out a window.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
there are binaries on the net for Csound, tiMIDity, Rosegarden, Cecilia, CAST, cmix, PD... maybe some of them are dead links now.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
Van Jacobsen's 1988 traceroute used UDP probes.
http://www.kohala.com/start/papers.othe ... 9feb08.txt

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
just guessing, but nslookup uses its own internal resolver, not the system resolver library. so it's sometimes the case that lookups happen differently (and not surprising that lookups done by nslookup don't enter the system's address cache)

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
It is by will alone that I set DCL in motion.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
XFS volumes created with later versions use version 2 directories by default, which cannot be mounted by IRIX < 6.5.5.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
it appears to be a Voltage Regulator Module, also called a Point-Of-Load converter. perhaps it slots near the CPUs.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
OS9 software is not supported on any Intel Mac, or even on PPC under 10.5. You would need to use Basilisk or SheepShaver and accept reduced device support.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
fx> label/set/g
change data bytes/sec to 512, let other parameters default
fx> d/format
fx/debug/format: Drive parameters to use in formatting = (current)
exit and re-enter fx, and do label/create as normal, label/sync
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
I've been looking at oxalic acid, and phosphoric acid, as well as electrolysis to remove rust from tools. it may be possible to use similar techniques on metal computer parts, as long as they don't contain electronics or plastics.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
searches for "SGI" also turn up lots of buddhist paraphernalia.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
There's a product called "Rust Free by Boeshield" that is almost 100% phosphoric acid. You need to be careful since after acid etching, metal surfaces are not passivated and will quickly rust in the air. So some kind of passivation (pickling bath) or surface treatment (motor oil, waxes) must be used right after rust removal.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
a lot of discussions online these days about JBC stations, they have very impressive heat recovery, sucking something like 140-170 watts when cold started, and reaching 400 C within a couple of seconds. that's ten times faster than my Hakko 939.

Weller also has some amazing (German-made) products these days, like the WHS-M and WD1000-M, with very fast thermal performance.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
What are you using for the argument? Too large a number won't be representable as a fixnum.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
when the code is interpreted, there is no VM; the interpreter simulates the effect of running the code by means of its own data structures, called "environment objects". To reference a variable, it will make several function calls: to locate the symbol in the current environment, get its value cell, and access the value. In addition, the interpreter is self-recursive, and calls itself on every subform that it evaluates. So your function that loops 50 million times could (on one implementation here) result in calling the interpreter 350 million times.

A CL interpreter has more to do, since there can be symbol-macros and handlers and restarts and things that need to be managed. Those always need to be checked, even if the code doesn't use them. For these and other reasons, most developers always compile their code before running it. (Compiling also lets you see warnings about mistakes in your code!)

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
18e is very old, and is unsupported by several common packages like ASDF.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
SBCL on IRIX would require a port, since it has never run on that flavor of Unix. Maybe a month's work?
The MIPS compiler backend would also benefit from an update to 64-bit, which might be easier, and allow some version of CMUCL to link to modern N32 libraries.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
bring out the 2:
π = 2ln(i)/i

π/2 = ln(i)/i

all correct. The function e^(iφ) is the unit circle starting from (1,0) and running CCW with period 2π. So iπ/2 is the power of e that maps to the point (0,1).

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
thread hijack...
http://www.ebay.com/itm/NuBus-Twin-Axce ... 0962679781

Clearly not a video card, this is a biphase communications processor for use with 3270s and 5250s. I don't know the pinout of the DA-15 connector but maybe it can talk to a 5394.
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
The wiring is different, but the modulation is very similar (although the protocol is different). The DP8344B datasheet shows the connections: 3270 cables are transformer-coupled, 5250 cables are driven from balanced current-mode amplifiers. The card requires adapter cables.
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
yeah that sounds about right. you can convert rs232 <-> 20mA with a simple circuit that uses optoisolators and emitter followers.
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
Multiple-host SCSI busses are only supported when all devices have a feature called "contingent allegiance." The tape drive is unlikely to.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
Sorry, I misread that you had connected both computers to the same SCSI chain.
It seems like the CP150 is not SCSI2 compliant (incorrect LUN handling).
http://mail-index.netbsd.org/port-amiga ... /0000.html

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
The way SGI idb files are organized, the same packages are used regardless of system type. There are conditionals inside each package that determine which physical files will be installed. So the answer is mu.
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
PACE, JBC, Weller, and Ersa make such stations, and as SAQ said, they are expensive. There are Chinese knock-offs from Aoyue that cost much less.
Quality control can be an issue for Chinese tools, but there are some that do carry warranties and support, like the CSI labeled ones.
http://www.circuitspecialists.com/bk6000.html

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
Shoddy and counterfeit goods aren't a joke, they are dangerous to your health and safety.
Chinese-designed electronics are the latest in a string of tragedies caused by feckless oversight and corrupt bureaucracies. Or I suppose you could ask the people most affected, the parents in China who will risk jail to acquire baby formula that was made somewhere else.

_________________
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
I can't even imagine how much hardware has been butchered by the "recapping" hysteria.
The Indy power supplies commonly fail, see the info here: http://www.nekochan.net/reputable/indytech.html
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
many '80s pinball machines used really exotic plasma or EL displays. your color upgrade is LED?
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
high-end flight sim setups are pretty neat, with pneumatic cabin motors and all the instruments.
there is a huge difference in brightness between the landscape and lights used for navigation, so they use special "calligraphic projectors" with separate channels for the bright lights, vector controlled.
:PI: :O2: :Indigo2IMP: :Indigo2IMP:
I know there are specialized vacuum cleaners for picking up toner, carbon brushes, and other electronic debris. They are ESD protected and use multi-stage cartridge filters for the microfine particles. quite expensive as well.
:PI: :O2: :Indigo2IMP: :Indigo2IMP: