├── README.md ├── SUMMARY.md ├── bash ├── bash-git.md ├── bash-git.sh ├── bash-history.sh └── useful-bash-aliases.sh ├── book.json ├── cpp ├── .gitignore ├── compile_time_assert │ ├── compile_time_assert.md │ └── main.cpp ├── is_derived_from │ ├── is_derived_from.md │ └── main.cpp └── method-appoint │ ├── main.cpp │ ├── method_appoint.md │ └── workers.h ├── cpp_is_dangerous ├── 1.1 │ ├── 1.1.cpp │ └── 1.1.md ├── 1.2 │ ├── 1.2.cpp │ └── 1.2.md ├── 1.3 │ ├── 1.3.cpp │ └── 1.3.md └── 1.4 │ ├── 1.4.cpp │ └── 1.4.md ├── debian ├── apt_disable_pdiff.md └── what_does_the_standard_system_task_include.md ├── emacs ├── auto-complete.md ├── coffeescript.md ├── copy.md ├── emacs-conf.el ├── init_emacs.sh ├── insert-datetime.md ├── install.md └── window.md ├── generate_summary.sh ├── git ├── erase_keychain.sh ├── git-all.sh ├── git-cib.sh ├── git-config.sh ├── git-ignore ├── git-psuc.sh ├── list-remote-branches-with-the-last-commit-time.md ├── recent-branch.sh └── show-diff-after-create-branch.md ├── me ├── rank-explain.md ├── rank.md ├── renren-north-east-linux-popular-statuses.md └── resume.md ├── mysql ├── found_rows.md ├── order_by_case_sensitive.md └── point-spatial-index.md ├── osx └── apple-script-example-01.md ├── python ├── tornado │ ├── consumer.py │ └── pika-and-async.md └── webpy │ ├── apache-cgi-python.md │ └── apache-cgi-webpy-pathinfo.md ├── rss-subscriptions ├── InoReader Subscriptions.xml └── google-reader-subscriptions.xml ├── setup └── setup.sh ├── styles └── website.sass ├── td ├── plan.md └── tech.md ├── ubuntu ├── disable_apt_auto_update.md ├── softwares.md └── swap-keys.md ├── weChat └── little-app │ └── request-and-loading.md └── webfront ├── auto-count-section-number-by-css ├── auto-count-section-number-by-css.md └── demo.html └── html5_spin.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /bash/bash-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/bash/bash-git.md -------------------------------------------------------------------------------- /bash/bash-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/bash/bash-git.sh -------------------------------------------------------------------------------- /bash/bash-history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/bash/bash-history.sh -------------------------------------------------------------------------------- /bash/useful-bash-aliases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/bash/useful-bash-aliases.sh -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/book.json -------------------------------------------------------------------------------- /cpp/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.out 3 | *.s 4 | -------------------------------------------------------------------------------- /cpp/compile_time_assert/compile_time_assert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/cpp/compile_time_assert/compile_time_assert.md -------------------------------------------------------------------------------- /cpp/compile_time_assert/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/cpp/compile_time_assert/main.cpp -------------------------------------------------------------------------------- /cpp/is_derived_from/is_derived_from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/cpp/is_derived_from/is_derived_from.md -------------------------------------------------------------------------------- /cpp/is_derived_from/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/cpp/is_derived_from/main.cpp -------------------------------------------------------------------------------- /cpp/method-appoint/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/cpp/method-appoint/main.cpp -------------------------------------------------------------------------------- /cpp/method-appoint/method_appoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/cpp/method-appoint/method_appoint.md -------------------------------------------------------------------------------- /cpp/method-appoint/workers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/cpp/method-appoint/workers.h -------------------------------------------------------------------------------- /cpp_is_dangerous/1.1/1.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/cpp_is_dangerous/1.1/1.1.cpp -------------------------------------------------------------------------------- /cpp_is_dangerous/1.1/1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/cpp_is_dangerous/1.1/1.1.md -------------------------------------------------------------------------------- /cpp_is_dangerous/1.2/1.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/cpp_is_dangerous/1.2/1.2.cpp -------------------------------------------------------------------------------- /cpp_is_dangerous/1.2/1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/cpp_is_dangerous/1.2/1.2.md -------------------------------------------------------------------------------- /cpp_is_dangerous/1.3/1.3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/cpp_is_dangerous/1.3/1.3.cpp -------------------------------------------------------------------------------- /cpp_is_dangerous/1.3/1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/cpp_is_dangerous/1.3/1.3.md -------------------------------------------------------------------------------- /cpp_is_dangerous/1.4/1.4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/cpp_is_dangerous/1.4/1.4.cpp -------------------------------------------------------------------------------- /cpp_is_dangerous/1.4/1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/cpp_is_dangerous/1.4/1.4.md -------------------------------------------------------------------------------- /debian/apt_disable_pdiff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/debian/apt_disable_pdiff.md -------------------------------------------------------------------------------- /debian/what_does_the_standard_system_task_include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/debian/what_does_the_standard_system_task_include.md -------------------------------------------------------------------------------- /emacs/auto-complete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/emacs/auto-complete.md -------------------------------------------------------------------------------- /emacs/coffeescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/emacs/coffeescript.md -------------------------------------------------------------------------------- /emacs/copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/emacs/copy.md -------------------------------------------------------------------------------- /emacs/emacs-conf.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/emacs/emacs-conf.el -------------------------------------------------------------------------------- /emacs/init_emacs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/emacs/init_emacs.sh -------------------------------------------------------------------------------- /emacs/insert-datetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/emacs/insert-datetime.md -------------------------------------------------------------------------------- /emacs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/emacs/install.md -------------------------------------------------------------------------------- /emacs/window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/emacs/window.md -------------------------------------------------------------------------------- /generate_summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/generate_summary.sh -------------------------------------------------------------------------------- /git/erase_keychain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/git/erase_keychain.sh -------------------------------------------------------------------------------- /git/git-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/git/git-all.sh -------------------------------------------------------------------------------- /git/git-cib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/git/git-cib.sh -------------------------------------------------------------------------------- /git/git-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/git/git-config.sh -------------------------------------------------------------------------------- /git/git-ignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.egg-info/ 3 | -------------------------------------------------------------------------------- /git/git-psuc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/git/git-psuc.sh -------------------------------------------------------------------------------- /git/list-remote-branches-with-the-last-commit-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/git/list-remote-branches-with-the-last-commit-time.md -------------------------------------------------------------------------------- /git/recent-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/git/recent-branch.sh -------------------------------------------------------------------------------- /git/show-diff-after-create-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/git/show-diff-after-create-branch.md -------------------------------------------------------------------------------- /me/rank-explain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/me/rank-explain.md -------------------------------------------------------------------------------- /me/rank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/me/rank.md -------------------------------------------------------------------------------- /me/renren-north-east-linux-popular-statuses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/me/renren-north-east-linux-popular-statuses.md -------------------------------------------------------------------------------- /me/resume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/me/resume.md -------------------------------------------------------------------------------- /mysql/found_rows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/mysql/found_rows.md -------------------------------------------------------------------------------- /mysql/order_by_case_sensitive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/mysql/order_by_case_sensitive.md -------------------------------------------------------------------------------- /mysql/point-spatial-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/mysql/point-spatial-index.md -------------------------------------------------------------------------------- /osx/apple-script-example-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/osx/apple-script-example-01.md -------------------------------------------------------------------------------- /python/tornado/consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/python/tornado/consumer.py -------------------------------------------------------------------------------- /python/tornado/pika-and-async.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/python/tornado/pika-and-async.md -------------------------------------------------------------------------------- /python/webpy/apache-cgi-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/python/webpy/apache-cgi-python.md -------------------------------------------------------------------------------- /python/webpy/apache-cgi-webpy-pathinfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/python/webpy/apache-cgi-webpy-pathinfo.md -------------------------------------------------------------------------------- /rss-subscriptions/InoReader Subscriptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/rss-subscriptions/InoReader Subscriptions.xml -------------------------------------------------------------------------------- /rss-subscriptions/google-reader-subscriptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/rss-subscriptions/google-reader-subscriptions.xml -------------------------------------------------------------------------------- /setup/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/setup/setup.sh -------------------------------------------------------------------------------- /styles/website.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/styles/website.sass -------------------------------------------------------------------------------- /td/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/td/plan.md -------------------------------------------------------------------------------- /td/tech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/td/tech.md -------------------------------------------------------------------------------- /ubuntu/disable_apt_auto_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/ubuntu/disable_apt_auto_update.md -------------------------------------------------------------------------------- /ubuntu/softwares.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/ubuntu/softwares.md -------------------------------------------------------------------------------- /ubuntu/swap-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/ubuntu/swap-keys.md -------------------------------------------------------------------------------- /weChat/little-app/request-and-loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/weChat/little-app/request-and-loading.md -------------------------------------------------------------------------------- /webfront/auto-count-section-number-by-css/auto-count-section-number-by-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/webfront/auto-count-section-number-by-css/auto-count-section-number-by-css.md -------------------------------------------------------------------------------- /webfront/auto-count-section-number-by-css/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/webfront/auto-count-section-number-by-css/demo.html -------------------------------------------------------------------------------- /webfront/html5_spin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexdene/md-blog/HEAD/webfront/html5_spin.html --------------------------------------------------------------------------------