2016-02-23 12:13:38 -07:00
|
|
|
How to Create Puzzle Categories
|
2011-02-03 07:31:42 -07:00
|
|
|
===============================
|
|
|
|
|
|
|
|
The contest has multiple "puzzle" categories. Each category contains a
|
|
|
|
collection of thematically-related puzzles with increasing point
|
|
|
|
values. This document will guide you through the process of creating a
|
|
|
|
new category. It's up to you to make challenging puzzles, though :)
|
|
|
|
|
|
|
|
Since Unix commands are plain text, I'll be using the Unix commands to
|
|
|
|
illustrate steps. These are simple commands that should be easy to
|
|
|
|
translate to a GUI.
|
|
|
|
|
|
|
|
Step 1: Establish a progression
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
Before you do anything else, you should sit down with a pen and paper,
|
|
|
|
and plan out how you'd like contestants to progress through your
|
|
|
|
category. This contest framework is set up to encourage a linear
|
|
|
|
progression through puzzles, while still allowing contestants to skip
|
|
|
|
over things they get stuck on.
|
|
|
|
|
|
|
|
The net-re category, for instance, features full tutorial pages with
|
|
|
|
simple "end of chapter" type questions for point values 1-8. Point
|
|
|
|
values 10-99 apply the skills learned in the tutorial against
|
|
|
|
increasingly challenging problems, point values 100-999 increasingly
|
|
|
|
approach real-world challenges which use the skills, and point values
|
|
|
|
1000+ are either culled or inspired by actual net-re tasks performed by
|
|
|
|
experts in the field.
|
|
|
|
|
|
|
|
The crypto category uses the previous answers key as part of the
|
|
|
|
solution process for each point value.
|
|
|
|
|
|
|
|
Ideally, your category will work standalone for novices, while allowing
|
|
|
|
experts to quickly answer the training questions and progress to real
|
|
|
|
challenges. Remember that some events don't have a class portion, and
|
|
|
|
even the ones that do have students who prefer to spend the contest time
|
|
|
|
reviewing the exact same problems they did in the class.
|
|
|
|
|
|
|
|
Remember, it's easy to make incredibly challenging puzzles, and you will
|
|
|
|
probably have a lot of ideas about how to do this. What's harder is to
|
|
|
|
make simple puzzles that teach. It can be helpful to imagine a student
|
|
|
|
with a basic skill set. Write your first puzzle for this student to
|
|
|
|
introduce them to the topic and get them thinking about things you
|
|
|
|
believe are important. Guide that student through your tutorial
|
|
|
|
puzzles, until they emerge ready to tackle some non-tutorial problems.
|
|
|
|
As they gain confidence, keep them on their toes with new challenges.
|
|
|
|
Remember to only introduce one new concept for each puzzle!
|
|
|
|
|
|
|
|
Past a certain point, feel free to throw in the killer tricky puzzles
|
|
|
|
you're just dying to create!
|
|
|
|
|
|
|
|
Step 2: Establish point values
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
Each of your steps needs a point value. Each point value must be
|
|
|
|
unique: you may not have two 5-point puzzles.
|
|
|
|
|
|
|
|
Point values should roughly reflect how difficult a problem is to solve.
|
|
|
|
It's not terribly important that a 200-point puzzle be ten times harder
|
|
|
|
than a 20-point puzzle, but it is crucial that a 25-point puzzle be
|
2016-02-23 12:13:38 -07:00
|
|
|
roughly as difficult as a 20-point puzzle. Poorly-weighted puzzles have
|
2011-02-03 07:31:42 -07:00
|
|
|
been the main reason students lose interest.
|
|
|
|
|
|
|
|
Step 3: Set up your puzzle structure
|
|
|
|
------------------------------------
|
|
|
|
|
|
|
|
The best way to get puzzles to me is in a zip file of an entire
|
|
|
|
directory. Let's say you are going to create a "sandwich" category.
|
|
|
|
Your first step will be to make a "sandwich" directory somewhere.
|
|
|
|
|
|
|
|
$ mkdir sandwich
|
|
|
|
$ cd sandwich
|
|
|
|
|
|
|
|
Within your category directory, create subdirectories for each point
|
|
|
|
value puzzle. In the "sandwich" category we have only 5, 10, and
|
|
|
|
100-point puzzles.
|
|
|
|
|
|
|
|
$ mkdir 5 10 100
|
|
|
|
|
|
|
|
Step 4: Write puzzles
|
|
|
|
---------------------
|
|
|
|
|
2016-02-23 12:13:38 -07:00
|
|
|
Now that your skeleton is set up, you can begin to fill it in. In each point-
|
|
|
|
value subdirectory, there are some required files:
|
|
|
|
|
|
|
|
* **00index.mdwn**: A plain text file formatted with [Markdown](http://daringfireball.net/projects/markdown/). This file usually
|
|
|
|
contains a description of the puzzle.
|
|
|
|
* **00answer.txt**: A plain text file with acceptable answers, one per line.
|
|
|
|
Answers are matched exactly (ie. they are case-sensitive).
|
|
|
|
* **00author.txt**: A plain text file with the puzzle author's name.
|
|
|
|
|
2016-02-23 14:42:42 -07:00
|
|
|
You can add other files to this subdirectory, and they will copied to the
|
|
|
|
install location and linked to in a list below the puzzle description. If you
|
|
|
|
want to explicitly define which files are copied, create a file
|
|
|
|
`00manifest.txt` and add the name of each file to included to its own line. If
|
|
|
|
you want files to be copied, but not show up in the list (e.g., images in the
|
|
|
|
puzzle description), prepend `,` to the name of the file. Files ending with
|
|
|
|
`.cgi` will be run as CGI. You can search the web for
|
|
|
|
[how to write a CGI](http://bfy.tw/4PXC). Some available languages are
|
2016-02-23 12:13:38 -07:00
|
|
|
[Python](http://python.org), [LUA](http://lua.org), and
|
|
|
|
[Bourne Shell](http://bfy.tw/4PXJ).
|
2011-02-03 07:31:42 -07:00
|
|
|
|
|
|
|
Let's make our 5-point sandwich question!
|
|
|
|
|
|
|
|
$ cd 5
|
2016-02-23 12:13:38 -07:00
|
|
|
$ cat <<EOD >00index.mdwn
|
2011-02-03 07:31:42 -07:00
|
|
|
> Welcome to the Sandwich category!
|
2016-02-23 12:13:38 -07:00
|
|
|
> ---------------------------------
|
|
|
|
>
|
2011-02-03 07:31:42 -07:00
|
|
|
> In this category you will learn how to make a tasty sandwich.
|
|
|
|
> The key ingredients in a sandwich are: bread, spread, and filling.
|
|
|
|
> When making a sandwich, you need to first put down one slice of bread,
|
|
|
|
> then apply any spreads, and finally add filling. Popular fillings
|
2016-02-22 22:13:41 -07:00
|
|
|
> include cheese, sprouts, and cold cuts. When you are done, apply
|
2011-02-03 07:31:42 -07:00
|
|
|
> another slice of bread on top, and optionally tie it together with
|
|
|
|
> a fancy toothpick.
|
2016-02-23 14:42:42 -07:00
|
|
|
> ![](,sandwich.jpg)
|
2011-02-03 07:31:42 -07:00
|
|
|
> Now that you know the basics of sandwich-making, it's time for a
|
|
|
|
> question! How many slices of bread are in a sandwich?
|
|
|
|
> EOD
|
2016-02-23 12:13:38 -07:00
|
|
|
$ cat <<EOD >00answers.txt
|
2011-02-03 07:31:42 -07:00
|
|
|
> 2
|
|
|
|
> TWO
|
|
|
|
> two
|
|
|
|
> EOD
|
2016-02-23 12:13:38 -07:00
|
|
|
$ echo "3ch01c" > 00author.txt
|
2016-02-23 14:42:42 -07:00
|
|
|
$ cp /tmp/sandwich.jpg ,sandwich.jpg
|
|
|
|
$ echo ",sandwich.jpg" >> 00manifest.txt
|
2011-02-03 07:31:42 -07:00
|
|
|
|
|
|
|
If you wanted to provide a PDF of various sandwiches, this would be the
|
|
|
|
time to add that too:
|
|
|
|
|
|
|
|
$ cp /tmp/sandwich-types.pdf .
|
2016-02-23 12:13:38 -07:00
|
|
|
$ echo "sandwich-types.pdf" >> 00manifest.txt
|
2011-02-03 07:31:42 -07:00
|
|
|
|
|
|
|
In a real category, you might provide an executable, hard drive image,
|
|
|
|
or some other kind of blob.
|
|
|
|
|
|
|
|
No additional work is needed to have `sandwich-types.pdf` show up as a
|
|
|
|
download on the puzzle page.
|
|
|
|
|
|
|
|
Step 5: Package it up
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
After you've flushed out all your point-value directories, it's time to
|
|
|
|
wrap it up and send it in. Clean out any backup or temporary files you
|
|
|
|
or your editor might have written in the directories, and zip the sucker
|
|
|
|
up.
|
|
|
|
|
|
|
|
$ cd ../..
|
|
|
|
$ zip -r sandwich.zip sandwich/
|
|
|
|
|
|
|
|
Now mail the zip file in, and you're all done!
|