201805-17 Ubuntu on Windows 10工作方式全解析 609 VIEW 误区澄清在展开今天的内容之前,我们先要为大家澄清两个误区:1. 微软支持是的 Ubuntu on Windows,而非 Linux on Windows。2. Ubuntu 母公司 Canonical 此次与微软的合作是要直接支持 Windows 原生库和程序:Windows 子系统 for Li.... Read More >
201708-31 windows上的php-fpm 5867 VIEW FastCGI As we all know,nginx配php是通过fastcgi(一个类似http的协议,升级版的cgi)的。在linux上有php-fpm帮你管理进程,在windows似乎没有,这是有点令人悲伤的。 php-cgi-spawner &n.... Read More >
201708-31 Windows Nginx FastCGI PHP 并发阻塞问题 3140 VIEW 问题描述: 在windows上开发项目,使用hosts解析域名 如下: 127.0.0.1 www.a.com 127.0.0.1 www.b.com 配置好nginx php,配置如下: www.a.com项目 配置如下 server { .... Read More >
201703-18 Windows命令行查看文件的MD5 920 VIEW certutil -hashfile D:\1.exe MD5certutil -hashfile D:\1.exe SHA1certutil -hashfile D:\1.exe SHA256.... Read More >
201611-25 localhost、127.0.0.1 和 本机IP 三者的区别? 1316 VIEW 首先 localhost 是一个域名,在过去它指向 127.0.0.1 这个IP地址。在操作系统支持 ipv6 后,它同时还指向ipv6 的地址 [::1] 在 Windows 中,这个域名是预定义的,从 hosts 文件中可以看出: # localhost name r.... Read More >
201509-09 微信真机联调 inspector TBS 调试 device not found 1740 VIEW 1.前端时间写了微信 chrome inspector 联调页面的文章 2.今早由于断电关机,造成一下错误 3.错误分析 输入 adb shell 4.经百度寻找 adb device not fo.... Read More >
201507-28 window安装 composer 1142 VIEW 在PHP包管理上面,PHP发展的很缓慢,导致的结果就是很少发现程序员会使用像PEAR这样的工具。相反,大多数开发人员会选择他们自己喜欢的框架来处理代码,比如DB交互、ORIM’S、Oauth、Amazon S3整合等。 缺点就是在转换框架的时候(或者根本不需要返回使用框架)就感觉像在做噩梦,因为涉.... Read More >
201402-27 在CMD下杀死进程的方式 1523 VIEW TASKKILL [/S system [/U username [/P [password]]]] { [/FI filter] [/PID processid | /IM imagename] } [/T] [/F] 描述: 使用该工具按照进程 ID (PID) 或映像名称终止任务。 参数列表: /S system 指定要连接到的远程系统。 /U [domain\]user .... Read More >
201401-18 hg 分布式版本控制(基本使用方法) 1797 VIEW linux在~/.hgrs文件中建立[ui]段,并在段下添加: username:youername<youerEmail@mail.com> username项很好理解,就相当于Bazaar里的whoami命令——我不知道为什么Mercuri.... Read More >
201401-13 刷新DNS命令 如何刷新DNS缓存(转) 1326 VIEW 运行: ipconfig /displaydns这个命令,查看一下本机已经缓存了那些的dns信息的,然后输入下面的命令 ipconfig /flushdns 这时本机的dns缓存信息已经清空了,我们可以再次输入第一次输入的命令来看一下, ipconfig /displaydns ipconfig /displaydns显示dns缓存 ipconfig /flushdns 刷新DNS记.... Read More >
201312-13 windows 下cron执行 任务 1301 VIEW windows下使用cron.exe执行定时任务 [php] 0,5,10,15,20,25,30,35,40,45,50,55 * * * * curl www.1youku.com [/php] run Cron.exe windows curl.... Read More >
201312-13 wget.exe 命令行下载工具(附curl.exe与dll文件) 2714 VIEW wget是在Linux下开发的开放源代码的软件,作者是Hrvoje Niksic,后来被移植到包括Windows在内的各个平台上。它有以下功能和特点: win环境下的wget.exe 下载 (1)支持断点下传功能;这一点,也是网络蚂蚁和FlashGet当年最大的卖点,现在,Wget也可以使.... Read More >