This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PID COMMAND | |
| 1 /sbin/init | |
| 2 [kthreadd] | |
| 3 [ksoftirqd/0] | |
| 6 [migration/0] | |
| 7 [watchdog/0] | |
| 8 [migration/1] | |
| 10 [ksoftirqd/1] | |
| 12 [watchdog/1] | |
| 13 [migration/2] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Installs tarsnap client on Debian and Ubuntu | |
| # | |
| # You'll need to setup an account at | |
| # http://www.tarsnap.com | |
| # and load it with some funds | |
| # | |
| # Make sure you run this as root | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [default] | |
| aws_access_key_id=AKIATTGGMOWUTOKBBNAE | |
| aws_secret_access_key=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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defmodule IslandsEngine.GameSupervisor do | |
| use DynamicSupervisor | |
| alias IslandsEngine.Game | |
| def start_link(_options), do: DynamicSupervisor.start_link(__MODULE__, :ok, name: __MODULE__) | |
| def init(:ok), do: DynamicSupervisor.init(strategy: :one_for_one) | |
| def start_game(name), do: DynamicSupervisor.start_child(__MODULE__, Game.child_spec(name)) |
OlderNewer