├── .github └── workflows │ └── update.yml ├── DESCRIPTION.md ├── LICENSE ├── README.md ├── demo ├── DESCRIPTION.md ├── desktop-auto-launch │ ├── .init │ └── DESCRIPTION.md └── module.yml ├── dojo.yml ├── hello ├── DESCRIPTION.md ├── apple │ ├── DESCRIPTION.md │ ├── README.md │ └── apple ├── banana │ ├── DESCRIPTION.md │ ├── README.md │ ├── _0 │ │ └── .config │ ├── _1 │ │ └── .config │ ├── _2 │ │ └── .config │ └── banana └── module.yml ├── lectures ├── DESCRIPTION.md ├── graded-lecture │ └── .config └── module.yml └── world ├── DESCRIPTION.md ├── earth ├── .init ├── DESCRIPTION.md ├── README.md ├── earth └── planets.txt ├── mars ├── DESCRIPTION.md ├── README.md ├── orbit └── planets.txt ├── module.yml ├── planets.txt └── venus ├── .init ├── DESCRIPTION.md ├── README.md ├── _0 └── takeoff ├── _1 └── takeoff ├── launch.template └── planets.txt /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/DESCRIPTION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/README.md -------------------------------------------------------------------------------- /demo/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module demonstrates some more interesting ideas. 2 | -------------------------------------------------------------------------------- /demo/desktop-auto-launch/.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/demo/desktop-auto-launch/.init -------------------------------------------------------------------------------- /demo/desktop-auto-launch/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/demo/desktop-auto-launch/DESCRIPTION.md -------------------------------------------------------------------------------- /demo/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/demo/module.yml -------------------------------------------------------------------------------- /dojo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/dojo.yml -------------------------------------------------------------------------------- /hello/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | The first module in this example dojo. 2 | -------------------------------------------------------------------------------- /hello/apple/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This is apple. 2 | -------------------------------------------------------------------------------- /hello/apple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/hello/apple/README.md -------------------------------------------------------------------------------- /hello/apple/apple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/hello/apple/apple -------------------------------------------------------------------------------- /hello/banana/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/hello/banana/DESCRIPTION.md -------------------------------------------------------------------------------- /hello/banana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/hello/banana/README.md -------------------------------------------------------------------------------- /hello/banana/_0/.config: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /hello/banana/_1/.config: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /hello/banana/_2/.config: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /hello/banana/banana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/hello/banana/banana -------------------------------------------------------------------------------- /hello/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/hello/module.yml -------------------------------------------------------------------------------- /lectures/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/lectures/DESCRIPTION.md -------------------------------------------------------------------------------- /lectures/graded-lecture/.config: -------------------------------------------------------------------------------- 1 | hh4XAU6XYP0 549 2 | -------------------------------------------------------------------------------- /lectures/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/lectures/module.yml -------------------------------------------------------------------------------- /world/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | The second module in this example dojo. 2 | -------------------------------------------------------------------------------- /world/earth/.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/world/earth/.init -------------------------------------------------------------------------------- /world/earth/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This is earth. 2 | -------------------------------------------------------------------------------- /world/earth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/world/earth/README.md -------------------------------------------------------------------------------- /world/earth/earth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/world/earth/earth -------------------------------------------------------------------------------- /world/earth/planets.txt: -------------------------------------------------------------------------------- 1 | ../planets.txt -------------------------------------------------------------------------------- /world/mars/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This is mars. 2 | -------------------------------------------------------------------------------- /world/mars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/world/mars/README.md -------------------------------------------------------------------------------- /world/mars/orbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/world/mars/orbit -------------------------------------------------------------------------------- /world/mars/planets.txt: -------------------------------------------------------------------------------- 1 | ../planets.txt -------------------------------------------------------------------------------- /world/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/world/module.yml -------------------------------------------------------------------------------- /world/planets.txt: -------------------------------------------------------------------------------- 1 | Mercury 2 | Venus 3 | Earth 4 | Mars 5 | Jupiter 6 | Saturn 7 | Uranus 8 | Neptune 9 | -------------------------------------------------------------------------------- /world/venus/.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/world/venus/.init -------------------------------------------------------------------------------- /world/venus/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This is venus. 2 | -------------------------------------------------------------------------------- /world/venus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/world/venus/README.md -------------------------------------------------------------------------------- /world/venus/_0/takeoff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/world/venus/_0/takeoff -------------------------------------------------------------------------------- /world/venus/_1/takeoff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/world/venus/_1/takeoff -------------------------------------------------------------------------------- /world/venus/launch.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwncollege/example-dojo/HEAD/world/venus/launch.template -------------------------------------------------------------------------------- /world/venus/planets.txt: -------------------------------------------------------------------------------- 1 | ../planets.txt --------------------------------------------------------------------------------