Quantcast
Channel: 小小博客
Browsing latest articles
Browse All 16 View Live

把win7系统自带的计算器移植到win10系统使用

除了拷贝程序自身(windows\system32\calc.exe)以外,还需要你当前系统语言对应的MUI文件才能运行。MUI文件位于 windows\system32\语言名(比如简中的话就是zh-CN)\calc.exe.mui建议拷贝出来后改名(比如calc7.exe和calc7.exe.mui),再拷贝至win10对应的位置。两款计算器可以共存。

View Article


axios 表单(formData)方式上传文件

<input id="name" name="name"/> <input id="age" name="age"/> <input id="file" type="file" name="file" multiple> let forms = new FormData() forms.append('name',...

View Article


Nginx解决“no resolver defined to resolve xxx.xxx”

如果使用域名作为反向代理的地址的话会在Nginx0.6.18以后的版本中都会提示“ no resolver defined to resolve ”的类似错误,而在proxy_pass...

View Article

泪水打湿猪脚饭

泪水打湿猪脚饭发誓再挣一百万花开花落花无悔缘来缘去缘如水缘起缘灭缘终尽浮生皆纵 恍如一梦黄粱一梦

View Article

nginx代理dockerhub

Nginx 代理此章节介绍的不是对自建 registry 的反向代理,而是对 Docker Hub 官方 registry 地址的代理。相当于搭建了一个无缓存功能的镜像站。在服务器上安装 Nginx 并添加以下配置片段:location / { client_max_body_size 1024M; proxy_pass https://registry-1.docker.io:443;...

View Article


解决thinkphp应对options请求的时候的跨域问题

复杂请求时,会遇到options请求,但是thinkphp路由直接拒绝了options请求,把头修改加到控制器里面是没用的。设置路由暂时还不会。不过可以直接加到入口文件if($_SERVER['REQUEST_METHOD'] == 'OPTIONS'){ header("Access-Control-Allow-Origin: *");...

View Article

js同步执行延迟

function delay(n) { return new Promise(function(resolve) { setTimeout(resolve, n * 1000); }); } async function myAsyncFunction() { // Do what you want here console.log('Before the delay') await...

View Article

vscode终端使用

vscode终端和自带的cmd环境变量不一样打开settings.json增加 环境变量实现 vscode终端运行任何任务这里不知道自带的环境变量是什么或者抄起来麻烦可以直接打开cmd输入echo %PATH%输出的内容就是当前系统的环境变量"terminal.integrated.env.windows": {...

View Article


这段故事已经结束,但你的故事还没有结束

这段故事已经结束,但你的故事还没有结束

View Article


Chome翻译(完美)解决:代理谷歌翻译+hosts

一、代理部分① sniproxy方法(推荐)相较于caddy nginx apache等七层代理的方法,好处是不需要自签证书,但是需要独立占用443端口,如果是一鸡多用,还要用到其他http服务,就往下看caddy、nginx的方法参考这里的https://haoduck.com/713.html配置方法,把域名改成谷歌翻译的就行了安装sniproxyapt-get install -y git...

View Article
Browsing latest articles
Browse All 16 View Live