#hexo — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #hexo, aggregated by home.social.
-
Hmm… just noticed that the blog still has a few rough edges:
- Code blocks have no copy button yet.
- Long single-line code snippets neither wrap nor show a horizontal scrollbar.
Needs fixing. But definitely not today. The code can spend the evening reflecting on its life choices. 🙃
-
Hmm… eben bemerkt, dass der Blog noch ein paar unrunde Ecken hat:
- Codeblöcke haben noch keine Copy-Funktion.
- Lange Einzeiler werden weder umgebrochen noch horizontal scrollbar angezeigt.
Muss ich fixen. Aber ganz sicher nicht mehr heute. Der Code darf jetzt erst einmal über seine Lebensentscheidungen nachdenken. 🙃
-
Upcoming #Blog Release 🚀
Saturday, August 15, 2026, 00:00 CEST – my #selfhosted blog goes live.
Landing page & more have been prepped:
✅ #Accessibility menu
✅ #Responsive design improved
✅ #Imprint & #Privacy pagesTech stack: #Hexo with 3 custom #Addons (will be #OpenSource)
Details at launch.#Fediverse #Mastodon #FOSS #StaticSite #SelfHosting #SysAdmin
-
Upcoming #Blog Release 🚀
Saturday, August 15, 2026, 00:00 CEST – my #selfhosted blog goes live.
Landing page & more have been prepped:
✅ #Accessibility menu
✅ #Responsive design improved
✅ #Imprint & #Privacy pagesTech stack: #Hexo with 3 custom #Addons (will be #OpenSource)
Details at launch.#Fediverse #Mastodon #FOSS #StaticSite #SelfHosting #SysAdmin
-
Upcoming #Blog Release 🚀
Saturday, August 15, 2026, 00:00 CEST – my #selfhosted blog goes live.
Landing page & more have been prepped:
✅ #Accessibility menu
✅ #Responsive design improved
✅ #Imprint & #Privacy pagesTech stack: #Hexo with 3 custom #Addons (will be #OpenSource)
Details at launch.#Fediverse #Mastodon #FOSS #StaticSite #SelfHosting #SysAdmin
-
Upcoming #Blog Release 🚀
Saturday, August 15, 2026, 00:00 CEST – my #selfhosted blog goes live.
Landing page & more have been prepped:
✅ #Accessibility menu
✅ #Responsive design improved
✅ #Imprint & #Privacy pagesTech stack: #Hexo with 3 custom #Addons (will be #OpenSource)
Details at launch.#Fediverse #Mastodon #FOSS #StaticSite #SelfHosting #SysAdmin
-
Upcoming #Blog Release 🚀
Saturday, August 15, 2026, 00:00 CEST – my #selfhosted blog goes live.
Landing page & more have been prepped:
✅ #Accessibility menu
✅ #Responsive design improved
✅ #Imprint & #Privacy pagesTech stack: #Hexo with 3 custom #Addons (will be #OpenSource)
Details at launch.#Fediverse #Mastodon #FOSS #StaticSite #SelfHosting #SysAdmin
-
Bevorstehender #Blog Release 🚀
Samstag, 15. August 2026, 00:00 CEST – mein #selfhosted Blog geht online.
Landing Page & Co wurden vorbereitet:
✅ #Barrierefreiheit Menü
✅ #Responsive verfeinert
✅ #Impressum & #DatenschutzTech-Stack: #Hexo mit 3 eigenen #Addons (werden #OpenSource)
Details bei Launch.#Fediverse #Mastodon #FreieSoftware #StaticSite #SelfHosting #SysAdmin
-
Bevorstehender #Blog Release 🚀
Samstag, 15. August 2026, 00:00 CEST – mein #selfhosted Blog geht online.
Landing Page & Co wurden vorbereitet:
✅ #Barrierefreiheit Menü
✅ #Responsive verfeinert
✅ #Impressum & #DatenschutzTech-Stack: #Hexo mit 3 eigenen #Addons (werden #OpenSource)
Details bei Launch.#Fediverse #Mastodon #FreieSoftware #StaticSite #SelfHosting #SysAdmin
-
Bevorstehender #Blog Release 🚀
Samstag, 15. August 2026, 00:00 CEST – mein #selfhosted Blog geht online.
Landing Page & Co wurden vorbereitet:
✅ #Barrierefreiheit Menü
✅ #Responsive verfeinert
✅ #Impressum & #DatenschutzTech-Stack: #Hexo mit 3 eigenen #Addons (werden #OpenSource)
Details bei Launch.#Fediverse #Mastodon #FreieSoftware #StaticSite #SelfHosting #SysAdmin
-
Bevorstehender #Blog Release 🚀
Samstag, 15. August 2026, 00:00 CEST – mein #selfhosted Blog geht online.
Landing Page & Co wurden vorbereitet:
✅ #Barrierefreiheit Menü
✅ #Responsive verfeinert
✅ #Impressum & #DatenschutzTech-Stack: #Hexo mit 3 eigenen #Addons (werden #OpenSource)
Details bei Launch.#Fediverse #Mastodon #FreieSoftware #StaticSite #SelfHosting #SysAdmin
-
Bevorstehender #Blog Release 🚀
Samstag, 15. August 2026, 00:00 CEST – mein #selfhosted Blog geht online.
Landing Page & Co wurden vorbereitet:
✅ #Barrierefreiheit Menü
✅ #Responsive verfeinert
✅ #Impressum & #DatenschutzTech-Stack: #Hexo mit 3 eigenen #Addons (werden #OpenSource)
Details bei Launch.#Fediverse #Mastodon #FreieSoftware #StaticSite #SelfHosting #SysAdmin
-
Hexo 维护者误将 Hexo repo 设置为 private;现已恢复。
Watcher 和 Stargazer 均已丢失;订户如果想的话可以重新 watch/star。
gh:hexojs#5775
[感谢宝硕提供此消息。]
#Hexo
Telegram 原文 -
I made a highlights poster for Hexo Theme Cupertino, showcasing some subtle details of it.
-
I made a highlights poster for Hexo Theme Cupertino, showcasing some subtle details of it.
-
改成用pm2管理hexo了,再也不用 cd ~/blog/hexo && hexo clean && hexo g && pkill -f hexo && nohup hexo s -p 8097 了
1. npm install -g pm2
2. nano run_hexo.js
在~/blog/hexo下
内容为:
const { exec } = require('child_process');
exec('hexo server -p 8097', (err, stdout, stderr) => {
if (err) {
console.error(err);
return;
}
console.log(stdout);
});3. pm2 start run_hexo.js --name "hexo-blog"
4. hexo clean && hexo g
-
改成用pm2管理hexo了,再也不用 cd ~/blog/hexo && hexo clean && hexo g && pkill -f hexo && nohup hexo s -p 8097 了
1. npm install -g pm2
2. nano run_hexo.js
在~/blog/hexo下
内容为:
const { exec } = require('child_process');
exec('hexo server -p 8097', (err, stdout, stderr) => {
if (err) {
console.error(err);
return;
}
console.log(stdout);
});3. pm2 start run_hexo.js --name "hexo-blog"
4. hexo clean && hexo g
-
改成用pm2管理hexo了,再也不用 cd ~/blog/hexo && hexo clean && hexo g && pkill -f hexo && nohup hexo s -p 8097 了
1. npm install -g pm2
2. nano run_hexo.js
在~/blog/hexo下
内容为:
const { exec } = require('child_process');
exec('hexo server -p 8097', (err, stdout, stderr) => {
if (err) {
console.error(err);
return;
}
console.log(stdout);
});3. pm2 start run_hexo.js --name "hexo-blog"
4. hexo clean && hexo g
-
改成用pm2管理hexo了,再也不用 cd ~/blog/hexo && hexo clean && hexo g && pkill -f hexo && nohup hexo s -p 8097 了
1. npm install -g pm2
2. nano run_hexo.js
在~/blog/hexo下
内容为:
const { exec } = require('child_process');
exec('hexo server -p 8097', (err, stdout, stderr) => {
if (err) {
console.error(err);
return;
}
console.log(stdout);
});3. pm2 start run_hexo.js --name "hexo-blog"
4. hexo clean && hexo g
-
1. 网站验证,新增hexo.feddit.social 和 github.com/KipJayChou
- '<a rel="me" href="https://mstdn.feddit.social/@admin">Mastodon</a>'
Github则在Social accounts添加https://mstdn.feddit.social/@admin 即可2. 作者归属,在mstdn.feddit.social显示正常,但是在dev.phanpy.social还未正常显示
- '<meta name="fediverse:creator" content="@admin">'3. 为hexo.feddit.social 添加iOS/iPadOS PWA所需图标
- '<link rel="apple-touch-icon" href="/images/favicon.png">'4. 为两篇博客文章更换封面,灵感来源于https://blog.zhheo.com/ ,使用咕噜咕噜的NNP生成
#hexo #github #mastodon #phanpy #pwa #ios #ipados #blog #博客封面
-
1. 网站验证,新增hexo.feddit.social 和 github.com/KipJayChou
- '<a rel="me" href="https://mstdn.feddit.social/@admin">Mastodon</a>'
Github则在Social accounts添加https://mstdn.feddit.social/@admin 即可2. 作者归属,在mstdn.feddit.social显示正常,但是在dev.phanpy.social还未正常显示
- '<meta name="fediverse:creator" content="@admin">'3. 为hexo.feddit.social 添加iOS/iPadOS PWA所需图标
- '<link rel="apple-touch-icon" href="/images/favicon.png">'4. 为两篇博客文章更换封面,灵感来源于https://blog.zhheo.com/ ,使用咕噜咕噜的NNP生成
#hexo #github #mastodon #phanpy #pwa #ios #ipados #blog #博客封面
-
1. 网站验证,新增hexo.feddit.social 和 github.com/KipJayChou
- '<a rel="me" href="https://mstdn.feddit.social/@admin">Mastodon</a>'
Github则在Social accounts添加https://mstdn.feddit.social/@admin 即可2. 作者归属,在mstdn.feddit.social显示正常,但是在dev.phanpy.social还未正常显示
- '<meta name="fediverse:creator" content="@admin">'3. 为hexo.feddit.social 添加iOS/iPadOS PWA所需图标
- '<link rel="apple-touch-icon" href="/images/favicon.png">'4. 为两篇博客文章更换封面,灵感来源于https://blog.zhheo.com/ ,使用咕噜咕噜的NNP生成
#hexo #github #mastodon #phanpy #pwa #ios #ipados #blog #博客封面
-
1. 网站验证,新增hexo.feddit.social 和 github.com/KipJayChou
- '<a rel="me" href="https://mstdn.feddit.social/@admin">Mastodon</a>'
Github则在Social accounts添加https://mstdn.feddit.social/@admin 即可2. 作者归属,在mstdn.feddit.social显示正常,但是在dev.phanpy.social还未正常显示
- '<meta name="fediverse:creator" content="@admin">'3. 为hexo.feddit.social 添加iOS/iPadOS PWA所需图标
- '<link rel="apple-touch-icon" href="/images/favicon.png">'4. 为两篇博客文章更换封面,灵感来源于https://blog.zhheo.com/ ,使用咕噜咕噜的NNP生成
#hexo #github #mastodon #phanpy #pwa #ios #ipados #blog #博客封面
-
1. 网站验证,新增hexo.feddit.social 和 github.com/KipJayChou
- '<a rel="me" href="https://mstdn.feddit.social/@admin">Mastodon</a>'
Github则在Social accounts添加https://mstdn.feddit.social/@admin 即可2. 作者归属,在mstdn.feddit.social显示正常,但是在dev.phanpy.social还未正常显示
- '<meta name="fediverse:creator" content="@admin">'3. 为hexo.feddit.social 添加iOS/iPadOS PWA所需图标
- '<link rel="apple-touch-icon" href="/images/favicon.png">'4. 为两篇博客文章更换封面,灵感来源于https://blog.zhheo.com/ ,使用咕噜咕噜的NNP生成
#hexo #github #mastodon #phanpy #pwa #ios #ipados #blog #博客封面
-
Callouts are available in Hexo Theme Cupertino v2.3.0.
The callouts, <htc-callout>, can be used like a native HTML element, which are built on web components.
https://github.com/MrWillCom/hexo-theme-cupertino/releases/tag/v2.3.0
-
Callouts are available in Hexo Theme Cupertino v2.3.0.
The callouts, <htc-callout>, can be used like a native HTML element, which are built on web components.
https://github.com/MrWillCom/hexo-theme-cupertino/releases/tag/v2.3.0
-
#求助喵友会 #hexo
咱遇到一个很抽象的事情,目前不确定是不是[email protected]的特性
就是当你在本地hexo s调试的时候,[email protected]在本地无法正常渲染分类页面,但是当你部署到云端就可以正常渲染。
也不是说hexo读不到分类只是说无法正常渲染,今天要测试了才发现的这个问题,所有AI都问过了主题也一样切换过,都是同样的情况。所以目前只能怀疑是[email protected]的特性吧:azuki_san01:~~
破案了!确实是[email protected]的特性,在今天更新的8.1版本已经修复了 -
Tak na szybko #blog... #Hexo jest fajne... https://blog.jurkiewicz.pro/
-
Tak na szybko #blog... #Hexo jest fajne... https://blog.jurkiewicz.pro/
-
Tak na szybko #blog... #Hexo jest fajne... https://blog.jurkiewicz.pro/
-
Tak na szybko #blog... #Hexo jest fajne... https://blog.jurkiewicz.pro/
-
✍️ Hexo Generator Anything 2.0
After four years, there is something new for #Hexo users who utilize my plugin ...
-
✍️ Hexo Generator Anything 2.0
After four years, there is something new for #Hexo users who utilize my plugin ...
-
✍️ Hexo Generator Anything 2.0
After four years, there is something new for #Hexo users who utilize my plugin ...
-
✍️ Hexo Generator Anything 2.0
After four years, there is something new for #Hexo users who utilize my plugin ...
-
✍️ Hexo Generator Anything 2.0
After four years, there is something new for #Hexo users who utilize my plugin ...
-
Hexo Theme Cupertino v2 is released! 🎊
-
Hexo Theme Cupertino v2 is released! 🎊
-
Hexo Theme Cupertino v2 is released! 🎊
-
My #blog migrated from #hexo to #jekyll and it feels way "cleaner" now. Next: writing down two topics that are stuck in "rewriting" limbo since july this year...
blog url: https://deb4sh.github.io/
-
My #blog migrated from #hexo to #jekyll and it feels way "cleaner" now. Next: writing down two topics that are stuck in "rewriting" limbo since july this year...
blog url: https://deb4sh.github.io/
-
My #blog migrated from #hexo to #jekyll and it feels way "cleaner" now. Next: writing down two topics that are stuck in "rewriting" limbo since july this year...
blog url: https://deb4sh.github.io/
-
My #blog migrated from #hexo to #jekyll and it feels way "cleaner" now. Next: writing down two topics that are stuck in "rewriting" limbo since july this year...
blog url: https://deb4sh.github.io/
-
"Skip to content" is ready on Hexo Theme Cupertino!
https://github.com/MrWillCom/hexo-theme-cupertino/commit/046d68613659c2c46894e3dbdffdfdf64707237f
-
"Skip to content" is ready on Hexo Theme Cupertino!
https://github.com/MrWillCom/hexo-theme-cupertino/commit/046d68613659c2c46894e3dbdffdfdf64707237f
-
Hey y'all ...
Just a piece of information. We will be migrating the current #XeroLinux main site to #Hexo from #Hugo. For now it will remain functional while we work on that behind the scenes. Hugo is way too limiting.
Keep an eye out for that. #FOSS #WebDev #OpenSource
-
Hey y'all ...
Just a piece of information. We will be migrating the current #XeroLinux main site to #Hexo from #Hugo. For now it will remain functional while we work on that behind the scenes. Hugo is way too limiting.
Keep an eye out for that. #FOSS #WebDev #OpenSource
-
Hey y'all ...
Just a piece of information. We will be migrating the current #XeroLinux main site to #Hexo from #Hugo. For now it will remain functional while we work on that behind the scenes. Hugo is way too limiting.
Keep an eye out for that. #FOSS #WebDev #OpenSource
-
Hey y'all ...
Just a piece of information. We will be migrating the current #XeroLinux main site to #Hexo from #Hugo. For now it will remain functional while we work on that behind the scenes. Hugo is way too limiting.
Keep an eye out for that. #FOSS #WebDev #OpenSource
-
Hey y'all ...
Just a piece of information. We will be migrating the current #XeroLinux main site to #Hexo from #Hugo. For now it will remain functional while we work on that behind the scenes. Hugo is way too limiting.
Keep an eye out for that. #FOSS #WebDev #OpenSource