zdd小小菜鸟 zdd小小菜鸟
2年前
windows--docker-指定ip启动mysql
windowsdocker指定ip启动mysql前提条件tex默认电脑已经安装好了docker,以及自定义配置docker的网络;若无请参考安装1.搜索mysql镜像shelldockersearchmysql2.拉取镜像shelldockerpullmy
Stella981 Stella981
3年前
Mac OS X 安装和配置Scala
一、下载Scala到官网下载Mac版的Scala:http://www.scalalang.org/download/二、配置Scala解压压缩包,可将其移动至/usr/local/share下(Scala的版本和下载目录以实际安装的为准):mvscala2.12.1
Stella981 Stella981
3年前
Docker 安装 nginx 并挂载宿主目录到容器中
安装nginx1.搜索nginx的镜像dockersearchnginx!(https://oscimg.oschina.net/oscnet/cd8f85b12d2e6afec805327a5ca4e3dff68.png)2.获取ng
Stella981 Stella981
3年前
Python(phone)模块获取手机号归属地、区号、运营商等
Python(phone)模块获取手机号归属地、区号、运营商等一、我使用的是python3,可以自行搜索下载二、安装phone模块, pipinstallphone 三、测试代码如下:fromphoneimportPhoneif__name__"__main__":phoneN
Wesley13 Wesley13
3年前
mysql监控
服务器监控  查看mysql性能SQL语句    mysql的基本指令    SHOW INDEX FROM<table:用于查看数据库表上的索引技术    SHOWPLUGINS:查看mysql的插件,例如搜索引擎    SHOW\FULL\ PROCESSLIST
Stella981 Stella981
3年前
BCompare替代UltraCompare(UltraEdit)
找到Uedit32.ini文件,一般在c盘下搜索编辑此文件,找到 \Settings\加入一行CompareEXE"D:\\ProgramFiles\\BeyondCompare\\BCompare.exe""D:\\ProgramFiles\\BeyondCompare\\BCompare.exe"为我的BComp
Wesley13 Wesley13
3年前
83款 网络爬虫开源软件
1、http://www.oschina.net/project/tag/64/spider?lang0&os0&sortview&(http://www.oschina.net/project/tag/64/spider?lang0&os0&sortview&)搜索引擎_Nutch_(http://www.osch
Stella981 Stella981
3年前
Mobile First! Wijmo 5 之 架构
CSDN移动开发(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fmobile.csdn.net%2F)频道率先报道的《MobileFirst!jQueryUI组件集Wijmo五年最大更新(https://www.oschina.net/action/GoToLink?urlht
Stella981 Stella981
3年前
OSChina 技术周刊第十六期 —— 每周技术精粹
每周技术抢先看,总有你想要的!移动开发1.【翻译】\Android\AS中Gradle配置运行浅析(http://my.oschina.net/u/1377710/blog/363291)服务端开发/管理1.【软件】安全的即时聊天系统Tox(http://www.oschina.
Stella981 Stella981
3年前
Lua 字符串查找函数 string.find(s, pattern [, init [, plain]] )【转】
函数原型string.find(s,pattern\,init\,plain\\)s:源字符串pattern:待搜索模式串init:可选,起始位置plain:我没用过①子串匹配:print(string.find("haha",'ah'))输出23注意: