WishMeLz

生活其实很有趣

Parallels Desktop 19.3.0 54924 破解教程(pd19永久授权)

转至:https://www.luoxx.top/archives/pd-18-active?cid=1621、在pd官网下载安装包并且安装,安装完成后退出pd,也可以直接点击下方地址下载。(按需下载所需版本,目前推荐下载19.1.0)19.0.0 https://download.parallels.com/desktop/v19/19.0.0-54570/ParallelsDesktop-19.0.0-54570.dmg19.1.0 https://download.parallels.com/desktop/v19/19.1.0-54729/...

修改原型链导致前端预览PDF异常

添加/修改原型链,导致pdf.js解析异常, 可能此库对原型链做了防污染处理报错如下The `Array.prototype` contains unexpected enumerable properties: hasItem, removeItem; thus breaking e.g. `for...in` iteration of `Array`s其中 hasItem , removeItem 为自定义添加的内容解决方法 let unexpectedProperties = [], logArr = []; for (let key...

移动端 pdfh5 预览pdf

import pdfh5 from "pdfh5"; import "pdfh5/css/pdfh5.css";let pdfH5Res = new pdfh5("#signpdf", { pdfurl: resUrl, responseType: "blob", });报错异常The `Array.prototype` contains unexpected enumerable properties: hasItem, removeItem; ...

金额大写

金额转换大写引用与:https://github.com/cnwhy/nzh/blob/master/lib/nzh.cn.jsfunction createCommonjsModule(fn, module) { return module = { exports: {} }, fn(module, module.exports), module.exports; } var utils = createCommonjsModule(function (module, exports) { var REG_NUMBER = /^([+-...

x-data-spreadsheet 导致页面无法粘贴

此插件会阻止页面无法粘贴,阻止这个监听事件具体说明:https://github.com/myliang/x-spreadsheet/issues/372 window.addEventListener('paste', function (event) { event.stopPropagation(); }, true);

网络剪切板

网络剪切板、在线编辑文档,多端同步Githubhttps://github.com/pereorga/minimalist-web-notepad示例https://note.ms/https://notecho.in/https://netcut.cn/ 带密码

IOS 破壳工具

用CocoaTop查看需要砸壳App的PID进程,进入trolldecryptor在砸壳框内输入PIDCocoaTop 获取PIDhttps://github.com/D0m0/CocoaTop/备:https://github.com/WishMelz/file/blob/master/2023/CocoaTopTS_BZ.ipatrolldecryptor 破壳工具https://github.com/wh1te4ever/trolldecryptor备:https://github.com/WishMelz/file/blob/master/...

装机笔记

微软常用运行库合集 2023.11.13https://www.52pojie.cn/forum.php?mod=viewthread&tid=1856110&highlight=%CE%A2%C8%ED%B3%A3%D3%C3https://www.lanzoue.com/iH1jf1ep6owdhttps://www.lanzoux.com/u/DreamcastKMS激活https://cmwtat.cloudmoe.com/cn.html OR https://github.com/TGSAN/CMWTAT_Digital_Edition

IOS去广告整理

通过快捷指令+URL Scheme快速打开app,安装第三方的DNS服务器(如18bit),使用巨魔安装破解版IPA1、快捷指令使用 APP 的 URL Scheme 快速启动将快捷指令添加到桌面2、使用第三方DNS屏蔽服务器3、巨魔安装破解版本IPA具体ipa下载途径:https://blog.itsse.cn/1410.html

女儿红酒类

传统绍兴黄酒按酿造工艺可以分成元红、加饭、善酿、香雪四大类元红元红因古时人们把家里最好的酒装入涂成红色的坛子里而得名,在比较隆重的场合宴请宾客时才使用。当家里有女儿或儿子出生时,常常会留一坛好酒埋入窖中待成年后(洞房花烛夜或金榜题名时)方才取用,故衍生出“女儿红”、“状元红”的说法。此酒发酵完全,含残糖少,酒液色泽橙黄清亮,有独特芳香,味爽微苦,口感通常比较单薄。酒质特点:是干型黄酒的代表,酒度为16-19度,含糖量为0.4-0.8克/100毫升,总酸度在0.45克/100毫升以下。配餐适用:适宜配蔬菜类、海鲜虾、蟹类菜肴和海蜇皮等冷盘。加饭加饭酒...

vue-pdf 预览印章丢失

网上各种教程修改源码问题,可以自己修改源码发版npm包,也可使用别人修改之后的包vue-pdf-signature-5 使用方法与vue-pdf 一样

订阅转换

Dockerhttps://hub.docker.com/r/tindy2013/subconverter https://github.com/tindy2013/subconverter/blob/master/README-docker.mddocker run -d --restart=always -p 25500:25500 tindy2013/subconverter:latest # then check its status curl http://localhost:25500/version server { ...

Cloudflare Workers 反代网站

// 映射 URL 和对应的目标网址 const urlMappings = { 'https://xxx.xxx.workers.dev/xxx1': 'https://api.xxx.io/1xxx/xxx/xxx', 'https://xxx.xxx.workers.dev/xxx2': 'https://api.xxx.io/2xxx/xxx/xxx', }; addEventListener('fetch', event => { event.respondWith(handleRequest(...

markdown 编辑器 md编辑器

腾讯开源的 markdown 编辑器 https://github.com/Tencent/cherry-markdown字节跳动开源的 markdown 编辑器 https://github.com/bytedance/bytemd

echarts 点击事件

通用点击事件 myChart.on('click', function (params: any) { if (params.componentType == "xAxis") { } // if (params.componentType == "series") { // } }) 不是数据的地方点击不触发 myChart.getZr().on('click', (params: any) =>...