├── .gitignore ├── README.md ├── benchmarks ├── angle.c ├── angle.py ├── bcrypt_hash.py ├── database_indexed.py ├── database_unindexed.py ├── dict.py ├── download_webpage.py ├── fill_array.c ├── fill_array_out_of_order.c ├── find-filenames.sh ├── grep_bytes.sh ├── grep_files_and_fail.sh ├── hash.py ├── json_parse.py ├── loop.py ├── make_empty_list.py ├── make_four_elt_list.py ├── make_one_elt_list.py ├── msgpack_parse.py ├── object_create.py ├── parse_http_request.py ├── primes.c ├── primes.py ├── primes_sieve.c ├── primes_sieve.py ├── protobuf_parse.py ├── run_bin_true.sh ├── run_python.sh ├── sum.c ├── sum.py ├── write_to_disk.py └── write_to_memory.py ├── deploy.sh ├── ideas.txt ├── package.json ├── requirements.txt ├── run_benchmarks.py ├── setup ├── database_indexed.py ├── database_unindexed.py └── protobuf │ ├── message.json │ ├── message.msgpack │ ├── message.protobuf │ ├── test.proto │ ├── test.py │ └── test_pb2.py └── site ├── about.html ├── benchmarks.json ├── config.js ├── curriculum.js ├── index.html └── main.js /.gitignore: -------------------------------------------------------------------------------- 1 | sum 2 | *.pyc 3 | node_modules 4 | site/jspm_packages 5 | vendor/ 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/angle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/angle.c -------------------------------------------------------------------------------- /benchmarks/angle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/angle.py -------------------------------------------------------------------------------- /benchmarks/bcrypt_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/bcrypt_hash.py -------------------------------------------------------------------------------- /benchmarks/database_indexed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/database_indexed.py -------------------------------------------------------------------------------- /benchmarks/database_unindexed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/database_unindexed.py -------------------------------------------------------------------------------- /benchmarks/dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/dict.py -------------------------------------------------------------------------------- /benchmarks/download_webpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/download_webpage.py -------------------------------------------------------------------------------- /benchmarks/fill_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/fill_array.c -------------------------------------------------------------------------------- /benchmarks/fill_array_out_of_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/fill_array_out_of_order.c -------------------------------------------------------------------------------- /benchmarks/find-filenames.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/find-filenames.sh -------------------------------------------------------------------------------- /benchmarks/grep_bytes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/grep_bytes.sh -------------------------------------------------------------------------------- /benchmarks/grep_files_and_fail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/grep_files_and_fail.sh -------------------------------------------------------------------------------- /benchmarks/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/hash.py -------------------------------------------------------------------------------- /benchmarks/json_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/json_parse.py -------------------------------------------------------------------------------- /benchmarks/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/loop.py -------------------------------------------------------------------------------- /benchmarks/make_empty_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/make_empty_list.py -------------------------------------------------------------------------------- /benchmarks/make_four_elt_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/make_four_elt_list.py -------------------------------------------------------------------------------- /benchmarks/make_one_elt_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/make_one_elt_list.py -------------------------------------------------------------------------------- /benchmarks/msgpack_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/msgpack_parse.py -------------------------------------------------------------------------------- /benchmarks/object_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/object_create.py -------------------------------------------------------------------------------- /benchmarks/parse_http_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/parse_http_request.py -------------------------------------------------------------------------------- /benchmarks/primes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/primes.c -------------------------------------------------------------------------------- /benchmarks/primes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/primes.py -------------------------------------------------------------------------------- /benchmarks/primes_sieve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/primes_sieve.c -------------------------------------------------------------------------------- /benchmarks/primes_sieve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/primes_sieve.py -------------------------------------------------------------------------------- /benchmarks/protobuf_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/protobuf_parse.py -------------------------------------------------------------------------------- /benchmarks/run_bin_true.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/run_bin_true.sh -------------------------------------------------------------------------------- /benchmarks/run_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/run_python.sh -------------------------------------------------------------------------------- /benchmarks/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/sum.c -------------------------------------------------------------------------------- /benchmarks/sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/sum.py -------------------------------------------------------------------------------- /benchmarks/write_to_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/write_to_disk.py -------------------------------------------------------------------------------- /benchmarks/write_to_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/benchmarks/write_to_memory.py -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/deploy.sh -------------------------------------------------------------------------------- /ideas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/ideas.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/run_benchmarks.py -------------------------------------------------------------------------------- /setup/database_indexed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/setup/database_indexed.py -------------------------------------------------------------------------------- /setup/database_unindexed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/setup/database_unindexed.py -------------------------------------------------------------------------------- /setup/protobuf/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/setup/protobuf/message.json -------------------------------------------------------------------------------- /setup/protobuf/message.msgpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/setup/protobuf/message.msgpack -------------------------------------------------------------------------------- /setup/protobuf/message.protobuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/setup/protobuf/message.protobuf -------------------------------------------------------------------------------- /setup/protobuf/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/setup/protobuf/test.proto -------------------------------------------------------------------------------- /setup/protobuf/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/setup/protobuf/test.py -------------------------------------------------------------------------------- /setup/protobuf/test_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/setup/protobuf/test_pb2.py -------------------------------------------------------------------------------- /site/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/site/about.html -------------------------------------------------------------------------------- /site/benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/site/benchmarks.json -------------------------------------------------------------------------------- /site/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/site/config.js -------------------------------------------------------------------------------- /site/curriculum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/site/curriculum.js -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/site/index.html -------------------------------------------------------------------------------- /site/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamalmarhubi/one-second/HEAD/site/main.js --------------------------------------------------------------------------------