├── .gitignore ├── README.md ├── cp ├── ch02.md └── ch07.md ├── cpp_concurrency_in_action ├── CMakeLists.txt ├── README.md ├── condition_variable_example.h ├── hierarchical_mutex.h ├── main.cc ├── parallel_accumulate.h ├── threadsafe_map.h ├── threadsafe_queue.h ├── threadsafe_stack.h └── threadsafe_swap.h ├── js ├── index.html └── object.js ├── learningOpenCV ├── 01-Exercises.md ├── 01-Overview.md ├── 02-Introduction-to-OpenCV.md ├── 03-Getting-to-Know-OpenCV-Data-Types.md └── Preface.md ├── open.gl ├── .gitignore ├── Exercise │ ├── 11 │ │ ├── 11.vcxproj │ │ ├── 11.vcxproj.filters │ │ └── main.cpp │ ├── 12 │ │ ├── 12.vcxproj │ │ ├── 12.vcxproj.filters │ │ └── main.cpp │ ├── 13 │ │ ├── 13.vcxproj │ │ ├── 13.vcxproj.filters │ │ └── main.cpp │ ├── 21 │ │ ├── 21.vcxproj │ │ ├── 21.vcxproj.filters │ │ └── main.cpp │ ├── 22 │ │ ├── 22.vcxproj │ │ ├── 22.vcxproj.filters │ │ └── main.cpp │ ├── 51 │ │ ├── 51.vcxproj │ │ ├── 51.vcxproj.filters │ │ └── main.cpp │ ├── 01 │ │ ├── 01.vcxproj │ │ ├── 01.vcxproj.filters │ │ └── main.cpp │ ├── 02 │ │ ├── 02.vcxproj │ │ ├── 02.vcxproj.filters │ │ └── main.cpp │ ├── 03 │ │ ├── 03.vcxproj │ │ ├── 03.vcxproj.filters │ │ └── main.cpp │ ├── Exercise.sln │ ├── debug.cpp │ └── image │ │ ├── sample.png │ │ └── sample2.png └── README.md └── tdd_py ├── note.md └── superlists ├── functional_tests.py ├── lists ├── admin.py ├── apps.py ├── models.py ├── tests.py └── views.py ├── manage.py └── superlists ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .DS_Store 3 | *.log 4 | __pycache__/ 5 | db.sqlite3 6 | __init__.py 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/README.md -------------------------------------------------------------------------------- /cp/ch02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/cp/ch02.md -------------------------------------------------------------------------------- /cp/ch07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/cp/ch07.md -------------------------------------------------------------------------------- /cpp_concurrency_in_action/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/cpp_concurrency_in_action/CMakeLists.txt -------------------------------------------------------------------------------- /cpp_concurrency_in_action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/cpp_concurrency_in_action/README.md -------------------------------------------------------------------------------- /cpp_concurrency_in_action/condition_variable_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/cpp_concurrency_in_action/condition_variable_example.h -------------------------------------------------------------------------------- /cpp_concurrency_in_action/hierarchical_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/cpp_concurrency_in_action/hierarchical_mutex.h -------------------------------------------------------------------------------- /cpp_concurrency_in_action/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/cpp_concurrency_in_action/main.cc -------------------------------------------------------------------------------- /cpp_concurrency_in_action/parallel_accumulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/cpp_concurrency_in_action/parallel_accumulate.h -------------------------------------------------------------------------------- /cpp_concurrency_in_action/threadsafe_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/cpp_concurrency_in_action/threadsafe_map.h -------------------------------------------------------------------------------- /cpp_concurrency_in_action/threadsafe_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/cpp_concurrency_in_action/threadsafe_queue.h -------------------------------------------------------------------------------- /cpp_concurrency_in_action/threadsafe_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/cpp_concurrency_in_action/threadsafe_stack.h -------------------------------------------------------------------------------- /cpp_concurrency_in_action/threadsafe_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/cpp_concurrency_in_action/threadsafe_swap.h -------------------------------------------------------------------------------- /js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/js/index.html -------------------------------------------------------------------------------- /js/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/js/object.js -------------------------------------------------------------------------------- /learningOpenCV/01-Exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/learningOpenCV/01-Exercises.md -------------------------------------------------------------------------------- /learningOpenCV/01-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/learningOpenCV/01-Overview.md -------------------------------------------------------------------------------- /learningOpenCV/02-Introduction-to-OpenCV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/learningOpenCV/02-Introduction-to-OpenCV.md -------------------------------------------------------------------------------- /learningOpenCV/03-Getting-to-Know-OpenCV-Data-Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/learningOpenCV/03-Getting-to-Know-OpenCV-Data-Types.md -------------------------------------------------------------------------------- /learningOpenCV/Preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/learningOpenCV/Preface.md -------------------------------------------------------------------------------- /open.gl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/.gitignore -------------------------------------------------------------------------------- /open.gl/Exercise/01/01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/01/01.vcxproj -------------------------------------------------------------------------------- /open.gl/Exercise/01/01.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/01/01.vcxproj.filters -------------------------------------------------------------------------------- /open.gl/Exercise/01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/01/main.cpp -------------------------------------------------------------------------------- /open.gl/Exercise/02/02.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/02/02.vcxproj -------------------------------------------------------------------------------- /open.gl/Exercise/02/02.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/02/02.vcxproj.filters -------------------------------------------------------------------------------- /open.gl/Exercise/02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/02/main.cpp -------------------------------------------------------------------------------- /open.gl/Exercise/03/03.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/03/03.vcxproj -------------------------------------------------------------------------------- /open.gl/Exercise/03/03.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/03/03.vcxproj.filters -------------------------------------------------------------------------------- /open.gl/Exercise/03/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/03/main.cpp -------------------------------------------------------------------------------- /open.gl/Exercise/11/11.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/11/11.vcxproj -------------------------------------------------------------------------------- /open.gl/Exercise/11/11.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/11/11.vcxproj.filters -------------------------------------------------------------------------------- /open.gl/Exercise/11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/11/main.cpp -------------------------------------------------------------------------------- /open.gl/Exercise/12/12.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/12/12.vcxproj -------------------------------------------------------------------------------- /open.gl/Exercise/12/12.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/12/12.vcxproj.filters -------------------------------------------------------------------------------- /open.gl/Exercise/12/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/12/main.cpp -------------------------------------------------------------------------------- /open.gl/Exercise/13/13.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/13/13.vcxproj -------------------------------------------------------------------------------- /open.gl/Exercise/13/13.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/13/13.vcxproj.filters -------------------------------------------------------------------------------- /open.gl/Exercise/13/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/13/main.cpp -------------------------------------------------------------------------------- /open.gl/Exercise/21/21.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/21/21.vcxproj -------------------------------------------------------------------------------- /open.gl/Exercise/21/21.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/21/21.vcxproj.filters -------------------------------------------------------------------------------- /open.gl/Exercise/21/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/21/main.cpp -------------------------------------------------------------------------------- /open.gl/Exercise/22/22.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/22/22.vcxproj -------------------------------------------------------------------------------- /open.gl/Exercise/22/22.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/22/22.vcxproj.filters -------------------------------------------------------------------------------- /open.gl/Exercise/22/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/22/main.cpp -------------------------------------------------------------------------------- /open.gl/Exercise/51/51.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/51/51.vcxproj -------------------------------------------------------------------------------- /open.gl/Exercise/51/51.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/51/51.vcxproj.filters -------------------------------------------------------------------------------- /open.gl/Exercise/51/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/51/main.cpp -------------------------------------------------------------------------------- /open.gl/Exercise/Exercise.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/Exercise.sln -------------------------------------------------------------------------------- /open.gl/Exercise/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/debug.cpp -------------------------------------------------------------------------------- /open.gl/Exercise/image/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/image/sample.png -------------------------------------------------------------------------------- /open.gl/Exercise/image/sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/Exercise/image/sample2.png -------------------------------------------------------------------------------- /open.gl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/open.gl/README.md -------------------------------------------------------------------------------- /tdd_py/note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/tdd_py/note.md -------------------------------------------------------------------------------- /tdd_py/superlists/functional_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/tdd_py/superlists/functional_tests.py -------------------------------------------------------------------------------- /tdd_py/superlists/lists/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/tdd_py/superlists/lists/admin.py -------------------------------------------------------------------------------- /tdd_py/superlists/lists/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/tdd_py/superlists/lists/apps.py -------------------------------------------------------------------------------- /tdd_py/superlists/lists/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/tdd_py/superlists/lists/models.py -------------------------------------------------------------------------------- /tdd_py/superlists/lists/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/tdd_py/superlists/lists/tests.py -------------------------------------------------------------------------------- /tdd_py/superlists/lists/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/tdd_py/superlists/lists/views.py -------------------------------------------------------------------------------- /tdd_py/superlists/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/tdd_py/superlists/manage.py -------------------------------------------------------------------------------- /tdd_py/superlists/superlists/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tdd_py/superlists/superlists/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/tdd_py/superlists/superlists/settings.py -------------------------------------------------------------------------------- /tdd_py/superlists/superlists/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/tdd_py/superlists/superlists/urls.py -------------------------------------------------------------------------------- /tdd_py/superlists/superlists/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pezy/ReadingNotes/HEAD/tdd_py/superlists/superlists/wsgi.py --------------------------------------------------------------------------------