杜郎俊赏 - dujun.io

开源实例之RSRU

rsru-example封面
前言 RSRU, or Really Small, Really Useful, is a static website builder written in Perl. Weaves HTML templates and plain text files together into low-calorie static pages. 本实例是用 RSRU 搭建的静态博客。 实例地址 http://rsru.dujun.eu.org 实例配置 配置 描述 系统 Debian 开发环境服务端 Perl 5 服务器 Nginx 程序 RSRU 3.2 实例部署 权限要求 具有系统读写权限 已安装 Perl 已安装 Nginx 安装程序 仓库地址:https://github.com/lordfeck/rsru #克隆代码 git clone https://github.com/lordfec...

2023-12-13

阿里邮箱添加DKIM

前言 DKIM 是一种电子邮件安全协议,通过消息加密认证的方式对邮件发送域名进行验证,用于检查电子邮件是否在传输过程中被篡改,保证邮件内容的完整性。 本站使用阿里云企业邮箱(免费版)发送通知邮件,添加 DKIM 可以降低被判定为垃圾邮件的概率。 发送申请 通过postmaster邮箱发送邮件至fankui@alibaba-inc.com,例如: 邮件标题:阿里邮箱DKIM申请+杜郎俊赏+dujun.io 邮件内容: 1)公司名称:杜郎俊赏 2)邮箱域名:dujun.io 添加DNS解析 几天后收到回信,根据提示在邮箱域名 DNS 增加一条 TXT 记录 default._domainkey。配置完成后回复邮件。 完成私钥配置 继续等待几天后收到私钥配置完成的通知邮件,申请流程结束。 验证 通过邮件客户端发信或者调用程序(PHPMailer)发信,自动追加了 DKIM-Signature 字...

2023-12-12

开源实例之Blog-Doc

blog-doc-example封面
前言 The simplest Node.js CMS and SSG! 本实例是基于 Blog-Doc 搭建的静态博客。 实例地址 http://blog-doc.dujun.eu.org 实例配置 配置 描述 系统 Debian 开发环境服务端 Node.js 18 服务器 Nginx 程序 Blog-Doc 2.4.0 实例部署 权限要求 具有系统读写权限 已安装 Node.js 已安装 Nginx 安装程序 仓库地址:https://github.com/LebCit/blog-doc #克隆代码 git clone https://github.com/LebCit/blog-doc.git cd blog-doc #安装依赖 npm i #生成静态文件 npm run build 实例体验 进入实例深度体验 后记 本实例仅供参考,不定期重置数据。 体验更多开源实例

2023-12-12

开源实例之unlimited-blog-works

unlimited-blog-works-example封面
前言 A simple static blog generator for publishing on GitHub Pages 实例地址 http://unlimited-blog-works.dujun.eu.org 实例配置 配置 描述 系统 Debian 开发环境服务端 Node.js 18 服务器 Nginx 程序 unlimited-blog-works 实例部署 权限要求 具有系统读写权限 已安装 Node.js 已安装 Nginx 安装程序 仓库地址:https://github.com/kjirou/unlimited-blog-works 项目地址:https://www.npmjs.com/package/unlimited-blog-works #安装 unlimited-blog-works npm i -g unlimited-blog-works #创建项目...

2023-12-12

开源实例之cycle

cycle-example封面
前言 An opinionated static site engine in Common Lisp 实例地址 http://cycle.dujun.eu.org 实例配置 配置 描述 系统 Debian 服务器 Nginx 程序 cycle 0.3.0 实例部署 权限要求 具有系统读写权限 已安装 Nginx 安装程序 程序仓库:https://github.com/asimpson/cycle 示例仓库:https://github.com/asimpson/blog #克隆代码 git clone https://github.com/asimpson/blog.git cd blog #下载 cycle 程序 wget https://github.com/asimpson/cycle/releases/download/v0.3.0/cycle-linux mv cycle-l...

