自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(23)
  • 资源 (27)
  • 收藏
  • 关注

原创 nginx 413 Entity Too Large

*/usr/local/nginx/conf/nginx.confclient_max_body_size 512m;$ sudo /usr/local/nginx/sbin/nginx -tnginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is oknginx: configu...

2019-06-26 16:29:57 290

原创 git 回退到上个版本 rollback 回滚 git reset HEAD, git 回退到上一版本

git回退到上个版本git reset --hard HEAD^ 回退到前3次提交之前,以此类推,回退到n次提交之前git reset --hard HEAD~3退到/进到 指定commit的sha码git reset --hard dde8c25694f34acf8971f0782b1a676f39bf0a46 强推到远程git push origin............

2019-06-26 09:04:35 106823 3

原创 node.js 跨域 允许多个域名

* config.jsmodule.exports = { env: { port: 8088, lock_path: 'npm_build.pid.lock', }, url: { cors: "http://172.16.0.224:8001,http://172.16.0.224:8087,http://172.1...

2019-06-25 19:36:35 1458 7

原创 wordpress 自带rest-api debug

对于/wp-json/接口:wp-includes/rest-api/class-wp-rest-request.php在__construct方法中添加代码 try { throw new RuntimeException("debug"); } catch (\RuntimeException...

2019-06-25 16:53:51 639

原创 nvm 多版本node切换

虚拟机上已经安装了node-v6.9.1用nvm实现多版本nodejshttps://github.com/nvm-sh/nvm/blob/master/README.mdwget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh > nvm_install.shsudo ./nvm_in...

2019-06-25 15:04:57 2171

原创 node.js合并配置项

* merge.js/*! * merge-descriptors * Copyright(c) 2014 Jonathan Ong * Copyright(c) 2015 Douglas Christopher Wilson * MIT Licensed */'use strict'/** * Module exports. * @public */module...

2019-06-24 12:03:53 643

原创 node.js取得当前路径 process.execPath, __dirname, process.cwd() path, 根路径、根目录

*/usr/ET/project/zktWeb/test.js// cd ~// node /usr/ET/project/zktWeb/test.js// 当前执行node的路径 e.g. /usr/local/node/10.16.0/bin/nodeconsole.log("process.execPath=" + process.execPath);// 代码test...

2019-06-24 11:40:46 1415 1

原创 react引入图片

react引入图片Approach#1import logoSrc from '../../Static/logo_zktWeb.png';<img src={logoSrc } />Approach#2<img alt='logo' className='logo' src={require('../../Static/logo_zktWeb.png')}...

2019-06-24 10:57:36 349

原创 error while loading shared libraries: libXss.so.1:

git clonehttps://github.com/GoogleChrome/puppeteercd puppeteer$ npm install> puppeteer@1.18.0-post install /home/mzh/github.com/GoogleChrome/puppeteer> node install.jsDownloading Ch...

2019-06-24 09:55:52 3249 1

原创 emacs iedit 批量修改变量名

下载iedit插件cd ~/.emacs.dgit clonehttps://github.com/victorhge/iedit.git~/.emacs文件中添加; iedit(add-to-list 'load-path "~/.emacs.d/iedit/")(require 'iedit)(define-key global-map (kbd "C-c ;") '...

2019-06-23 17:44:30 806

原创 NodeMailer node.js Send Error: %s' 'self signed certificate'

(1/1) Swift_TransportExceptionExpected response code 354 but got code "554", with message "554 5.5.1 Error: no valid recipients邮件的发件人名称与邮件的from 邮箱地址对应xiaojian => xiaojian@163.com[2019-0...

2019-06-21 11:39:38 1645

原创 Linux操作系统错误码列表 error code list, perror实现, errno

OS error code 1: Operation not permittedOS error code 2: No such file or directoryOS error code 3: No such processOS error code 4: Interrupted system callOS error code 5: Input/outp...

2019-06-20 11:03:22 2421 4

原创 git合并分支

dev1.0-wcy => dev1.0-mzh@branch dev1.0-mzhCheck out, review, and merge locallyStep 1. Fetch and check out the branch for this merge requestgit fetch origingit checkout -b dev1.0-wcy orig...

2019-06-19 13:19:34 771

原创 wordpress 添加自定义接口

* wp-admin/includes/ajax-actions.php添加回调函数function wp_ajax_my_test_handler() { $num = intval($_POST['num']); wp_send_json_success([ "num" => ++$num, ], 200);}*wp-admin/...

2019-06-17 18:02:31 3270

原创 express框架跨域 CORS, exec调用命令行

相关文章:https://blog.csdn.net/fareast_mzh/article/details/93647210* installnpm install --save express--registry=https://registry.npm.taobao.org* trigger.js// curl -i http://172.16.0.224:80...

2019-06-15 19:50:29 484

原创 [LeetCode]#10 Regular Expression Matching javascript字符串包含

https://leetcode.com/problems/regular-expression-matching/* isMatch.js/** * @param {string} s: text * @param {string} p: pattern * @return {boolean} */var isMatch = function(s, p) { if ...

2019-06-12 23:12:34 292

原创 leetcode palindrom number

https://leetcode.com/problems/palindrome-number/submissions/* isPalindrome.js/** * @param {number} x * @return {boolean} */var isPalindrome = function(x) { if (x < 0) {return false;} ...

2019-06-10 23:35:59 257

原创 leetcode atoi

https://leetcode.com/problems/string-to-integer-atoi/submissions/* Solution.jsfunction Solution() {}const Character = { isDigit: function(s) { var code = s.charCodeAt(0); return 48 <= ...

2019-06-10 00:20:18 314

原创 Math.js sqrt isPrime 开方 平方根, 素数

* MyMath.jsfunction MyMath() {}MyMath.abs = function(x) { if (x < 0) {return -x;} else return x;}MyMath.isPrime = function(/* int */n) { if (n < 2) return false; if (n ==...

2019-06-09 08:17:47 815 1

原创 mongodb 启动服务mongod 设置用户名密码 导入导出数据 mongodump mongorestore

mongodb文档https://docs.mongodb.com/manual/tutorial/getting-started/不授权启动mongo/usr/bin/mongod -bind_ip=0.0.0.0 --dbpath=/home/ubuntu/data/mongo先创建admin用户,相当于mysql的root用户$ mongo -u root -p test...

2019-06-05 12:04:51 1561

原创 Linux平台安装MongoDB

Linux平台安装MongoDBMongoDB 提供了 linux 各发行版本 64 位的安装包,你可以在官网下载安装包。下载地址:https://www.mongodb.com/download-center#community下载完安装包,并解压tgz(以下演示的是 64 位 Linux上的安装) 。curl -O https://fastdl.mongodb.org/...

2019-06-05 11:49:46 227

原创 php获取字段列表 填充模型类 字段列表

填充模型类 字段列表mysql> desc 5kcrm_crm_leads;+----------------+--------------+------+-----+---------------------+----------------+| Field | Type | Null | Key | Default | E...

2019-06-04 11:00:03 357

原创 leetcode zig-zag conversion

* ZigZag.js/*https://leetcode.com/problems/zigzag-conversion/"PAYPALISHIRING"row x 3P A H NA P L S I I GY I R*/function ZigZag() {}String.prototype.forEach = function(fn) { ...

2019-06-02 22:19:57 344

Hebrew-English Tanakh- The Jewish Bible.pdf

The Jewish Bible.pdf

2024-08-16

计算机结构与解释javascript版(带书签)

计算机结构与解释javascript版(带书签)

2024-08-13

BOOK OF WISDOM 2-Emule.pdf

BOOK OF WISDOM 2-Emule.pdf

2024-07-11

eserver-17.14.x86-64-linux.nptl.gz

ed2k server linux x86_64自建服务

2024-05-31

CRYPTOPP-8-5-0.tar.gz

AES, SHA1, 3DES加密库。aMuled项目用到。 关联资源https://download.csdn.net/download/fareast_mzh/89356325

2024-05-25

aMule源代码,eMule Linux版源代码,amuled

aMule源代码,eMule Linux版源代码。还需要 wxWidgets-3.1.5.tar.bz2, udns-0.5.tar.gz mbedtls-2.16.tar.gz libupnp-1.14.12.tar.bz2 等依赖包

2024-05-25

1119. Metro. dynamic programming, graph theory

https://acm.timus.ru/problem.aspx?space=1&num=1119 题目答案

2024-05-10

https://acm.timus.ru/print.aspx?space=1&num=1002 题目答案

In the present world you frequently meet a lot of call numbers and they are going to be longer and longer. You need to remember such a kind of numbers. One method to do it in an easy way is to assign letters to digits as shown in the following picture: 1 ij 2 abc 3 def 4 gh 5 kl 6 mn 7 prs 8 tuv 9 wxy 0 oqz This way every word or a group of words can be assigned a unique number, so you can remember words instead of call numbers. It is evident that it has its own charm if i

2024-05-06

xxd(hexdump),16进制打印

xxd 打印文件16进制内容

2024-04-25

Combined GCC/Nasm programs

编译asm汇编

2024-04-22

Assembly Language Step-By-Step - (Wiley, 2009, 0470497025).pdf

linux nasm, 汇编语言教程。Assembly Language Step-By-Step - Programming with Linux, 3rd edition (Wiley, 2009, 0470497025).pdf

2024-04-21

线性代数小抄,公式定理手册

线性代数小抄,公式定理手册

2024-04-16

C语言运算符优先级, 位运算容易搞错运算符优先级

C语言运算符优先级

2024-04-16

libevent库, http-server静态文件服务器示例

cd sample mkdir htdocs vim htdocs/index.html ./http-server -p 18080 -v htdocs curl -i http://127.0.0.1:18080/index.html

2023-12-14

nasm-10.09.tar.gz

This is the project webpage for the Netwide Assembler (NASM), an asssembler for the x86 CPU architecture portable to nearly every modern platform, and with code generation for many platforms old and new.

2023-11-21

DNS协议格式文档 DNS-primer.pdf

DNS协议格式文档 DNS-primer.pdf

2023-10-17

windows, which命令找到.exe文件路径

windows, which命令找到.exe文件路径,依赖boost库。目录迭代参考博客 https://www.cppstories.com/2019/04/dir-iterate/

2023-09-30

xxd用16进制打印文件内容,调试代码用

例如输出.png文件的内容 00000000: 8950 4e47 0d0a 1a0a 0000 000d 4948 4452 .PNG........IHDR 00000010: 0000 0096 0000 0096 0806 0000 003c 0171 .............<.q 00000020: e200 0000 0173 5247 4200 aece 1ce9 0000 .....sRGB....... 00000030: 0004 6741 4d41 0000 b18f 0bfc 6105 0000 ..gAMA......a... 00000040: 0009 7048 5973 0000 1274 0000 1274 01de ..pHYs...t...t.. 00000050: 661f 7800 002c 0149 4441 5478 5eed 9d07 f.x..,.IDATx^... 00000060: 5814 57db 86bf 96e4 fbf2 a718 134b d4d8 X.W..........K..

2023-08-23

错误日志库实现打印错误堆栈

错误日志库实现打印错误堆栈,解决apue中if error, 错误处理

2023-08-23

Linux C/C++发起http请求示例

Linux C/C++发起http请求, 多线程示例

2023-03-14

windows Visual Studio dll动态库模板

windows Visual Studio dll动态库模板 https://learn.microsoft.com/en-us/cpp/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp?source=recommendations&view=msvc-170

2022-09-26

windows环境Visual studio创建静态库,项目框架

Walkthrough: Create and use a static library C++ windows环境创建静态库,根据教程,以后创建其他的静态库可以直接用这个项目作为框架代码,改配置。 https://learn.microsoft.com/en-US/cpp/build/walkthrough-creating-and-using-a-static-library-cpp?source=recommendations&view=msvc-170

2022-09-26

PHP分布式事务 YiMQ库

yilu-tech/yimq-laravel-sdk/src/YiMqManager.php

2022-07-13

php base64字符串图片jpeg文本文件转换为jpeg图片

php base64字符串图片jpeg文本文件转换为jpeg图片

2022-04-05

xdebug-3.1.0beta2.tgz

参照安装教程 https://xdebug.org/docs/install

2021-09-14

platform-tools_r31.0.3-linux.zip

android adb调试工具

2021-08-15

platform-tools_r31.0.3-darwin.zip

adb安卓调试命令行工具 Mac版本

2021-08-15

platform-tools_r31.0.3-windows.zip

adb 安卓调试工具

2021-08-15

PHP-TreeMap.zip

用PHP写的红黑树,带测试用例, TreeSet https://blog.csdn.net/fareast_mzh/article/details/119495318 这篇博文的完整代码

2021-08-13

PhpSearchTree.zip

https://blog.csdn.net/fareast_mzh/article/details/109709882 这篇博客的附件代码

2021-05-10

windows环境 gcc/g++ mingw64.zip

解压,把bin目录添加到path环境变量即可。这样就能找到gcc.exe, g++.exe

2021-04-01

axure chrome插件 axure_chrome_extension_V0.6.3.zip

chrome://extensions/ Load unpacked

2021-01-04

DesignPatterns.zip

抽象工厂模式,适配器模式,模板模式,策略模式。先写这几种,对接第3方api可能用到的。http://www.imooc.com/wenda/detail/418385

2020-06-22

composer.phar

安装composer每次需要从外国网站下载,速度慢。直接保存一份,下载快。创建文件composer.bat 内容如下 @php "%~dp0composer.phar" %* 把这2个文件放到跟php.exe一样的目录下,然后把这个目录加入到path环境变量,就可以用composer命令了。

2020-05-19

ThinkPHP电商微信小程序.zip

PHP写的电商小程序,前端小程序,后台接口用的thinkphp。注册微信小程序账号按照文档配置即可使用。可以用来二次开发电商。

2020-04-28

layui_admin_template.zip

layui admin 后台管理模板, 从网站抓取下来的。

2020-04-28

phalcon-stub-3.4.12.zip

phpstorm识别Phalcon语法及提示,需要的包。下载phalcon/phalcon-devtools包,php执行build之后的。phalcon是个C写的扩展,默认phpstorm没有语法提示支持。

2020-04-27

XhUser.vue

下拉选择用户 https://gitee.com/wukongcrm/72crm/blob/master/ux/src/components/CreateCom/XhUser.vue

2020-01-15

梦网短信API V5.5 接口说明.doc

梦网短信API V5.5 接口说明。接口调用代码示例,错误码说明。

2019-12-11

http接口开发文档(国内接口,含接口提交模板).doc

curl socket 调用接口发送短信的文档, 短信模板说明。

2019-11-21

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除