If you’re just starting, using a service like Mailchimp or Sendinblue is a great way to streamline the process and make your newsletters look professional.
日本男子15年如一日吃穿相同,节目组探访却发现他比普通人更幸福?!
而这些看似微不足道的决定,却在不知不觉中消耗着我们的精力,让我们陷入“决策疲劳”的泥潭。
给老手机 pixel 3 xl 刷上中国的电信网络, pixel 4
首先需要 ROOT 2. 解锁 bootloader, 重启进入bootloader, flashing unlock 3. 然后下载 magisk 并且装入手机, 可以用 adb 推送进去: 4. 下载 pixel 3 最终支援的版本的对应的 ROM, 是 12.0.0 (SP1A.210812.016.C1, Feb 2022) https://developers.google.com/android/images#coral 5. 两次解压缩以后, 提取里面的 boot.img 这个文件出来, 同样的用 adb 传入手机 参考别人的教程图片, 用magsik 来 patch 这个 boot.img 成功的结果如 右图. 6. 然后再次用 adb 把这个 boot.img 刷入机器 重启进入bootloader, 刷入 boot 对应 patched 的文件…
[爬虫1] 爬取阿里某宝的司法拍卖数据
升级到了 selenium 4.16 版本, 不需要 chromedriver.exe文件了 以下开头采用 chrome remote dev tools 方法, 多个chrome 远程调用他, 并且执行. 打开chrome并打开URL2也就是某宝司法拍卖的地址了 其中 url 起始页 实际可以使用 https://sf.taobao.com/list/0____%B9%E3%B6%AB.htm 对应的是广东区 定位到每一个法拍的数据, 可以发现, 缩略图的地址应该是: 但是实际抓取 attribute href 获得是 g.alicdn.com/s.gif 检查, 对 img 这个标签抓取 outterHTML 的 atriibute 得到 所以实际的缩略图url的attribute 应该是 data-ks-lazyload. 实际测试 有可能是 src, 也有可能是 data-ks-lazyload. 其他问题 – 目前还没办法找到 a tag 里面 正确的 href 实际的…
WP系列10: google adsense approval and problem solving
今天收到邮件 google adsense 审核 本站 idehe.com 失败. 给了一个自查列表, 挺复杂的, 之后就按照排除法来慢慢优化把. 提示是政策违规, adsense的政策违规包含以下几个方面 Google 发布商政策分为以下几类: https://support.google.com/adsense/answer/10502938?hl=en&visit_id=638385633193353109-2143557855&rd=1 要自查, 又不说明原因, 感觉很难找出来问题. 找到一个检测工具, 尝试了一下, 打算按照他的提示慢慢解决问题: https://www.toolsoverflow.com/blogging/google-adsense-eligibility-checker 总的来说 Essential pages could not be located – contact about privacy Your site do not have essential pages. The essential pages that your site must have are – Contact, About and Privacy. These pages serve…
WP系列9: 中文WordPress SEO优化方法
#optimize #seo #wordpress #中文 #优化 全部WP系列链接. 主要是针对搜索引擎的链接优化, 保持URL使用拼音格式. 任意安装以下两个其中一个的插件, 或者搜索 SLUG 安装拼音的优化插件: – Wenprise Pinyin Slug– Pinyin Slugs我这里安装了5K下载量的 Wenprise Pinyin Slug, 如下图保持默认设置即可了. 在当前wordpress 6.4.2的版本下面, URL自动改成拼音了, 先 save draft 一下 permant link 一般可以设置: /%category%/%postname%/ 生成的 page 页面就是 https://idehe.com/wp-web-build/ 生成的 拼音 post 就是 https://idehe.com/web/wp-xi-lie-9-zhong-wen-wordpress-seo-you-hua-fang-fa/
CYGWIN64 1 – Initiate Setup, first compile in Windows
The following article explain how to install cygwin64 in windows, and use normally in windows shell cmd or powershell, compile code and run code. Install CYGWIN64 Install following extensions, by looking for “complete”, switch “skip” to the software version as below Add all bins executable files to your evironment as below: Now you can run…
感冒时喂饱,发烧时挨饿吗?医学神话的真相
“优先补充液体,尤其是含有电解质和热量的液体,”伯格奎斯特说。“肉汤和果汁是不错的选择,运动饮料也是如此,因为它们含有我们在出汗时流失的电解质。”
WP系列8: move domain from godaddy to cloudflare
Cloudflare is the next infrastructure of the internet domain, with more cutting edge technologies. Let’s embrace it. Export all the domain records from, you will get a .txt file Import into cloudflare. Switch the nameservers, enter the alternative nameservers into godaddy. Double Check Records No need to change anything at the beginning, but doule check…
WP系列7: WP和Cloudflare合并的配置思路
两种方式, 今天咨询大佬朋友, flexible 的方式好像使用更多, 更简洁. wordpress 建站可以关注我的 WP系列. CF 灵活配置 + NGINX 仅处理 HTTP 需要安装 cloudflare 插件 nginx 的配置 仅需要 布置 server 和 listen 80 即可, 其他都是大同小异 其中 用户到 CF 经过 CF的 SSL加密, 然而 服务器不需要布置到 CF的 SSL加密 User –ssl– CF –x– Server 可以参考一下 flexible 配置 即可 CF 严格配置 + Nginx 自行跳转 HTTP 和处理 HTTPS 服务器和…