- Install MapSat GPS radio
- Verify sufficient power for electric rover (solar panel or RTG that doesn't fall off in dynamic environments)
- Does gear touch the ground when extended?
- Did you pack enough delta-v? (No.)
- Are you planning on returning?
- Is your shit manned or did that little probe body ruin the day?
- How many crew do you want?
- Did you remember ASAS and SAS?
- Is RCS needed?
V: The V distributed system was developed at Stanford University as part of a research project to explore communication issues in distributed systems. The pro- cess group abstraction was introduced there to encapsulate distribution (Cheriton and Zwaenepoel 1985).
Amoeba: The Amoeba microkernel-based distributed operating system was devel- oped at the Vrije University of Amsterdam to devise applications on a collection of workstations or single board computers (Kaashoek et al. 1989).
Delta-4: The Delta-4 project was a European research project under the ESPRIT Programme that defined an architecture to build dependable system based on reliable (group) communication abstractions. Many of the ideas underlying Delta- 4 were later incorporated in the FT-CORBA standard (Powell 1991, 1994).
Replicated RPC: Circus was one of the first systems to use the group com- munication abstraction to access replicated servers. It included a replicated remote-procedure call facility implemented in Berkeley Unix (Cooper 1984a,b
#!/usr/bin/env ruby | |
# Takes a directory and turns music in it to mp3s; deleting originals. | |
require 'find' | |
require 'fileutils' | |
# Find files | |
files = [] | |
Find.find(ARGV.first) do |file| |