Skip to content

Instantly share code, notes, and snippets.

View hyacinthus's full-sized avatar
⌨️
Coding

王瑞华 hyacinthus

⌨️
Coding
View GitHub Profile
{"sig":"29b85287f10101235b19b4e7d6fc42236f469865bde7d7e2ea745c63618eff8445482bd641f1b6bfb270d163ef5782351dbea6d3af732b904144a16218c74abb0","msghash":"4624171204ea66cc095a6a532eec9b6437d95037eecd5f46aeba02d6c27c9c98"}
@hyacinthus
hyacinthus / run.sh
Created February 4, 2017 02:25
docker
# tmp mysql
sudo docker run --name play_mysql -p 3310:3306 -v /home/ubuntu/mysql_data/play:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=123456 -d mysql:5.7.17
@hyacinthus
hyacinthus / pydoc.vim
Created April 29, 2012 18:08
pydoc plugin for vim. forked from http://www.vim.org/scripts/script.php?script_id=910 used in full screen vim and open the doc window in the right of the screen.
"pydoc.vim: pydoc integration for vim
"performs searches and can display the documentation of python modules
"Author: André Kelpe <efeshundertelf at googlemail dot com>
"Author: Romain Chossart <romainchossat at gmail dot com>
"Author: Matthias Vogelgesang
"http://www.vim.org/scripts/script.php?script_id=910
"This plugin integrates the pydoc into vim. You can view the
"documentation of a module by using :Pydoc foo.bar.baz or search
"a word (uses pydoc -k) in the documentation by typing PydocSearch
"foobar. You can also view the documentation of the word under the