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 python | |
import json | |
import time | |
import shelve | |
import urllib | |
import urllib.request | |
DB = 'flights' | |
API = "http://www.flightradar24.com/zones/full_all.json" |
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
#include <algorithm> | |
#include <functional> | |
#include <iterator> | |
// #include <iostream> | |
#include <initializer_list> | |
#include <vector> | |
/* ---------------------------------------------------------------------------------------------- */ | |
template <typename T, typename Exp> |
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
#include <chrono> | |
#include <iostream> | |
#include <type_traits> | |
#include <eggs/variant.hpp> | |
/* -------------------------------------------------------------------------------- */ | |
class timer | |
{ | |
private: |
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
#include <chrono> | |
#include <iostream> | |
#include <memory> | |
#include <unordered_set> | |
#include <vector> | |
#include <boost/intrusive/unordered_set.hpp> | |
#include <sdd/mem/hash_table.hh> | |
#include <sdd/util/hash.hh> |
NewerOlder