
mystudy
cm0821
谁比谁好,能差到多少,迟早都要向上帝报到......
展开
-
Tmux+Vim
Tmux 中最棒的功能 窗口(Window) 窗格(Pane) 会话(Session) 快速在文本间移动光标或复制文本 非常轻巧的结对编程功能 调整 Tmux 以增强其同 Vim 的集成度 调整背景的配色方案 调整光标的形状 调整粘贴时的文本缩进 其他能够提升 Tmux 体验的工具或技巧 用 Tmuxinator 自动创建会话 改变 Tmux 状态栏的颜色 请注意,在撰写本转载 2016-03-25 09:33:16 · 3082 阅读 · 0 评论 -
install mysql for mac
mysql 官网下载http://dev.mysql.com/downloads/mysql/注意安装mysql-5.5.17-osx10.6-x86_64.dmg这样安装方便设置系统安全权限后 点击安装 !!1.mysql-5.5.17-osx10.6-x86_64.pkg2.MySQLStartupItem.pkg3.MySQL.prefPane依次安装终端中输原创 2016-04-06 11:23:48 · 985 阅读 · 0 评论 -
气泡样式提示框
样式一:css代码:.test{ width:250px; padding:50px 20px; margin-left:210px; background:hsla(177, 100%, 35%, 0.3); -webkit-border-top-left-radius:220px 120px; -webkit-border-t原创 2016-05-18 11:43:12 · 2393 阅读 · 0 评论 -
git使用
创建git仓库如果需要让别人远程clone,则需要开通ssh协议,git是依赖于ssh开通ssh服务sudo systemctl enable sshd.service clone远程仓库 git clone bigzhu@mygit:/home/git/hold.git clone别名仓库 git clone ly@ly.highwe.net:/home/git/clkj.git c原创 2016-05-17 15:56:00 · 285 阅读 · 0 评论 -
偏函数
LY填坑LY的博客开通啦!全部pythonvueSearch 查找 偏函数 05月17日06:15:19 当函数参数过多时, 使用偏函数可以固定掉函数的一些值,返回新函数,可以让函数调用更加简单def add(x, y, z): print “x = %s” %x print “y = %s” %y print “z = %s” %z不指定参数 不指定参数时原创 2016-05-17 15:54:49 · 850 阅读 · 0 评论 -
ImportError:No module named
报错问题:ImportError: No module named geventpip install gevent --userCommand "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/private/tmp/pip-build-HmciUI/greenlet/setup.py';exec(c原创 2016-04-26 09:24:38 · 4384 阅读 · 0 评论 -
brew install/uninstall postgres
=install database sever= {{{class=”brush: bash” brew updatebrew install postgres }}}= initializes the database during installation.= data dictery is /usr/local/var/postgres {{{class=”brush: bash”原创 2016-03-23 10:04:44 · 888 阅读 · 0 评论 -
postgresql数据库数据导入导出
导出数据库1.导出单个表从ip为xxx的数据库monitor中导出threshold的表结构和数据到本地文件threshold.sql: pg_dump -t threshold -h 135.32.94.142 monitor -U monitor -p 5432 -f threshold.sql 参数说明:-t 指定导出的表名;-h 数据库地址;-U 数据库用户;-p 访问端口;-f 导原创 2016-03-25 11:15:11 · 737 阅读 · 0 评论 -
rpm -ivh oracle-xe-11.2.0-1.0.x86_64.rpm
update/install the packages for libaio, bc, and flex.view plaincopy to clipboardprint?[root@ms3 ~]# yum install libaio bc flex Step 1: Download and Install Oracle 11g XE转载 2016-05-03 14:36:30 · 4030 阅读 · 0 评论