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
| #!/usr/bin/env python3 | |
| import shutil; | |
| import collections; | |
| import math; | |
| import sys; | |
| import argparse; | |
| Point = collections.namedtuple('Point', ['x', 'y', 'n']) | |
| HilbertAt = collections.namedtuple('HilbertAt', ['x', 'y', 'n']) |
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
| // This: https://www.rabbitmq.com/tutorials/tutorial-one-go.html | |
| // But without all the copied code between send and receive :) | |
| package main | |
| import ( | |
| "os" | |
| "log" | |
| "strings" | |
| "github.com/streadway/amqp" |
OlderNewer