mysql基础再回顾
一、mysql 连接之前的命令 1、连接Mysql格式: mysql -P3306 -h主机地址 -u用户名 -p用户密码        2、修改密码格式:mysqladmin -u用户名 [-p旧密码] password 新密码        3、备份数据库 命令在DOS的[url=file://\\mysql\\bin]\\mysql\\bin[/url]目录下执行              1).导出整个数据库 导出文件默认是存在mysql\bin目录下 mysq
....
UEditor 代码的高亮显示
    编辑时,启用代码语言:        输入对应的代码,保存上传。    在前台展示的时候,页面的head头加载代码:<script type="text/javascript" src="/community/Public/Resourceblog/min?f=/community/Public/Resourceadming/ueditor/third-party/SyntaxHighlighter/shCore.js"></script> <link rel="stylesheet" href="/community/Public/Resourceblog/min?f=/community/Public/Resourceadming/ueditor/third-party/SyntaxHighlighter/shCoreDefault.css"
....
在线激活 - - PhpStorm打不开了?提醒你激活啦?
PhpStorm打不开了?提醒你激活啦?发现的几个有用的在线激活方法:问题:打开 phpstorm或者打不开了直接显示激活界面:选择"License Server ",选择一个网址,在线激活:http://idea.imsxm.com/http://114.215.133.70:41017/http://172.245.22.235:1017/http://mcpmcc.com:1017 http://idea.pjoc.pub....
workerman在Linux下的配置及其注意事项
###workman (linux) - 虚拟机配置php和共享文件夹 1)下载vitrualBox 2) 安装虚拟机并配置连接外网 3)  centos 配置php及其workman扩展安装 #在线安装php([参考地址](http://www.cnblogs.com/liulun/p/3535346.html) yum install php php-devel //workman需要扩展CLI 和php.ini的模式不同 查看安装的扩展 php -m #需要的必须php扩展 #- pcntl  #- posix  #- libevent(非必须,当业务需要支撑上万并发连接
....
Git保存密码
git 保存密码 for windows 1.First, download git-credential-winstore and install it in your git bin directory.  首先下载git-credential-winstore.exe 然后移动到git的bin目录下 2.Next, make sure that the directory containing git.cmd is in your Path environment variable. The default directory for this is C:\Program Files (x86)\Git\cmd on a 64-bit system o
....
git简介--3--多分支开发注意事项
Git基本命令 git clone 克隆代码 git branch 分支 git status 当前分支及其操作记录 git diff 代码更改记录 git checkout 检出|切换分支 git add 添加新建文件 git commit -am "提示信息:提交所有修改" git push origin master|branch-new 推送远程分支多分支开发注意事项1.只改写自己负责的模块,轻易不同改写其他分支负责的代码 *2.养成习惯,每天提交分支 *3.分支push之前先要merge master *4.merge master之前,先要pull origin master ,实时
....