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
| auto eth0 | |
| allow-hotplug eth0 | |
| iface eth0 inet static | |
| address 10.1.248.204 | |
| netmask 255.255.0.0 | |
| gateway 10.1.134.210 | |
| post-up echo 'domain funland.local' > /etc/resolv.conf | |
| post-up echo 'search funland.local.' >> /etc/resolv.conf | |
| post-up echo 'nameserver 10.1.2.2' >> /etc/resolv.conf |
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
| MAXDATE = 1000000 | |
| # Return "iterator" into chunk_list. | |
| # TODO: actual binary search. Just returning first item now. | |
| def binarySearch(objList, date): | |
| return 0 | |
| # An object on the timeline. | |
| # All lists don't need to use the same object type, but I'm only using one | |
| # instead of 5 for brievity |