分类 : notes

24 篇文章

win10搜索失效解决方法
答案来自知乎提问 方法1. 重新安装Cortana以管理员模式运行powershell,输入以下内容并确认 1Get-AppXPackage -Name Microsoft.Windows.Cortana | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register &quo...
thumbnail
How to build MCloud
随着各大网盘关闭和被墙,网络云盘可选的服务商越来越少,某度云收费太高,限制太多,加上某些个人资料不便上传,此时私有云的作用就凸显出来了,搭配离线下载工具和同步工具,一个比较完整成熟的云应用就呈现出来了 LNMP预置环境配置LNMP(或LAMP),可使用一键安装包,也可以自己逐个安装配置 KodExplorer对比使用OwnCloud和NextClo...
【转】Nginx实现端口转发
查看原文:Nginx 实现端口转发——星河赵博客 SummaryNginx在监听某一端口(如80端口)时,通过配置负载均衡池,根据不同的域名,将同一端口的HTTP/HTTPS请求分发到不同的端口。 实例如下: 12345678910111213141516171819202122232425262728293031323334353637...
Node版本切换
In the lastest nodejs version the Buffer() constructor has been deprecated DEP0005: Buffer() constructor# Type: Runtime (supports –pending-deprecation) The Buffer() function a...
JavaScript MD5 function
default 32bit 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485...
Jquery Ajax Upload File (html5 FormData)
How to use Jquery Ajax to upload files with uploading progress get single file123let data = $('input[tpye=file]')[0].files[0]let file = new FormData()file.append(&#x...
Install Nginx On Ubuntu 16.04
【原文】How To Install Nginx on Ubuntu 16.04install nginxNginx is available in Ubuntu’s default repositories, so the installation is rather straight forward. 12sudo apt-get update...
【转】Ubuntu 16.04安装配置Nginx使用Let's Encrypt
【原文】Ubuntu 16.04安装配置Nginx使用Let’s EncryptLet’s Encrypt是新的认证授权(CA)方式,使用它可以获得免费的TLS/SSL证书-使用HTTPS加密web server。Let’s Encrypt依然在测试阶段,目前,它只支持在Apache web服务器上实现自动安装。但是,Let’s Encr...