2023-12-12

开源实例之mdsh

mdsh-example封面
前言 A simple static site generator, using Markdown and Bash 实例地址 http://mdsh.dujun.eu.org 实例配置 配置 描述 系统 Debian 服务器 Nginx 程序 mdsh 实例部署 权限要求 具有系统读写权限 已安装 Nginx 安装程序 仓库地址:https://github.com/sc0ttj/mdsh #克隆代码 git clone https://github.com/sc0ttj/mdsh.git cd mdsh #完善配置 .app/setup.sh source .site_config #编写文章 new post #生成静态文件 rebuild -all 实例体验 进入实例深度体验 后记 本实例仅供参考,不定期重置数据。 体验更多开源实例

2023-12-12

开源实例之Markedista

markedista-example封面
前言 Static site generator based on npm, marked and jsdom 实例地址 http://markedista.dujun.eu.org 实例配置 配置 描述 系统 Debian 开发环境服务端 Node.js 16 服务器 Nginx 程序 Markedista 实例部署 权限要求 具有系统读写权限 已安装 Node.js 已安装 Nginx 安装程序 仓库地址:https://github.com/padurean/markedista #克隆代码 git clone https://github.com/padurean/markedista.git cd markedista #安装依赖 npm i #编写 markdown 文件放入 _src/_posts/_to-render #生成静态文件 npm run render 实例体验...

2023-12-12

开源实例之Meink

meink-example封面
前言 Meink是一个基于Golang的轻量级静态博客构建工具,可以快速搭建博客网站。它无依赖跨平台,配置简单构建快速,以Markdown格式文本输入源,注重简洁易用。 实例地址 http://meink.dujun.eu.org 实例配置 配置 描述 系统 Debian 服务器 Nginx 程序 Meink 1.0.1 实例部署 权限要求 具有系统读写权限 已安装 Nginx 安装程序 仓库地址:https://github.com/HanJinyan/Meink 下载最新 release 包,解压到目录。 #新建文章 ./Meink_linux_amd64 new 扬州慢·淮左名都 #本地运行并自动生成静态文件 ./Meink_linux_amd64 run 实例体验 进入实例深度体验 后记 本实例仅供参考,不定期重置数据。 体验更多开源实例

2023-12-12

健忘

吃早饭的时候反复在心里提醒自己出门要带的东西,到了路上才懊恼地发现果然还是忘记带了。这不是偶然发生的健忘的故事了,而是频繁发生的。 所以我有一些思考,从地球的尺度来看,现代人类的进化时间是很短的,人类寿命大幅度延长了,而基因衰败还来不及进化,仍然在按古人类的寿命执行身体机能的衰败曲线。假设我按一般人活到 80 岁,我现在才 38 岁,但是明显感受到身体机能断崖式地下降,首先是性能力,其次就是记忆力。也就是大半的人生要在无趣中度过。我认为要匹配 80 岁的寿命,至少在 60 岁开始启动衰败才是合理的。 另外我想从事体力劳动应该会缓解身体机能的过快下降。年轻时享受了坐办公室的体面,年长了就还回去了。 life never gives anything for nothing, and that a price is always exacted for what fate bestows. 所...

2023-12-09

开源实例之pekyll

pekyll-example封面
前言 markdown static blog generator written in PHP with the powerful of Laravel blade template engine. 实例地址 http://pekyll.dujun.eu.org 实例配置 配置 描述 系统 Debian 开发环境服务端 PHP 7.4 服务器 Nginx 程序 pekyll 0.2.9 实例部署 权限要求 具有系统读写权限 已安装 PHP 已安装 Nginx 安装程序 仓库地址:https://github.com/bangnokia/pekyll #安装 pekyll composer global require bangnokia/pekyll #创建项目 pekyll new blog cd blog #编辑 yyyy-mm-dd-slug.md 格式的文档放入 posts 目录...

2023-12-08

分页: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183