Skip to content

Instantly share code, notes, and snippets.

View dpp's full-sized avatar

David Pollak dpp

View GitHub Profile
@dpp
dpp / open_source.md
Created January 22, 2016 18:29
Open source at NASA

In response to this Tweet

For software flying in Space:

  • Actually lot of our critical 3 projects/products uses open source software - especially Operating Systems
  • Astronaut's workstations have lots of open source software on it. For example, VLC media player, notepad++, Mozilla browser
  • Lot of time for flight software needs, there are not that many open source software packages out there so, NASA itself has also created many open source software packages for "core" flight software - these are currently used for it's critical 3 products such as satellites, landers, unmanned vehicles, and they are certifying it for critical 1 products such as space suits and future manned vehicles. Here is example of it, its called "Core Flight Executive", "Core F
@dpp
dpp / install_docker.sh
Last active July 19, 2018 15:38
A script to install Docker on a minimal Ubuntu 16.04 machine
#!/bin/bash
apt-get update
apt-get install -y apt-transport-https ca-certificates
apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
echo 'deb https://apt.dockerproject.org/repo ubuntu-xenial main' > /etc/apt/sources.list.d/docker.list
apt-get update