mirror of
https://www.gitlink.org.cn/mayx/mayx.gitlink.net
synced 2026-08-22 18:00:14 +08:00
Compare commits
28 Commits
AR-Backup-
...
111dc1e25f
| Author | SHA1 | Date | |
|---|---|---|---|
| 111dc1e25f | |||
| c4ae25dcb1 | |||
| 862bffac80 | |||
| c888a89f41 | |||
| b48e93890c | |||
| f6b35814b1 | |||
| fe26e4f6c3 | |||
| 45f1183f9a | |||
| dd1141d872 | |||
| c0ca105edc | |||
| bc45ef27b8 | |||
| 47f623b8eb | |||
| 33122e34b5 | |||
| 100d3405f7 | |||
| a7ff7c2c37 | |||
| 47e04279d0 | |||
| cd478c22a2 | |||
| e094b6d205 | |||
| e8653b0efd | |||
| e516a5d08c | |||
| cf76264bb0 | |||
| 0a7608b3f0 | |||
| 5fd8d2fe0f | |||
| c9dfb10733 | |||
| 23fff44d79 | |||
| 6630ba964b | |||
| 00aec9bad0 | |||
| 2ab6982684 |
@ -22,6 +22,8 @@ if (!norunFlag) {
|
|||||||
var sleepTimer_ = null;
|
var sleepTimer_ = null;
|
||||||
var AITalkFlag = false;
|
var AITalkFlag = false;
|
||||||
var talkNum = 0;
|
var talkNum = 0;
|
||||||
|
// 暴露到全局,供 pjax.js 在页面切换后重新调用
|
||||||
|
window._live2d = { initTips: null, showMessage: null, showHitokoto: null };
|
||||||
(function () {
|
(function () {
|
||||||
function renderTip(template, context) {
|
function renderTip(template, context) {
|
||||||
var tokenReg = /(\\)?\{([^\{\}\\]+)(\\)?\}/g;
|
var tokenReg = /(\\)?\{([^\{\}\\]+)(\\)?\}/g;
|
||||||
@ -33,11 +35,11 @@ if (!norunFlag) {
|
|||||||
var currentObject = context;
|
var currentObject = context;
|
||||||
var i, length, variable;
|
var i, length, variable;
|
||||||
for (i = 0, length = variables.length; i < length; ++i) {
|
for (i = 0, length = variables.length; i < length; ++i) {
|
||||||
variable = variables[i];
|
variable = currentObject[variables[i]];
|
||||||
currentObject = currentObject[variable];
|
if (variable === undefined || variable === null) return '';
|
||||||
if (currentObject === undefined || currentObject === null) return '';
|
currentObject = variable;
|
||||||
}
|
}
|
||||||
return currentObject;
|
return String(currentObject);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -56,14 +58,20 @@ if (!norunFlag) {
|
|||||||
showMessage('你都复制了些什么呀,转载要记得加上出处哦~~', 5000);
|
showMessage('你都复制了些什么呀,转载要记得加上出处哦~~', 5000);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// 缓存 message.json 数据,供 PJAX 重绑定使用
|
||||||
|
var tipsData = null;
|
||||||
|
|
||||||
function initTips() {
|
function initTips() {
|
||||||
$.ajax({
|
$.ajax({
|
||||||
cache: true,
|
cache: true,
|
||||||
url: message_Path + 'message.json',
|
url: message_Path + 'message.json',
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
success: function (result) {
|
success: function (result) {
|
||||||
|
tipsData = result;
|
||||||
|
// 解绑旧事件(用命名空间避免影响其他绑定)
|
||||||
$.each(result.mouseover, function (index, tips) {
|
$.each(result.mouseover, function (index, tips) {
|
||||||
$(tips.selector).mouseover(function () {
|
$(tips.selector).off('mouseover._live2d_tips mouseout._live2d_tips');
|
||||||
|
$(tips.selector).on('mouseover._live2d_tips', function () {
|
||||||
var text = tips.text;
|
var text = tips.text;
|
||||||
if (Array.isArray(tips.text)) text = tips.text[Math.floor(Math.random() * tips.text.length + 1) - 1];
|
if (Array.isArray(tips.text)) text = tips.text[Math.floor(Math.random() * tips.text.length + 1) - 1];
|
||||||
text = text.renderTip({ text: $(this).text() });
|
text = text.renderTip({ text: $(this).text() });
|
||||||
@ -72,7 +80,7 @@ if (!norunFlag) {
|
|||||||
clearInterval(liveTlakTimer);
|
clearInterval(liveTlakTimer);
|
||||||
liveTlakTimer = null;
|
liveTlakTimer = null;
|
||||||
});
|
});
|
||||||
$(tips.selector).mouseout(function () {
|
$(tips.selector).on('mouseout._live2d_tips', function () {
|
||||||
showHitokoto();
|
showHitokoto();
|
||||||
if (liveTlakTimer == null) {
|
if (liveTlakTimer == null) {
|
||||||
liveTlakTimer = window.setInterval(function () {
|
liveTlakTimer = window.setInterval(function () {
|
||||||
@ -82,7 +90,8 @@ if (!norunFlag) {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
$.each(result.click, function (index, tips) {
|
$.each(result.click, function (index, tips) {
|
||||||
$(tips.selector).click(function () {
|
$(tips.selector).off('click._live2d_tips');
|
||||||
|
$(tips.selector).on('click._live2d_tips', function () {
|
||||||
if (hitFlag) {
|
if (hitFlag) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
@ -106,23 +115,26 @@ if (!norunFlag) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
window._live2d.initTips = initTips;
|
||||||
initTips();
|
initTips();
|
||||||
|
|
||||||
var text;
|
var text;
|
||||||
if (document.referrer !== '' && document.referrer.split('/')[2] !== window.location.host) {
|
if (document.referrer !== '' && document.referrer.split('/')[2] !== window.location.host) {
|
||||||
var referrer = document.createElement('a');
|
var referrer = document.createElement('a');
|
||||||
referrer.href = document.referrer;
|
referrer.href = document.referrer;
|
||||||
text = '嗨!来自 <span style="color:#0099cc;">' + referrer.hostname + '</span> 的朋友!';
|
|
||||||
var domain = referrer.hostname.split('.')[1];
|
var domain = referrer.hostname.split('.')[1];
|
||||||
if (domain == 'baidu') {
|
if (domain == 'baidu' || domain == 'so' || domain == 'google') {
|
||||||
text = '嗨! 来自 百度搜索 的朋友!<br>欢迎访问<span style="color:#0099cc;">「 ' + document.title.split(' | ')[0] + ' 」</span>';
|
var source = domain == 'baidu' ? '百度搜索' : domain == 'so' ? '360搜索' : '谷歌搜索';
|
||||||
} else if (domain == 'so') {
|
text = '嗨! 来自 ' + source + ' 的朋友!<br>欢迎访问<span style="color:#0099cc;">「 ' + document.title.split(' | ')[0] + ' 」</span>';
|
||||||
text = '嗨! 来自 360搜索 的朋友!<br>欢迎访问<span style="color:#0099cc;">「 ' + document.title.split(' | ')[0] + ' 」</span>';
|
} else {
|
||||||
} else if (domain == 'google') {
|
text = '嗨!来自 <span style="color:#0099cc;">' + referrer.hostname + '</span> 的朋友!';
|
||||||
text = '嗨! 来自 谷歌搜索 的朋友!<br>欢迎访问<span style="color:#0099cc;">「 ' + document.title.split(' | ')[0] + ' 」</span>';
|
|
||||||
}
|
}
|
||||||
|
} else if (typeof window._pjaxGetWelcomeText === 'function') {
|
||||||
|
// 复用 pjax.js 中的欢迎语生成函数,避免重复逻辑
|
||||||
|
text = window._pjaxGetWelcomeText();
|
||||||
} else {
|
} else {
|
||||||
if (window.location.pathname == "/") { //主页URL判断,需要斜杠结尾
|
// pjax.js 尚未加载时的兜底(首次访问且 pjax.js 在 message.js 之后加载)
|
||||||
|
if (window.location.pathname == "/") {
|
||||||
var now = (new Date()).getHours();
|
var now = (new Date()).getHours();
|
||||||
if (now > 23 || now <= 5) {
|
if (now > 23 || now <= 5) {
|
||||||
text = '你是夜猫子呀?这么晚还不睡觉,明天起的来嘛?';
|
text = '你是夜猫子呀?这么晚还不睡觉,明天起的来嘛?';
|
||||||
@ -172,6 +184,7 @@ if (!norunFlag) {
|
|||||||
console.log(sleepTimer_);
|
console.log(sleepTimer_);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
window._live2d.showHitokoto = showHitokoto;
|
||||||
|
|
||||||
function checkSleep() {
|
function checkSleep() {
|
||||||
var sleepStatu = sessionStorage.getItem("Sleepy");
|
var sleepStatu = sessionStorage.getItem("Sleepy");
|
||||||
@ -213,6 +226,7 @@ if (!norunFlag) {
|
|||||||
//if (timeout === null) timeout = 5000;
|
//if (timeout === null) timeout = 5000;
|
||||||
//hideMessage(timeout);
|
//hideMessage(timeout);
|
||||||
}
|
}
|
||||||
|
window._live2d.showMessage = showMessage;
|
||||||
function talkValTimer() {
|
function talkValTimer() {
|
||||||
$('#live_talk').val('1');
|
$('#live_talk').val('1');
|
||||||
}
|
}
|
||||||
@ -384,74 +398,100 @@ if (!norunFlag) {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
//获取音乐信息初始化
|
//获取音乐信息初始化
|
||||||
var bgmListInfo = $('input[name=live2dBGM]');
|
var $bgm = $('#live2d_bgm');
|
||||||
if (bgmListInfo.length == 0) {
|
|
||||||
$('#musicButton').hide();
|
// 音乐按钮点击事件(幂等,使用命名空间避免重复绑定)
|
||||||
} else {
|
$('#musicButton').off('click._bgm').on('click._bgm', function () {
|
||||||
var bgmPlayNow = parseInt($('#live2d_bgm').attr('data-bgm'));
|
if ($('#musicButton').hasClass('play')) {
|
||||||
var bgmPlayTime = 0;
|
$bgm[0].pause();
|
||||||
var live2dBGM_Num = sessionStorage.getItem("live2dBGM_Num");
|
$('#musicButton').removeClass('play');
|
||||||
var live2dBGM_PlayTime = sessionStorage.getItem("live2dBGM_PlayTime");
|
sessionStorage.setItem("live2dBGM_IsPlay", '1');
|
||||||
if (live2dBGM_Num) {
|
} else {
|
||||||
if (live2dBGM_Num <= $('input[name=live2dBGM]').length - 1) {
|
$bgm[0].play();
|
||||||
bgmPlayNow = parseInt(live2dBGM_Num);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (live2dBGM_PlayTime) {
|
|
||||||
bgmPlayTime = parseInt(live2dBGM_PlayTime);
|
|
||||||
}
|
|
||||||
var live2dBGMSrc = bgmListInfo.eq(bgmPlayNow).val();
|
|
||||||
$('#live2d_bgm').attr('data-bgm', bgmPlayNow);
|
|
||||||
$('#live2d_bgm').attr('src', live2dBGMSrc);
|
|
||||||
$('#live2d_bgm')[0].currentTime = bgmPlayTime;
|
|
||||||
$('#live2d_bgm')[0].volume = 0.5;
|
|
||||||
var live2dBGM_IsPlay = sessionStorage.getItem("live2dBGM_IsPlay");
|
|
||||||
var live2dBGM_WindowClose = sessionStorage.getItem("live2dBGM_WindowClose");
|
|
||||||
if (live2dBGM_IsPlay == '0' && live2dBGM_WindowClose == '0') {
|
|
||||||
$('#live2d_bgm')[0].play();
|
|
||||||
$('#musicButton').addClass('play');
|
$('#musicButton').addClass('play');
|
||||||
|
sessionStorage.setItem("live2dBGM_IsPlay", '0');
|
||||||
}
|
}
|
||||||
sessionStorage.setItem("live2dBGM_WindowClose", '1');
|
});
|
||||||
$('#musicButton').on('click', function () {
|
|
||||||
if ($('#musicButton').hasClass('play')) {
|
// BGM 事件监听(仅绑定一次,使用标志位避免重复)
|
||||||
$('#live2d_bgm')[0].pause();
|
if (!window._live2d._bgmEventsBound) {
|
||||||
$('#musicButton').removeClass('play');
|
$bgm[0].addEventListener("timeupdate", function () {
|
||||||
sessionStorage.setItem("live2dBGM_IsPlay", '1');
|
sessionStorage.setItem("live2dBGM_PlayTime", $bgm[0].currentTime);
|
||||||
} else {
|
});
|
||||||
$('#live2d_bgm')[0].play();
|
$bgm[0].addEventListener("ended", function () {
|
||||||
$('#musicButton').addClass('play');
|
var listNow = parseInt($bgm.attr('data-bgm'));
|
||||||
sessionStorage.setItem("live2dBGM_IsPlay", '0');
|
listNow++;
|
||||||
|
var inputs = $('input[name=live2dBGM]');
|
||||||
|
if (inputs.length === 0) return;
|
||||||
|
if (listNow > inputs.length - 1) {
|
||||||
|
listNow = 0;
|
||||||
}
|
}
|
||||||
|
var listNewSrc = inputs.eq(listNow).val();
|
||||||
|
if (!listNewSrc) return;
|
||||||
|
sessionStorage.setItem("live2dBGM_Num", listNow);
|
||||||
|
$bgm.attr('src', listNewSrc);
|
||||||
|
$bgm[0].play();
|
||||||
|
$bgm.attr('data-bgm', listNow);
|
||||||
|
});
|
||||||
|
$bgm[0].addEventListener("error", function () {
|
||||||
|
$bgm[0].pause();
|
||||||
|
$('#musicButton').removeClass('play');
|
||||||
|
showMessage('音乐似乎加载不出来了呢!', 0);
|
||||||
});
|
});
|
||||||
window.onbeforeunload = function () {
|
window.onbeforeunload = function () {
|
||||||
sessionStorage.setItem("live2dBGM_WindowClose", '0');
|
sessionStorage.setItem("live2dBGM_WindowClose", '0');
|
||||||
if ($('#musicButton').hasClass('play')) {
|
if ($('#musicButton').hasClass('play')) {
|
||||||
sessionStorage.setItem("live2dBGM_IsPlay", '0');
|
sessionStorage.setItem("live2dBGM_IsPlay", '0');
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
document.getElementById('live2d_bgm').addEventListener("timeupdate", function () {
|
window._live2d._bgmEventsBound = true;
|
||||||
var live2dBgmPlayTimeNow = document.getElementById('live2d_bgm').currentTime;
|
}
|
||||||
sessionStorage.setItem("live2dBGM_PlayTime", live2dBgmPlayTimeNow);
|
|
||||||
});
|
// 初始化 BGM(根据当前页面是否有 BGM 输入)
|
||||||
document.getElementById('live2d_bgm').addEventListener("ended", function () {
|
if (typeof window._live2d.initBGM === 'function') {
|
||||||
var listNow = parseInt($('#live2d_bgm').attr('data-bgm'));
|
window._live2d.initBGM();
|
||||||
listNow++;
|
|
||||||
if (listNow > $('input[name=live2dBGM]').length - 1) {
|
|
||||||
listNow = 0;
|
|
||||||
}
|
|
||||||
var listNewSrc = $('input[name=live2dBGM]').eq(listNow).val();
|
|
||||||
sessionStorage.setItem("live2dBGM_Num", listNow);
|
|
||||||
$('#live2d_bgm').attr('src', listNewSrc);
|
|
||||||
$('#live2d_bgm')[0].play();
|
|
||||||
$('#live2d_bgm').attr('data-bgm', listNow);
|
|
||||||
});
|
|
||||||
document.getElementById('live2d_bgm').addEventListener("error", function () {
|
|
||||||
$('#live2d_bgm')[0].pause();
|
|
||||||
$('#musicButton').removeClass('play');
|
|
||||||
showMessage('音乐似乎加载不出来了呢!', 0);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 暴露 BGM 初始化函数,供 PJAX 重初始化时调用
|
||||||
|
window._live2d.initBGM = function() {
|
||||||
|
var bgmListInfo = $('input[name=live2dBGM]');
|
||||||
|
var $bgm = $('#live2d_bgm');
|
||||||
|
if (bgmListInfo.length === 0) {
|
||||||
|
$('#musicButton').hide();
|
||||||
|
if ($bgm.length) $bgm[0].pause();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var bgmPlayNow = parseInt($bgm.attr('data-bgm')) || 0;
|
||||||
|
var bgmPlayTime = 0;
|
||||||
|
var live2dBGM_Num = sessionStorage.getItem("live2dBGM_Num");
|
||||||
|
var live2dBGM_PlayTime = sessionStorage.getItem("live2dBGM_PlayTime");
|
||||||
|
if (live2dBGM_Num) {
|
||||||
|
if (parseInt(live2dBGM_Num) <= bgmListInfo.length - 1) {
|
||||||
|
bgmPlayNow = parseInt(live2dBGM_Num);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (live2dBGM_PlayTime) {
|
||||||
|
bgmPlayTime = parseFloat(live2dBGM_PlayTime);
|
||||||
|
}
|
||||||
|
var newSrc = bgmListInfo.eq(bgmPlayNow).val();
|
||||||
|
$bgm.attr('data-bgm', bgmPlayNow);
|
||||||
|
if ($bgm.attr('src') !== newSrc) {
|
||||||
|
$bgm[0].pause();
|
||||||
|
$bgm.attr('src', newSrc);
|
||||||
|
$bgm[0].currentTime = bgmPlayTime;
|
||||||
|
}
|
||||||
|
$bgm[0].volume = 0.5;
|
||||||
|
var live2dBGM_IsPlay = sessionStorage.getItem("live2dBGM_IsPlay");
|
||||||
|
var live2dBGM_WindowClose = sessionStorage.getItem("live2dBGM_WindowClose");
|
||||||
|
if (live2dBGM_IsPlay == '0' && live2dBGM_WindowClose == '0') {
|
||||||
|
$bgm[0].play();
|
||||||
|
$('#musicButton').addClass('play');
|
||||||
|
}
|
||||||
|
sessionStorage.setItem("live2dBGM_WindowClose", '1');
|
||||||
|
$('#musicButton').show();
|
||||||
|
};
|
||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
var AIimgSrc = [
|
var AIimgSrc = [
|
||||||
message_Path + "model/histoire/histoire.1024/texture_00.png",
|
message_Path + "model/histoire/histoire.1024/texture_00.png",
|
||||||
|
|||||||
@ -50,4 +50,4 @@ Powered by [Jekyll](https://github.com/jekyll/jekyll)
|
|||||||
本站转载的文章如无特别说明,均按原文章的协议执行
|
本站转载的文章如无特别说明,均按原文章的协议执行
|
||||||
|
|
||||||
## 打赏/赞助 Mayx
|
## 打赏/赞助 Mayx
|
||||||

|

|
||||||
|
|||||||
@ -173,5 +173,9 @@
|
|||||||
"/2025/10/12/recover.html": "这篇文章讲述了作者通过GitHub的Fork特性找回一个被删除的Brainfuck可视化演示仓库的经历。由于原仓库和作者主页都已消失,作者推测GitHub在Fork时会共享对象库,只要有任意一个Fork仓库存在,GitHub就会保留所有对象,从而可以通过找到一个Fork仓库的最新提交Hash值来还原目标仓库。作者通过Linux内核仓库的Fork进行验证,随后在互联网档案馆上找到目标仓库的Fork以及其Hash值,最终通过Git命令将本地仓库的HEAD指针指向目标提交,成功恢复了该仓库的代码,并将其部署到自己的GitHub Pages上。最后,作者发现Software Heritage组织会保存所有代码,因此在遇到类似情况时可以直接通过该平台进行查找。",
|
"/2025/10/12/recover.html": "这篇文章讲述了作者通过GitHub的Fork特性找回一个被删除的Brainfuck可视化演示仓库的经历。由于原仓库和作者主页都已消失,作者推测GitHub在Fork时会共享对象库,只要有任意一个Fork仓库存在,GitHub就会保留所有对象,从而可以通过找到一个Fork仓库的最新提交Hash值来还原目标仓库。作者通过Linux内核仓库的Fork进行验证,随后在互联网档案馆上找到目标仓库的Fork以及其Hash值,最终通过Git命令将本地仓库的HEAD指针指向目标提交,成功恢复了该仓库的代码,并将其部署到自己的GitHub Pages上。最后,作者发现Software Heritage组织会保存所有代码,因此在遇到类似情况时可以直接通过该平台进行查找。",
|
||||||
"/2025/11/01/mirrors.html": "这篇文章讲述了作者为了提高博客的可靠性,探索利用被滥用的Git平台进行博客镜像的想法和实践。作者发现一些Git实例存在大量空仓库和异常用户,怀疑是SEO公司滥用,因此决定利用这些平台进行博客镜像备份,以应对平台倒闭或数据丢失的风险。作者选择Gitea和Forgejo平台作为目标,编写脚本自动注册账号并导入博客仓库,实现了自动化镜像分发。作者也意识到此类平台的稳定性存在不确定性,并思考了“量”和“质”两种方式确保博客永恒性的优劣,最终认为建立一个活跃的、自动执行维护操作的网络可能更有效。文章最后展示了作者创建的Git镜像列表,并表达了对博客永恒性的思考。",
|
"/2025/11/01/mirrors.html": "这篇文章讲述了作者为了提高博客的可靠性,探索利用被滥用的Git平台进行博客镜像的想法和实践。作者发现一些Git实例存在大量空仓库和异常用户,怀疑是SEO公司滥用,因此决定利用这些平台进行博客镜像备份,以应对平台倒闭或数据丢失的风险。作者选择Gitea和Forgejo平台作为目标,编写脚本自动注册账号并导入博客仓库,实现了自动化镜像分发。作者也意识到此类平台的稳定性存在不确定性,并思考了“量”和“质”两种方式确保博客永恒性的优劣,最终认为建立一个活跃的、自动执行维护操作的网络可能更有效。文章最后展示了作者创建的Git镜像列表,并表达了对博客永恒性的思考。",
|
||||||
"/2025/12/01/linux.html": "这篇文章介绍了在浏览器中运行Linux的各种方法,从最初的纯JS虚拟机JSLinux,到后来的WASM虚拟机如v86、WebVM、WebCM,再到容器化方案container2wasm,以及直接将Linux内核编译为WASM的方案。作者详细对比了这些方案的优缺点,包括性能、兼容性、功能和开发难度。文章还提到了模仿Linux环境的WebContainers和JupyterLite,并最终认为虚拟机方案更靠谱,但对WASM的未来充满期待。作者最后表示,博客上添加类似功能的计划还在考虑中,目前主要分享了各种方法的探索过程。",
|
"/2025/12/01/linux.html": "这篇文章介绍了在浏览器中运行Linux的各种方法,从最初的纯JS虚拟机JSLinux,到后来的WASM虚拟机如v86、WebVM、WebCM,再到容器化方案container2wasm,以及直接将Linux内核编译为WASM的方案。作者详细对比了这些方案的优缺点,包括性能、兼容性、功能和开发难度。文章还提到了模仿Linux环境的WebContainers和JupyterLite,并最终认为虚拟机方案更靠谱,但对WASM的未来充满期待。作者最后表示,博客上添加类似功能的计划还在考虑中,目前主要分享了各种方法的探索过程。",
|
||||||
"/2026/01/01/summary.html": "这篇文章介绍了作者对2025年的年终总结,主要表达了对自身状态的担忧和对未来的不确定感。作者认为自己在记忆和思考能力方面有所下滑,稳定性较低,且未能抓住资产保值的机会。同时,文章也记录了AI技术的飞速发展,以及自己博客内容与时代脱节的现象。尽管对未来感到迷茫,作者仍然抱有一丝希望,期望在2026年做出正确的选择,避免陷入危险。"
|
"/2026/01/01/summary.html": "这篇文章介绍了作者对2025年的年终总结,主要表达了对自身状态的担忧和对未来的不确定感。作者认为自己在记忆和思考能力方面有所下滑,稳定性较低,且未能抓住资产保值的机会。同时,文章也记录了AI技术的飞速发展,以及自己博客内容与时代脱节的现象。尽管对未来感到迷茫,作者仍然抱有一丝希望,期望在2026年做出正确的选择,避免陷入危险。",
|
||||||
|
"/2026/02/08/xslt.html": "这篇文章讲述了Google计划弃用XSLT技术,以及作者对这一决定的调查和应对方案。Google基于XSLT用户占比低、库存在漏洞等原因,建议将其从Web标准中删除。作者发现许多用户依赖XSLT进行博客订阅美化,甚至将其作为博客框架。为了对抗这一趋势,有人创建了网站https://xslt.rip,并开发了Polyfill库,通过WASM方式保持XSLT功能。虽然Polyfill库需要额外引用JS代码,但作者已将其提交至CDNJS。随后,作者探讨了替代方案,包括使用纯CSS美化订阅源(由AI生成feed.css),以及混合XHTML的方式,通过添加XHTML命名空间来实现链接等功能,但这种方法会产生“不纯粹”的警告。文章最后总结,技术可能会消失,但总有其他技术可以解决问题,并强调了适应浏览器厂商决策的重要性。",
|
||||||
|
"/2026/03/01/llm3.html": "这篇文章介绍了作者近期在LLM部署和应用方面的经历,主要包括以下几个方面:\n\n首先,作者升级硬件,从单张RTX4090 48GiB升级到双路RTX4090 48GiB,并购买了TRX40+TR 3960X的主板套装,用于运行GPT-OSS模型。随后,作者尝试使用vLLM框架替换Ollama,并成功配置了GPT-OSS模型,达到了接近190Tps的性能。\n\n其次,作者体验了DeepSeek 1M上下文模型,发现其在处理长上下文任务时表现出色,能够展现摘要无法捕捉的细节,并成功生成简历、分析人格等。\n\n此外,作者还尝试使用DeepSeek重构Mabbs,并发现DeepSeek能够识别作者的博客信息,这表明训练样本中包含了作者的信息。\n\n最后,作者在8GiB内存的MacBook Pro上运行了LFM2.5-1.2B-Thinking模型,并使用了Apollo软件,体验了其快速的推理速度和良好的思考能力。作者总结认为,AI的发展令人惊叹,软件优化使其在有限硬件环境下也能运行。",
|
||||||
|
"/2026/04/14/ai-agent.html": "这篇文章介绍了“AI个人助理”Agent的发展现状和各种尝试。作者体验了OpenClaw、QClaw、WorkBuddy、Cline、LuckClaw和ApkClaw等不同的Agent项目,发现它们在功能、易用性和性能上各有优劣。OpenClaw安装和使用存在困难,国内大厂的QClaw和WorkBuddy则更易于上手,但免费额度有限。作者认为,开发任务更适合在编辑器集成AI中进行,如GitHub Copilot。LuckClaw在微型开发板上运行表现出色,ApkClaw则利用手机的优势操作移动应用。尽管Agent技术仍存在诸多问题,但其应用场景不断拓展,有望吸引更多人参与其中,推动AI应用化进程。",
|
||||||
|
"/2026/05/01/virtual-net.html": "这篇文章介绍了作者在尝试异地组网搭建虚拟局域网时,对多种组网工具的探索和体验。作者首先尝试了n2n,但由于其项目停止更新且在NAT后的机器间存在掉线问题,最终选择了WireGuard作为主要方案。文章详细描述了WireGuard的配置过程,包括在Linux、OpenWrt和openEuler系统上的安装和配置,并遇到了各种各样的挑战,例如在红米AX3000路由器上找不到内核模块,以及在openEuler上缺少WireGuard相关包。此外,文章还提到了Netmaker和Headscale等WireGuard的控制平面,以及VNT和EasyTier等其他组网工具,并总结了最终选择WireGuard的原因:简单、够用、可靠性不错,且已经投入了大量配置。"
|
||||||
}
|
}
|
||||||
@ -5,7 +5,6 @@ title,link,feed_url,description
|
|||||||
极客兔兔,https://geektutu.com/,https://geektutu.com/atom.xml,致力于分享有趣的技术实践
|
极客兔兔,https://geektutu.com/,https://geektutu.com/atom.xml,致力于分享有趣的技术实践
|
||||||
维基萌,https://www.wikimoe.com/,https://www.wikimoe.com/rss,萌即是正义!一名热爱acg的前端设计师的小站!
|
维基萌,https://www.wikimoe.com/,https://www.wikimoe.com/rss,萌即是正义!一名热爱acg的前端设计师的小站!
|
||||||
7gugu's blog,https://www.7gugu.com/,https://7gugu.com/index.php/feed/,"一个用来存放我爱好的地方,编程,摄影之类的空间"
|
7gugu's blog,https://www.7gugu.com/,https://7gugu.com/index.php/feed/,"一个用来存放我爱好的地方,编程,摄影之类的空间"
|
||||||
云游君,https://www.yunyoujun.cn/,https://www.yunyoujun.cn/atom.xml,希望能成为一个有趣的人。
|
|
||||||
Kingfish404,https://blog.kingfish404.cn/,https://blog.kingfish404.cn/index.xml,"Stay curious,stay naive. WUT. Jin Yu's Blog"
|
Kingfish404,https://blog.kingfish404.cn/,https://blog.kingfish404.cn/index.xml,"Stay curious,stay naive. WUT. Jin Yu's Blog"
|
||||||
FKUN,https://blog.fkun.tech/,https://blog.fkun.tech/feed/,
|
FKUN,https://blog.fkun.tech/,https://blog.fkun.tech/feed/,
|
||||||
Sinofine,https://sinofine.me/,https://sinofine.me/atom.xml,
|
Sinofine,https://sinofine.me/,https://sinofine.me/atom.xml,
|
||||||
@ -16,8 +15,10 @@ Vullfin的博客,https://blog.vull.top/,https://blog.vull.top/atom.xml,Vullfin's
|
|||||||
陈陈菌博客,https://blog.glumi.cn/,https://blog.glumi.cn/rss.xml,计算机业余爱好者。
|
陈陈菌博客,https://blog.glumi.cn/,https://blog.glumi.cn/rss.xml,计算机业余爱好者。
|
||||||
彬红茶日记,https://note.redcha.cn/,https://note.redcha.cn/rss.xml,我的个人日记!
|
彬红茶日记,https://note.redcha.cn/,https://note.redcha.cn/rss.xml,我的个人日记!
|
||||||
Lanke's blog,https://blog.blueke.top/,https://blog.blueke.top/rss.xml,请为一切不真实之物骄傲,因为我们高于这个世界!
|
Lanke's blog,https://blog.blueke.top/,https://blog.blueke.top/rss.xml,请为一切不真实之物骄傲,因为我们高于这个世界!
|
||||||
时光流·言,https://www.hansjack.com/,https://www.hansjack.com/feed/,个人博客,持续分享网站部署实战经验、精选书评解读和生活观察手记。 这里提供可复用的技术教程、深度阅读指南和真实生活洞察,与技术爱好者一起进步......
|
寒士杰克,https://www.hansjack.com/,https://www.hansjack.com/feed/,喜欢捣鼓,不断进步!
|
||||||
Pinpe 的云端,https://pinpe.top/,https://pinpe.top/rss.xml,一个属于自己的云朵。
|
Pinpe 的云端,https://pinpe.top/,https://pinpe.top/rss.xml,一个属于自己的云朵。
|
||||||
Chise Hachiroku,https://chise.hachiroku.com/zh/,https://chise.hachiroku.com/zh/feed/,向明日的辉迹,干杯!
|
Chise Hachiroku,https://chise.hachiroku.com/zh/,https://chise.hachiroku.com/zh/feed/,向明日的辉迹,干杯!
|
||||||
映屿,https://www.glowisle.me/,https://www.glowisle.me/atom.xml,关于互联网、书籍、生活琐事以及那些一闪而过的念头
|
映屿,https://www.glowisle.me/,https://www.glowisle.me/atom.xml,关于互联网、书籍、生活琐事以及那些一闪而过的念头
|
||||||
Restent's Notebook,https://blog.gxres.net/,https://blog.gxres.net/atom.xml,不前沿技术分享
|
Restent's Notebook,https://blog.gxres.net/,https://blog.gxres.net/atom.xml,不前沿技术分享
|
||||||
|
Coseroom,https://coseroom.com,,
|
||||||
|
RavelloH's Blog,https://ravelloh.com,https://ravelloh.com/feed.xml,Beginning of meditation.
|
||||||
|
|||||||
|
unable to load file
|
@ -2,210 +2,87 @@ repo_url
|
|||||||
http://gdatura24gtdy23lxd7ht3xzx6mi7mdlkabpvuefhrjn4t5jduviw5ad.onion/Mayx/mayx
|
http://gdatura24gtdy23lxd7ht3xzx6mi7mdlkabpvuefhrjn4t5jduviw5ad.onion/Mayx/mayx
|
||||||
http://git.dkforestseeaaq2dqz2uflmlsybvnq2irzn4ygyvu53oazyorednviid.onion/mayx/blog
|
http://git.dkforestseeaaq2dqz2uflmlsybvnq2irzn4ygyvu53oazyorednviid.onion/mayx/blog
|
||||||
http://giteabolfdejtdzblkooalqei6jr67imiugmhtsh6ocw4hlj5a4q.b32.i2p/mayx/blog
|
http://giteabolfdejtdzblkooalqei6jr67imiugmhtsh6ocw4hlj5a4q.b32.i2p/mayx/blog
|
||||||
|
https://lavaforge.org/mayx/blog
|
||||||
|
https://sij.ai/mayx/blog
|
||||||
|
https://repobase.net/mayx/blog
|
||||||
https://gitlab.lain.la/mayx/mayx.pages.lain.la
|
https://gitlab.lain.la/mayx/mayx.pages.lain.la
|
||||||
https://tvoygit.ru/Mayx/mayx
|
https://gitplac.si/mayx/mayx.gitpage.si
|
||||||
|
https://gitnet.fr/mayx/blog
|
||||||
|
https://forge.fedoraproject.org/mabbs/blog
|
||||||
|
https://tilde.club/~mayx/git/blog.git/
|
||||||
https://git.envs.net/Mayx/mayx
|
https://git.envs.net/Mayx/mayx
|
||||||
https://tildegit.org/Mayx/mayx
|
https://tildegit.org/Mayx/mayx
|
||||||
https://git.pixie.town/mayx/mayx
|
https://git.tilde.town/mayx/blog
|
||||||
https://cgit.tilde.town/~mayx/blog
|
|
||||||
https://gitlab.haskell.org/mayx/mayx
|
https://gitlab.haskell.org/mayx/mayx
|
||||||
https://repo2.serv00.com/git/pub/Mayx/mayx/
|
https://repo2.serv00.com/git/pub/Mayx/mayx/
|
||||||
|
https://git.pixie.town/mayx/mayx
|
||||||
|
https://codefloe.com/mayx/blog
|
||||||
https://git.minetest.land/Mayx/blog
|
https://git.minetest.land/Mayx/blog
|
||||||
https://gitea.stormyhome.net/mayx/blog
|
|
||||||
http://47.120.60.153:10880/mayx/blog
|
http://47.120.60.153:10880/mayx/blog
|
||||||
http://61.139.16.27:26684/mayx/blog
|
|
||||||
http://116.62.245.34:3000/mayx/blog
|
|
||||||
http://1.6.141.109:3000/mayx/blog
|
http://1.6.141.109:3000/mayx/blog
|
||||||
http://52.28.156.42/mayx/blog
|
http://52.28.156.42/mayx/blog
|
||||||
http://164.92.160.200:3000/mayx/blog
|
|
||||||
https://git.tux.pizza/mayx/blog
|
|
||||||
https://code.dsconce.space/mayx/blog
|
https://code.dsconce.space/mayx/blog
|
||||||
https://git.anibilag.ru/mayx/blog
|
|
||||||
https://git.lolpro11.me/mayx/blog
|
|
||||||
https://git.empirica.pro/mayx/blog
|
|
||||||
https://git.emanuelemiani.it/mayx/blog
|
|
||||||
https://git.dehemi.com/mayx/blog
|
|
||||||
http://101.66.229.132:61088/mayx/blog
|
http://101.66.229.132:61088/mayx/blog
|
||||||
https://git.bp-web.app/mayx/blog
|
https://git.bp-web.app/mayx/blog
|
||||||
http://47.103.91.160:50903/mayx/blog
|
|
||||||
https://mygit.iexercice.com/mayx/blog
|
https://mygit.iexercice.com/mayx/blog
|
||||||
http://162.215.134.149:4000/mayx/blog
|
http://162.215.134.149:4000/mayx/blog
|
||||||
http://durfee.mycrestron.com:3000/mayx/blog
|
http://durfee.mycrestron.com:3000/mayx/blog
|
||||||
https://gitea.nongnghiepso.com/mayx/blog
|
https://gitea.nongnghiepso.com/mayx/blog
|
||||||
https://codes.tools.asitavsen.com/mayx/blog
|
https://codes.tools.asitavsen.com/mayx/blog
|
||||||
http://122.116.190.233:3001/mayx/blog
|
|
||||||
http://50.19.111.193:3000/mayx/blog
|
http://50.19.111.193:3000/mayx/blog
|
||||||
https://git-test.zcy.dev/mayx/blog
|
|
||||||
https://git.nothamor.com/mayx/blog
|
|
||||||
https://git.zeroplay.io/mayx/blog
|
https://git.zeroplay.io/mayx/blog
|
||||||
https://git.successkaoyan.com/mayx/blog
|
|
||||||
http://139.129.25.251:3000/mayx/blog
|
|
||||||
http://45.33.87.87/mayx/blog
|
http://45.33.87.87/mayx/blog
|
||||||
https://git.rankenste.in/mayx/blog
|
|
||||||
http://168.126.28.36:3000/mayx/blog
|
http://168.126.28.36:3000/mayx/blog
|
||||||
http://120.79.27.232:3000/mayx/blog
|
|
||||||
http://wangbeibei.xyz:6002/mayx/blog
|
|
||||||
https://git.duplanet.ovh/mayx/blog
|
|
||||||
http://69.62.77.234:8888/mayx/blog
|
http://69.62.77.234:8888/mayx/blog
|
||||||
http://112.219.147.186:7000/mayx/blog
|
http://112.219.147.186:7000/mayx/blog
|
||||||
https://git.rootfinlay.co.uk/mayx/blog
|
https://git.rootfinlay.co.uk/mayx/blog
|
||||||
https://repo.beithing.com/mayx/blog
|
|
||||||
https://git.yi-guanjia.com/mayx/blog
|
|
||||||
https://git.repo.in.net/mayx/blog
|
|
||||||
https://gitea.belanjaparts.com/mayx/blog
|
https://gitea.belanjaparts.com/mayx/blog
|
||||||
http://185.208.225.190:3000/mayx/blog
|
http://185.208.225.190:3000/mayx/blog
|
||||||
https://git.sudo-fhir.au/mayx/blog
|
|
||||||
https://git.flywithu.com/mayx/blog
|
|
||||||
http://116.204.34.35:12000/mayx/blog
|
http://116.204.34.35:12000/mayx/blog
|
||||||
https://git.echaeplay.com/mayx/blog
|
|
||||||
https://git.bethelean.kr/mayx/blog
|
|
||||||
https://git.Apture.io/mayx/blog
|
https://git.Apture.io/mayx/blog
|
||||||
http://103.231.8.120/mayx/blog
|
|
||||||
https://gitea.jasonstolle.com/mayx/blog
|
https://gitea.jasonstolle.com/mayx/blog
|
||||||
http://8.134.61.107:3000/mayx/blog
|
http://8.134.61.107:3000/mayx/blog
|
||||||
http://47.107.88.161:3000/mayx/blog
|
http://47.107.88.161:3000/mayx/blog
|
||||||
https://git.votava.org/mayx/blog
|
|
||||||
https://gitea.madf12.com/mayx/blog
|
|
||||||
http://8.134.104.234:3000/mayx/blog
|
|
||||||
https://gitea.carmon.co.kr/mayx/blog
|
|
||||||
http://142.171.47.170:3000/mayx/blog
|
http://142.171.47.170:3000/mayx/blog
|
||||||
http://111.231.146.230:8418/mayx/blog
|
http://111.231.146.230:8418/mayx/blog
|
||||||
https://git.winscloud.net/mayx/blog
|
|
||||||
https://git.pwaapp.cc/mayx/blog
|
https://git.pwaapp.cc/mayx/blog
|
||||||
http://119.28.73.80:5000/mayx/blog
|
|
||||||
http://194.60.231.252:3000/mayx/blog
|
|
||||||
https://git.sleepingforest.co.uk/mayx/blog
|
https://git.sleepingforest.co.uk/mayx/blog
|
||||||
https://git.brb.homeip.net/mayx/blog
|
|
||||||
https://an360.top/mayx/blog
|
https://an360.top/mayx/blog
|
||||||
https://gitea.chenxu2233.com/mayx/blog
|
|
||||||
http://106.15.78.64:3000/mayx/blog
|
http://106.15.78.64:3000/mayx/blog
|
||||||
http://hoenking.cn:3000/mayx/blog
|
|
||||||
https://gitea.anessen.xyz/mayx/blog
|
|
||||||
https://git.cjcrace.io/mayx/blog
|
|
||||||
https://git.wisder.net/mayx/blog
|
https://git.wisder.net/mayx/blog
|
||||||
http://8.138.187.97:3000/mayx/blog
|
|
||||||
https://git2.ujin.tech/mayx/blog
|
|
||||||
http://111.119.244.185:3000/mayx/blog
|
http://111.119.244.185:3000/mayx/blog
|
||||||
http://110.41.179.36:13000/mayx/blog
|
http://110.41.179.36:13000/mayx/blog
|
||||||
https://git.moonwoou.com/mayx/blog
|
|
||||||
https://git.tomlab.dev/mayx/blog
|
|
||||||
http://182.92.109.202:8070/mayx/blog
|
|
||||||
http://94.130.182.154:3000/mayx/blog
|
|
||||||
https://git.unicom.studio/mayx/blog
|
|
||||||
http://43.138.173.153:8804/mayx/blog
|
|
||||||
http://frktedu.ru:3000/mayx/blog
|
|
||||||
https://git.lokalix.de/mayx/blog
|
|
||||||
http://8.141.14.13:3000/mayx/blog
|
|
||||||
http://139.196.201.231:3000/mayx/blog
|
|
||||||
https://git.influxfin.com/mayx/blog
|
https://git.influxfin.com/mayx/blog
|
||||||
https://git.programar.io/mayx/blog
|
|
||||||
http://219.157.255.213:25311/mayx/blog
|
http://219.157.255.213:25311/mayx/blog
|
||||||
https://git.melvincarvalho.com/mayx/blog
|
|
||||||
https://gitea.aerwen.net/mayx/blog
|
|
||||||
https://git.vekus.ru/mayx/blog
|
https://git.vekus.ru/mayx/blog
|
||||||
https://gitea.svc.obaa.cloud/mayx/blog
|
|
||||||
http://8.134.64.84:3000/mayx/blog
|
|
||||||
https://gitea.blubeacon.com/mayx/blog
|
|
||||||
http://116.204.75.78:6180/mayx/blog
|
http://116.204.75.78:6180/mayx/blog
|
||||||
https://git.ods-company.ru/mayx/blog
|
|
||||||
http://109.228.48.121:8000/mayx/blog
|
http://109.228.48.121:8000/mayx/blog
|
||||||
https://bk-house.synology.me:3081/mayx/blog
|
|
||||||
http://123.57.95.66:9000/mayx/blog
|
|
||||||
https://git.sparrowcomm.com/mayx/blog
|
|
||||||
https://git.hubhoo.com/mayx/blog
|
https://git.hubhoo.com/mayx/blog
|
||||||
https://git.ultra.pub/mayx/blog
|
|
||||||
http://27.124.12.222:3000/mayx/blog
|
http://27.124.12.222:3000/mayx/blog
|
||||||
https://saga.iao.ru:3043/mayx/blog
|
|
||||||
https://git.sayndone.ru/mayx/blog
|
https://git.sayndone.ru/mayx/blog
|
||||||
https://gitea.hintsight.com/mayx/blog
|
https://gitea.hintsight.com/mayx/blog
|
||||||
https://anzsco.co.nz/mayx/blog
|
|
||||||
https://git.valami.giize.com/mayx/blog
|
|
||||||
https://git.simbarbet.com/mayx/blog
|
|
||||||
https://git.saintdoggie.org/mayx/blog
|
|
||||||
http://blackobelisk.xyz:3000/mayx/blog
|
http://blackobelisk.xyz:3000/mayx/blog
|
||||||
https://git.dushes.keenetic.pro/mayx/blog
|
|
||||||
http://47.129.22.53:22345/mayx/blog
|
|
||||||
https://git.tech.troyrc.com/mayx/blog
|
|
||||||
http://git.zkyspace.top/mayx/blog
|
|
||||||
http://149.88.87.128:3000/mayx/blog
|
|
||||||
http://124.70.167.140:3000/mayx/blog
|
|
||||||
http://8.137.38.60:8201/mayx/blog
|
|
||||||
http://112.74.106.216:3000/mayx/blog
|
|
||||||
http://77.223.118.106:8081/mayx/blog
|
|
||||||
https://git.the-kn.com/mayx/blog
|
https://git.the-kn.com/mayx/blog
|
||||||
https://gitea.net50.ne.jp/mayx/blog
|
|
||||||
https://git.ism-dev.net/mayx/blog
|
|
||||||
http://sinzero.xyz:3000/mayx/blog
|
|
||||||
https://gitea.b54.co/mayx/blog
|
|
||||||
https://git.matevi.sh/mayx/blog
|
|
||||||
http://213.35.118.215:60001/mayx/blog
|
|
||||||
https://git.jasonpittman.com/mayx/blog
|
|
||||||
https://gitea.shirom.me/mayx/blog
|
https://gitea.shirom.me/mayx/blog
|
||||||
http://1.95.221.174:3000/mayx/blog
|
|
||||||
https://git.wangxinlei.cn/mayx/blog
|
https://git.wangxinlei.cn/mayx/blog
|
||||||
http://101.200.74.121:3000/mayx/blog
|
|
||||||
http://123.56.193.182:3000/mayx/blog
|
http://123.56.193.182:3000/mayx/blog
|
||||||
http://60.204.131.99:3000/mayx/blog
|
|
||||||
http://femail.email:8418/mayx/blog
|
|
||||||
http://47.93.56.66:8080/mayx/blog
|
|
||||||
http://167.172.7.198:8081/mayx/blog
|
http://167.172.7.198:8081/mayx/blog
|
||||||
https://gitea.meetgu.ru/mayx/blog
|
https://gitea.meetgu.ru/mayx/blog
|
||||||
https://git.patrich.se/mayx/blog
|
|
||||||
http://116.236.50.103:8789/mayx/blog
|
http://116.236.50.103:8789/mayx/blog
|
||||||
https://git.paulll.cc/mayx/blog
|
https://git.paulll.cc/mayx/blog
|
||||||
https://gitea.reimann.ee/mayx/blog
|
|
||||||
http://109.74.197.189/mayx/blog
|
|
||||||
https://git.nussi.net/mayx/blog
|
|
||||||
http://94.224.160.69:7990/mayx/blog
|
http://94.224.160.69:7990/mayx/blog
|
||||||
https://git.hxps.ru/mayx/blog
|
|
||||||
https://gitea.ekjeong.synology.me/mayx/blog
|
https://gitea.ekjeong.synology.me/mayx/blog
|
||||||
https://git.d4m13n.dev/mayx/blog
|
|
||||||
https://git.4lcap.com/mayx/blog
|
|
||||||
https://git.stit.tech/mayx/blog
|
|
||||||
https://www.9miao.fun:6839/mayx/blog
|
|
||||||
https://git.autotion.net/mayx/blog
|
|
||||||
http://octifor.synology.me:53000/mayx/blog
|
|
||||||
https://git.daoyoucloud.com/mayx/blog
|
https://git.daoyoucloud.com/mayx/blog
|
||||||
https://git.entryrise.com/mayx/blog
|
|
||||||
https://code.bitahub.com/mayx/blog
|
https://code.bitahub.com/mayx/blog
|
||||||
https://git.daneric.dev/mayx/blog
|
|
||||||
http://malingshu.site:6010/mayx/blog
|
|
||||||
https://repo.gusdya.net/mayx/blog
|
https://repo.gusdya.net/mayx/blog
|
||||||
https://gitea.tmartens.dev/mayx/blog
|
|
||||||
http://218.206.106.50:19901/mayx/blog
|
|
||||||
https://git.slegeir.com/mayx/blog
|
|
||||||
https://git.kimcblog.com/mayx/blog
|
|
||||||
https://git.minaev.su/mayx/blog
|
|
||||||
https://git.0fs.ru/mayx/blog
|
|
||||||
https://git.bremauer.cc/mayx/blog
|
|
||||||
http://119.3.29.177:3000/mayx/blog
|
|
||||||
http://47.110.224.240:13000/mayx/blog
|
|
||||||
http://194.67.86.160:3100/mayx/blog
|
|
||||||
http://47.101.58.33:3000/mayx/blog
|
|
||||||
https://gitea.synapsetec.cn/mayx/blog
|
https://gitea.synapsetec.cn/mayx/blog
|
||||||
http://gitea.yunshanghub.com:8081/mayx/blog
|
http://gitea.yunshanghub.com:8081/mayx/blog
|
||||||
https://repo.c-software.id/mayx/blog
|
|
||||||
http://113.177.27.200:2033/mayx/blog
|
http://113.177.27.200:2033/mayx/blog
|
||||||
http://152.69.204.151:3000/mayx/blog
|
http://152.69.204.151:3000/mayx/blog
|
||||||
http://207.180.229.193:3001/mayx/blog
|
http://207.180.229.193:3001/mayx/blog
|
||||||
https://g2.m8il.in/mayx/blog
|
|
||||||
http://34.81.52.16/mayx/blog
|
http://34.81.52.16/mayx/blog
|
||||||
http://120.78.74.94:3000/mayx/blog
|
|
||||||
https://git.genowisdom.cn/mayx/blog
|
|
||||||
http://120.26.116.243:3000/mayx/blog
|
|
||||||
http://123.57.16.111:3000/mayx/blog
|
http://123.57.16.111:3000/mayx/blog
|
||||||
http://115.159.107.117:3000/mayx/blog
|
|
||||||
http://116.62.115.84:3000/mayx/blog
|
|
||||||
https://Cagit.Cacode.net/mayx/blog
|
|
||||||
http://wingsing.net:3000/mayx/blog
|
|
||||||
http://hgngit.ipdz.me/mayx/blog
|
|
||||||
http://185.163.116.39:49153/mayx/blog
|
|
||||||
https://gitea.onfing.ir/mayx/blog
|
|
||||||
https://lius.familyds.org:3000/mayx/blog
|
https://lius.familyds.org:3000/mayx/blog
|
||||||
https://git.morozoff.pro/mayx/blog
|
|
||||||
https://gitea.questline.coop/mayx/blog
|
|
||||||
https://git.poggerer.xyz/mayx/blog
|
|
||||||
https://git.wisptales.org/mayx/blog
|
|
||||||
http://git.chaojing-film.com:3000/mayx/blog
|
http://git.chaojing-film.com:3000/mayx/blog
|
||||||
https://git.nusaerp.com/mayx/blog
|
https://git.nusaerp.com/mayx/blog
|
||||||
http://35.207.205.18:3000/mayx/blog
|
http://35.207.205.18:3000/mayx/blog
|
||||||
@ -215,364 +92,460 @@ http://112.124.40.88:5510/mayx/blog
|
|||||||
http://121.36.37.70:15501/mayx/blog
|
http://121.36.37.70:15501/mayx/blog
|
||||||
http://187.216.152.151:9999/mayx/blog
|
http://187.216.152.151:9999/mayx/blog
|
||||||
http://116.63.173.179:8001/mayx/blog
|
http://116.63.173.179:8001/mayx/blog
|
||||||
https://git.iop.plus/mayx/blog
|
|
||||||
http://47.114.82.162:3000/mayx/blog
|
|
||||||
http://114.116.79.196/mayx/blog
|
http://114.116.79.196/mayx/blog
|
||||||
https://gitea.cybs.io/mayx/blog
|
|
||||||
https://gitea.fcliu.net/mayx/blog
|
|
||||||
http://git.yinas.cn/mayx/blog
|
|
||||||
http://git.chilidoginteractive.com:3000/mayx/blog
|
|
||||||
http://121.40.40.177:3000/mayx/blog
|
http://121.40.40.177:3000/mayx/blog
|
||||||
http://118.31.223.224:3000/mayx/blog
|
|
||||||
http://voicebot.digitalakademie-bw.de:3000/mayx/blog
|
|
||||||
http://178.254.35.219:3000/mayx/blog
|
http://178.254.35.219:3000/mayx/blog
|
||||||
http://114.215.207.150:3000/mayx/blog
|
|
||||||
http://2.59.132.109:3001/mayx/blog
|
http://2.59.132.109:3001/mayx/blog
|
||||||
http://newslabx.csie.ntu.edu.tw:3000/mayx/blog
|
|
||||||
http://81.71.148.57:8080/mayx/blog
|
http://81.71.148.57:8080/mayx/blog
|
||||||
https://git.lmskaran.com/mayx/blog
|
https://git.lmskaran.com/mayx/blog
|
||||||
http://sdgit.zfmgr.top/mayx/blog
|
|
||||||
http://154.86.0.30:3000/mayx/blog
|
http://154.86.0.30:3000/mayx/blog
|
||||||
http://139.224.196.148:3000/mayx/blog
|
|
||||||
https://omegat.dmu-medical.de/mayx/blog
|
|
||||||
http://52.23.128.62:3000/mayx/blog
|
http://52.23.128.62:3000/mayx/blog
|
||||||
http://85.214.41.219:49153/mayx/blog
|
|
||||||
http://6068688.xyz:3000/mayx/blog
|
|
||||||
https://git.881221.xyz/mayx/blog
|
|
||||||
http://120.46.222.128:10021/mayx/blog
|
http://120.46.222.128:10021/mayx/blog
|
||||||
http://120.26.108.239:9188/mayx/blog
|
http://120.26.108.239:9188/mayx/blog
|
||||||
https://git.van-peeren.de/mayx/blog
|
|
||||||
http://git.gkcorp.com.vn:16000/mayx/blog
|
|
||||||
http://47.111.17.177:3000/mayx/blog
|
http://47.111.17.177:3000/mayx/blog
|
||||||
https://k0ki-dev.com/mayx/blog
|
https://k0ki-dev.com/mayx/blog
|
||||||
http://110.42.45.89:2052/mayx/blog
|
http://110.42.45.89:2052/mayx/blog
|
||||||
https://git.furcom.org/mayx/blog
|
https://git.furcom.org/mayx/blog
|
||||||
http://47.109.95.73:3000/mayx/blog
|
|
||||||
http://8.133.240.249:3456/mayx/blog
|
|
||||||
http://34.102.70.200:3000/mayx/blog
|
http://34.102.70.200:3000/mayx/blog
|
||||||
http://175.178.219.170:3000/mayx/blog
|
|
||||||
https://code.miraclezhb.com/mayx/blog
|
|
||||||
http://blueroses.top:8888/mayx/blog
|
|
||||||
http://47.112.118.149:10082/mayx/blog
|
|
||||||
https://gitea.jobiglo.com/mayx/blog
|
|
||||||
http://begild.top:8418/mayx/blog
|
|
||||||
http://58.221.13.198:30010/mayx/blog
|
|
||||||
https://git.tbaer.de/mayx/blog
|
|
||||||
https://git.d-popov.com/mayx/blog
|
|
||||||
https://git.liliyamol.cn/mayx/blog
|
|
||||||
http://8.138.90.28:3000/mayx/blog
|
|
||||||
https://gitea.theaken.com/mayx/blog
|
|
||||||
https://git.ja-schwarz.de/mayx/blog
|
|
||||||
https://git.xemo-net.de/mayx/blog
|
|
||||||
https://git.23cm.cn/mayx/blog
|
|
||||||
https://gitea.oio.cat/mayx/blog
|
https://gitea.oio.cat/mayx/blog
|
||||||
http://59.110.17.86:3000/mayx/blog
|
|
||||||
https://git.karma-riuk.com/mayx/blog
|
https://git.karma-riuk.com/mayx/blog
|
||||||
https://git.saidomar.fr/mayx/blog
|
|
||||||
http://gitea.fcunb.cn:10083/mayx/blog
|
|
||||||
http://47.107.152.87:3000/mayx/blog
|
|
||||||
https://git.sduonline.cn/mayx/blog
|
|
||||||
https://git.7o9o.net/mayx/blog
|
https://git.7o9o.net/mayx/blog
|
||||||
https://dev.init.zone/mayx/blog
|
|
||||||
https://git.baneynet.net/mayx/blog
|
|
||||||
https://git.gupaoedu.cn/mayx/blog
|
https://git.gupaoedu.cn/mayx/blog
|
||||||
http://60.205.233.184:3010/mayx/blog
|
|
||||||
https://git.ricecakecat.com/mayx/blog
|
|
||||||
https://gittea.biveki.ru/mayx/blog
|
|
||||||
https://git.7milch.com/mayx/blog
|
https://git.7milch.com/mayx/blog
|
||||||
https://git.sitenevis.com/mayx/blog
|
https://git.sitenevis.com/mayx/blog
|
||||||
https://git.nightime.org/mayx/blog
|
|
||||||
https://dreamplacesai.de/mayx/blog
|
https://dreamplacesai.de/mayx/blog
|
||||||
https://git.cool2645.com/mayx/blog
|
|
||||||
http://185.87.111.46:3000/mayx/blog
|
|
||||||
http://suncheng.asia:14200/mayx/blog
|
|
||||||
http://1.94.13.224:9080/mayx/blog
|
http://1.94.13.224:9080/mayx/blog
|
||||||
https://auric-org.org/mayx/blog
|
|
||||||
https://git.git-happens.de/mayx/blog
|
|
||||||
http://101.35.183.241/mayx/blog
|
|
||||||
https://gitea.quiztimes.nl/mayx/blog
|
|
||||||
http://106.14.189.125:3000/mayx/blog
|
|
||||||
https://git.hundseth.com/mayx/blog
|
|
||||||
https://travgit.guillorystack.com/mayx/blog
|
|
||||||
http://gitea.coderpath.com/mayx/blog
|
http://gitea.coderpath.com/mayx/blog
|
||||||
https://gitea.thanh0x.com/mayx/blog
|
|
||||||
http://175.198.180.19:3000/mayx/blog
|
|
||||||
https://gitea.albanmary.com/mayx/blog
|
|
||||||
http://ngtools.cn:53000/mayx/blog
|
|
||||||
https://git.hantify.ru/mayx/blog
|
|
||||||
http://43.136.169.169:3000/mayx/blog
|
http://43.136.169.169:3000/mayx/blog
|
||||||
http://121.196.213.68:3000/mayx/blog
|
http://121.196.213.68:3000/mayx/blog
|
||||||
https://git.vereint-digital.de/mayx/blog
|
|
||||||
https://git.advarna.fr/mayx/blog
|
|
||||||
http://111.198.4.69:8092/mayx/blog
|
|
||||||
https://git.lakaweb.com/mayx/blog
|
|
||||||
https://forge.coreymclark.com/mayx/blog
|
|
||||||
http://ems.iclematis.com:30000/mayx/blog
|
|
||||||
https://git.micahmoore.io/mayx/blog
|
https://git.micahmoore.io/mayx/blog
|
||||||
https://schokigeschmack.de/mayx/blog
|
|
||||||
https://git.anatid.net/mayx/blog
|
https://git.anatid.net/mayx/blog
|
||||||
https://git.lekai.info/mayx/blog
|
https://git.lekai.info/mayx/blog
|
||||||
https://git.avclick.ru/mayx/blog
|
|
||||||
http://135.235.225.198:3000/mayx/blog
|
http://135.235.225.198:3000/mayx/blog
|
||||||
https://git.sick.earth/mayx/blog
|
|
||||||
https://git.prayujt.com/mayx/blog
|
|
||||||
https://git.galaxylabs.ca/mayx/blog
|
|
||||||
https://gitlab.n8n-store.xyz/mayx/blog
|
|
||||||
https://gitea.katiethe.dev/mayx/blog
|
|
||||||
http://159.203.33.179:3000/mayx/blog
|
|
||||||
http://117.72.114.197:3000/mayx/blog
|
http://117.72.114.197:3000/mayx/blog
|
||||||
https://git.ashcloud.com/mayx/blog
|
https://git.ashcloud.com/mayx/blog
|
||||||
http://us2.fornoone.top:3000/mayx/blog
|
|
||||||
https://git.novaa.xyz/mayx/blog
|
https://git.novaa.xyz/mayx/blog
|
||||||
http://101.46.208.93:3000/mayx/blog
|
http://101.46.208.93:3000/mayx/blog
|
||||||
http://23.94.57.60:3000/mayx/blog
|
http://23.94.57.60:3000/mayx/blog
|
||||||
https://watch.mommys.plumbing/mayx/blog
|
|
||||||
https://devkona.net/mayx/blog
|
|
||||||
https://gitea.avixc-nas.myds.me/mayx/blog
|
|
||||||
https://gitea.chaopi.dev/mayx/blog
|
|
||||||
http://sjhome.cloud:3000/mayx/blog
|
|
||||||
https://gitea.sciotech.cn/mayx/blog
|
https://gitea.sciotech.cn/mayx/blog
|
||||||
http://8.148.220.5:8089/mayx/blog
|
|
||||||
http://8.140.250.85:3000/mayx/blog
|
http://8.140.250.85:3000/mayx/blog
|
||||||
http://8.134.11.35:3000/mayx/blog
|
|
||||||
https://git.ctx.dev/mayx/blog
|
|
||||||
https://nas.szwyll.com:3000/mayx/blog
|
|
||||||
https://git.koppa.pro/mayx/blog
|
|
||||||
http://202.65.194.19:3000/mayx/blog
|
http://202.65.194.19:3000/mayx/blog
|
||||||
http://8.148.234.146:3001/mayx/blog
|
|
||||||
http://www.bzturbo.com.br/mayx/blog
|
|
||||||
https://git.maiasoft.jp/mayx/blog
|
|
||||||
https://gitea.xala.dev/mayx/blog
|
|
||||||
http://101.201.34.43:3000/mayx/blog
|
http://101.201.34.43:3000/mayx/blog
|
||||||
https://git.ixu.me/mayx/blog
|
|
||||||
https://git.gloje-rinchen-dorjee-rinpoche-buddhist-monastery.org/mayx/blog
|
https://git.gloje-rinchen-dorjee-rinpoche-buddhist-monastery.org/mayx/blog
|
||||||
http://101.35.227.2:3000/mayx/blog
|
http://101.35.227.2:3000/mayx/blog
|
||||||
http://175.126.123.163:3000/mayx/blog
|
http://175.126.123.163:3000/mayx/blog
|
||||||
https://vw-git.senecasense.com/mayx/blog
|
|
||||||
http://git.uhfdemo.com/mayx/blog
|
http://git.uhfdemo.com/mayx/blog
|
||||||
http://47.108.217.75:3000/mayx/blog
|
|
||||||
https://git.jakubzabski.pl/mayx/blog
|
https://git.jakubzabski.pl/mayx/blog
|
||||||
https://www.git.omezaldama.xyz/mayx/blog
|
|
||||||
https://vila.go.ro/mayx/blog
|
|
||||||
https://git.olyntec.com/mayx/blog
|
|
||||||
http://8.134.218.17:8013/mayx/blog
|
|
||||||
http://124.223.89.168:8080/mayx/blog
|
|
||||||
http://139.129.21.166:3000/mayx/blog
|
|
||||||
http://111.231.240.168:9082/mayx/blog
|
|
||||||
https://git.afonsosoares.com/mayx/blog
|
|
||||||
http://209.141.47.52:3000/mayx/blog
|
http://209.141.47.52:3000/mayx/blog
|
||||||
https://git.apfern.com/mayx/blog
|
|
||||||
http://dapainas.asia:5990/mayx/blog
|
|
||||||
http://60.204.158.188:3000/mayx/blog
|
http://60.204.158.188:3000/mayx/blog
|
||||||
https://zqz5.com/mayx/blog
|
|
||||||
https://git.3dizart.ru/mayx/blog
|
|
||||||
http://119.3.252.2:3000/mayx/blog
|
|
||||||
http://60.204.156.211:3000/mayx/blog
|
http://60.204.156.211:3000/mayx/blog
|
||||||
https://git.yukaige.com/mayx/blog
|
|
||||||
http://nas.bi1kbu.com:8418/mayx/blog
|
http://nas.bi1kbu.com:8418/mayx/blog
|
||||||
http://123.56.74.235:3000/mayx/blog
|
|
||||||
http://1.94.178.207:3000/mayx/blog
|
http://1.94.178.207:3000/mayx/blog
|
||||||
https://gitea.tsaida.synology.me/mayx/blog
|
https://gitea.tsaida.synology.me/mayx/blog
|
||||||
http://xapple.ru:3000/mayx/blog
|
|
||||||
https://git.teygaming.com/mayx/blog
|
https://git.teygaming.com/mayx/blog
|
||||||
https://git.alhsk.top/mayx/blog
|
|
||||||
http://8.138.4.170:8980/mayx/blog
|
|
||||||
http://210.211.116.85:3000/mayx/blog
|
|
||||||
http://osztromok.com:3164/mayx/blog
|
http://osztromok.com:3164/mayx/blog
|
||||||
http://175.209.53.134:3030/mayx/blog
|
http://175.209.53.134:3030/mayx/blog
|
||||||
http://118.163.190.249:3000/mayx/blog
|
|
||||||
http://39.107.226.169:3000/mayx/blog
|
http://39.107.226.169:3000/mayx/blog
|
||||||
https://git.ueda.sk/mayx/blog
|
|
||||||
http://113.45.76.155:3000/mayx/blog
|
|
||||||
http://168.138.196.70:3000/mayx/blog
|
|
||||||
http://39.96.211.118:3000/mayx/blog
|
http://39.96.211.118:3000/mayx/blog
|
||||||
http://47.103.100.52:3000/mayx/blog
|
|
||||||
http://5.189.140.23:8080/mayx/blog
|
|
||||||
http://121.37.47.20:3000/mayx/blog
|
http://121.37.47.20:3000/mayx/blog
|
||||||
https://git.antropix.dev/mayx/blog
|
https://git.antropix.dev/mayx/blog
|
||||||
http://15.237.198.144/mayx/blog
|
http://15.237.198.144/mayx/blog
|
||||||
http://123.249.119.122:3000/mayx/blog
|
|
||||||
http://183.6.120.101:30000/mayx/blog
|
http://183.6.120.101:30000/mayx/blog
|
||||||
http://134.122.173.191:3000/mayx/blog
|
|
||||||
http://8.138.81.5:3000/mayx/blog
|
|
||||||
https://xgit.tsuimg.top/mayx/blog
|
|
||||||
http://123.60.156.158:13000/mayx/blog
|
|
||||||
http://57.129.94.190:3000/mayx/blog
|
http://57.129.94.190:3000/mayx/blog
|
||||||
https://gitea.micro-stack.org/mayx/blog
|
https://gitea.micro-stack.org/mayx/blog
|
||||||
http://101.132.160.67:3000/mayx/blog
|
|
||||||
https://gitea.temp.brentgruber.com/mayx/blog
|
https://gitea.temp.brentgruber.com/mayx/blog
|
||||||
http://47.102.147.170:3050/mayx/blog
|
http://47.102.147.170:3050/mayx/blog
|
||||||
http://209.38.235.254:3000/mayx/blog
|
|
||||||
http://172.236.250.154:3000/mayx/blog
|
http://172.236.250.154:3000/mayx/blog
|
||||||
http://54.198.134.152:3000/mayx/blog
|
http://54.198.134.152:3000/mayx/blog
|
||||||
http://121.41.35.226:11011/mayx/blog
|
http://121.41.35.226:11011/mayx/blog
|
||||||
http://47.111.1.12:3000/mayx/blog
|
http://47.111.1.12:3000/mayx/blog
|
||||||
https://nelgit.nelpi.co.uk/mayx/blog
|
https://nelgit.nelpi.co.uk/mayx/blog
|
||||||
http://47.108.156.251:3000/mayx/blog
|
|
||||||
http://8.141.91.86:3000/mayx/blog
|
http://8.141.91.86:3000/mayx/blog
|
||||||
http://8.138.187.132:3000/mayx/blog
|
|
||||||
http://117.72.15.187:3000/mayx/blog
|
http://117.72.15.187:3000/mayx/blog
|
||||||
http://81.70.30.91:3000/mayx/blog
|
http://81.70.30.91:3000/mayx/blog
|
||||||
https://gitea.kisechan.space/mayx/blog
|
|
||||||
http://140.238.9.133:3007/mayx/blog
|
|
||||||
http://8.138.100.115:3000/mayx/blog
|
|
||||||
https://git.mwapp.com.br/mayx/blog
|
|
||||||
http://yidaima.cn:6008/mayx/blog
|
|
||||||
http://185.126.237.57:3000/mayx/blog
|
|
||||||
http://47.97.50.232:3000/mayx/blog
|
|
||||||
http://106.54.211.95:3000/mayx/blog
|
http://106.54.211.95:3000/mayx/blog
|
||||||
http://210.245.20.73:3333/mayx/blog
|
http://210.245.20.73:3333/mayx/blog
|
||||||
http://43.248.97.109:3000/mayx/blog
|
http://43.248.97.109:3000/mayx/blog
|
||||||
http://113.207.86.104:3080/mayx/blog
|
http://113.207.86.104:3080/mayx/blog
|
||||||
http://down.luanhailiang.cn:9000/mayx/blog
|
|
||||||
http://39.96.195.72:10082/mayx/blog
|
http://39.96.195.72:10082/mayx/blog
|
||||||
https://gitea.klopfenstein.org/mayx/blog
|
|
||||||
http://8.148.24.160:3000/mayx/blog
|
http://8.148.24.160:3000/mayx/blog
|
||||||
http://221.219.181.35:30000/mayx/blog
|
https://221.219.181.35:30000/mayx/blog
|
||||||
http://172.172.102.93:3000/mayx/blog
|
http://172.172.102.93:3000/mayx/blog
|
||||||
http://139.196.179.195:3000/mayx/blog
|
|
||||||
http://115.120.245.164:3000/mayx/blog
|
http://115.120.245.164:3000/mayx/blog
|
||||||
http://120.27.19.58:30000/mayx/blog
|
|
||||||
https://gitea.suchodupin.com/mayx/blog
|
|
||||||
http://117.72.219.18:6000/mayx/blog
|
|
||||||
http://35.194.179.90:3000/mayx/blog
|
http://35.194.179.90:3000/mayx/blog
|
||||||
http://188.245.173.247:3080/mayx/blog
|
|
||||||
http://8.153.14.94:61308/mayx/blog
|
|
||||||
http://66.179.208.56:3001/mayx/blog
|
http://66.179.208.56:3001/mayx/blog
|
||||||
http://59.110.63.79:13000/mayx/blog
|
|
||||||
http://59.110.63.80:3000/mayx/blog
|
|
||||||
http://121.43.60.72:9015/mayx/blog
|
http://121.43.60.72:9015/mayx/blog
|
||||||
http://171.80.13.66:9112/mayx/blog
|
http://171.80.13.66:9112/mayx/blog
|
||||||
http://211.22.221.188:3000/mayx/blog
|
|
||||||
http://223.108.157.174:3000/mayx/blog
|
http://223.108.157.174:3000/mayx/blog
|
||||||
http://120.24.249.56/mayx/blog
|
http://120.24.249.56/mayx/blog
|
||||||
http://47.100.90.152:3000/mayx/blog
|
|
||||||
http://120.24.251.176:30000/mayx/blog
|
|
||||||
http://121.196.237.108:3000/mayx/blog
|
|
||||||
http://g.gamesns.cn:3000/mayx/blog
|
|
||||||
http://54.179.203.2:3000/mayx/blog
|
http://54.179.203.2:3000/mayx/blog
|
||||||
http://14.103.246.124:16000/mayx/blog
|
http://14.103.246.124:16000/mayx/blog
|
||||||
https://mygit.kikyps.com/mayx/blog
|
|
||||||
http://152.42.207.183:3000/mayx/blog
|
http://152.42.207.183:3000/mayx/blog
|
||||||
http://47.99.60.81:10082/mayx/blog
|
http://47.99.60.81:10082/mayx/blog
|
||||||
http://120.211.66.170:8418/mayx/blog
|
http://120.211.66.170:8418/mayx/blog
|
||||||
http://187.189.244.23:3000/mayx/blog
|
|
||||||
http://58.176.21.43:9004/mayx/blog
|
|
||||||
https://gitea.vilcap.com/mayx/blog
|
https://gitea.vilcap.com/mayx/blog
|
||||||
http://8.137.94.229:3000/mayx/blog
|
|
||||||
http://121.196.245.62/mayx/blog
|
http://121.196.245.62/mayx/blog
|
||||||
http://47.102.209.69:53000/mayx/blog
|
|
||||||
http://116.205.97.109:3000/mayx/blog
|
|
||||||
https://gitea.ysme.top/mayx/blog
|
|
||||||
http://8.140.242.230:3000/mayx/blog
|
|
||||||
http://8.138.142.17:3000/mayx/blog
|
http://8.138.142.17:3000/mayx/blog
|
||||||
http://47.95.31.56:20080/mayx/blog
|
|
||||||
http://123.56.231.200:3000/mayx/blog
|
|
||||||
http://113.46.142.74:3000/mayx/blog
|
|
||||||
http://www.koelndom.cn:13030/mayx/blog
|
http://www.koelndom.cn:13030/mayx/blog
|
||||||
http://209.127.59.74:3000/mayx/blog
|
http://209.127.59.74:3000/mayx/blog
|
||||||
https://git.dotb.cloud/mayx/blog
|
https://git.dotb.cloud/mayx/blog
|
||||||
https://git.bigdalang.com/mayx/blog
|
|
||||||
https://gitea.augeo.dev/mayx/blog
|
https://gitea.augeo.dev/mayx/blog
|
||||||
http://120.46.23.215:3000/mayx/blog
|
http://120.46.23.215:3000/mayx/blog
|
||||||
http://121.41.2.71:3000/mayx/blog
|
http://121.41.2.71:3000/mayx/blog
|
||||||
http://8.138.242.82:8888/mayx/blog
|
|
||||||
http://110.41.177.80:5000/mayx/blog
|
http://110.41.177.80:5000/mayx/blog
|
||||||
https://gitea.dsmaster.myds.me/mayx/blog
|
https://gitea.dsmaster.myds.me/mayx/blog
|
||||||
http://intechrnd.iptime.org:3000/mayx/blog
|
|
||||||
https://gitea.primecontrols-dev.com/mayx/blog
|
https://gitea.primecontrols-dev.com/mayx/blog
|
||||||
http://39.104.61.219:3000/mayx/blog
|
|
||||||
http://www.scserverddns.top:13000/mayx/blog
|
http://www.scserverddns.top:13000/mayx/blog
|
||||||
http://156.255.1.229:3000/mayx/blog
|
|
||||||
https://git.ndpcloud.ru/mayx/blog
|
|
||||||
https://gitea.va-comer.net/mayx/blog
|
|
||||||
https://git.lucas-michel.fr/mayx/blog
|
https://git.lucas-michel.fr/mayx/blog
|
||||||
http://60.205.162.59:3000/mayx/blog
|
|
||||||
https://git.imvictor.tech:2/mayx/blog
|
https://git.imvictor.tech:2/mayx/blog
|
||||||
https://git.pwcedge-sbs-innov-lab.com/mayx/blog
|
|
||||||
http://47.112.137.193:3000/mayx/blog
|
http://47.112.137.193:3000/mayx/blog
|
||||||
https://gitea.malin.onl/mayx/blog
|
|
||||||
http://58.38.123.148:3176/mayx/blog
|
http://58.38.123.148:3176/mayx/blog
|
||||||
http://docker.clhero.fun:3000/mayx/blog
|
http://docker.clhero.fun:3000/mayx/blog
|
||||||
http://42.193.251.215:3000/mayx/blog
|
|
||||||
https://bdgit.educoder.net/mayx/blog
|
https://bdgit.educoder.net/mayx/blog
|
||||||
http://e19510c831.iok.la/mayx/blog
|
http://e19510c831.iok.la/mayx/blog
|
||||||
https://www.nxgit.xyz/mayx/blog
|
|
||||||
http://119.45.49.212:3000/mayx/blog
|
http://119.45.49.212:3000/mayx/blog
|
||||||
https://git.synapsenet.net/mayx/blog
|
|
||||||
https://gitea.kdlsvps.top/mayx/blog
|
https://gitea.kdlsvps.top/mayx/blog
|
||||||
http://deiniusoft.com:3000/mayx/blog
|
|
||||||
https://code.antopie.org/mayx/blog
|
https://code.antopie.org/mayx/blog
|
||||||
http://c6h5gp.top:3000/mayx/blog
|
|
||||||
https://git.serenetia.com/mayx/blog
|
https://git.serenetia.com/mayx/blog
|
||||||
https://tm-jikayo.com/mayx/blog
|
|
||||||
https://vcs.cozydsp.space/mayx/blog
|
https://vcs.cozydsp.space/mayx/blog
|
||||||
http://43.162.113.116:3000/mayx/blog
|
|
||||||
http://8.129.11.230:7002/mayx/blog
|
|
||||||
http://115.190.107.87:3000/mayx/blog
|
http://115.190.107.87:3000/mayx/blog
|
||||||
https://git.hast.one/mayx/blog
|
|
||||||
http://106.12.50.144:8081/mayx/blog
|
http://106.12.50.144:8081/mayx/blog
|
||||||
http://43.192.90.133/mayx/blog
|
|
||||||
http://120.77.94.227:9999/mayx/blog
|
|
||||||
https://code.wxk8.com/mayx/blog
|
https://code.wxk8.com/mayx/blog
|
||||||
http://www.befitsoft.com/mayx/blog
|
|
||||||
http://36.213.200.127:23000/mayx/blog
|
|
||||||
http://8.155.58.218:9000/mayx/blog
|
http://8.155.58.218:9000/mayx/blog
|
||||||
http://fanlibo.i234.me:8418/mayx/blog
|
http://fanlibo.i234.me:8418/mayx/blog
|
||||||
https://git.christophhagen.de/mayx/blog
|
|
||||||
http://rito.synology.me:3000/mayx/blog
|
|
||||||
http://www.dothing.com:6999/mayx/blog
|
|
||||||
http://8.217.32.95:3000/mayx/blog
|
|
||||||
https://git.temporaryname.org/mayx/blog
|
https://git.temporaryname.org/mayx/blog
|
||||||
https://git.loli.surf/mayx/blog
|
|
||||||
https://Repo.gusdya.net/mayx/blog
|
https://Repo.gusdya.net/mayx/blog
|
||||||
https://git.m.ctf.arrobe.fr/mayx/blog
|
https://git.m.ctf.arrobe.fr/mayx/blog
|
||||||
http://120.27.238.24:3000/mayx/blog
|
|
||||||
https://code.diekabuths.dynu.net/mayx/blog
|
|
||||||
http://69.62.64.52:3333/mayx/blog
|
http://69.62.64.52:3333/mayx/blog
|
||||||
https://git.flymiracle.com/mayx/blog
|
https://git.flymiracle.com/mayx/blog
|
||||||
https://git.scene.to/mayx/blog
|
|
||||||
https://git.auwiesen2.de/mayx/blog
|
|
||||||
http://naughtycat.biz:3333/mayx/blog
|
|
||||||
https://git.p1.bitstorm.co.nz/mayx/blog
|
|
||||||
https://www.yalecheung.top:1024/mayx/blog
|
|
||||||
http://39.105.67.143:3000/mayx/blog
|
|
||||||
https://gitea.manekenbrand.com/mayx/blog
|
https://gitea.manekenbrand.com/mayx/blog
|
||||||
https://gitea.eabor.xyz/mayx/blog
|
|
||||||
http://106.14.138.181:3000/mayx/blog
|
http://106.14.138.181:3000/mayx/blog
|
||||||
https://git.adalspace.com/mayx/blog
|
|
||||||
https://git.yyuu.xyz/mayx/blog
|
https://git.yyuu.xyz/mayx/blog
|
||||||
http://39.107.70.124:3000/mayx/blog
|
http://39.107.70.124:3000/mayx/blog
|
||||||
http://huanghomenas2.myqnapcloud.com:4000/mayx/blog
|
|
||||||
http://218.237.212.51:30003/mayx/blog
|
|
||||||
http://gitea.huangyanjie.com/mayx/blog
|
|
||||||
https://git.stormrain.cn/mayx/blog
|
https://git.stormrain.cn/mayx/blog
|
||||||
https://git.deuxfleurs.fr/mayx/blog
|
https://git.deuxfleurs.fr/mayx/blog
|
||||||
https://www.simpra.org:3000/mayx/blog
|
https://www.simpra.org:3000/mayx/blog
|
||||||
http://8.148.31.14:3000/mayx/blog
|
http://8.148.31.14:3000/mayx/blog
|
||||||
http://55x.top:9300/mayx/blog
|
|
||||||
https://gitea.lelespace.top/mayx/blog
|
|
||||||
https://git.lmbrs.org/mayx/blog
|
|
||||||
https://fj.sinesation.com/mayx/blog
|
|
||||||
http://47.94.246.1:3000/mayx/blog
|
http://47.94.246.1:3000/mayx/blog
|
||||||
http://103.87.67.60:3100/mayx/blog
|
|
||||||
https://docker-registry-lszz.uj.com.tw/mayx/blog
|
|
||||||
https://git.honulla.com/mayx/blog
|
|
||||||
https://www.arcbyte.dev/mayx/blog
|
https://www.arcbyte.dev/mayx/blog
|
||||||
http://45.144.30.78:8083/mayx/blog
|
|
||||||
https://git.nihil.foo/mayx/blog
|
|
||||||
https://scm.bcorex.e3labs.net/mayx/blog
|
https://scm.bcorex.e3labs.net/mayx/blog
|
||||||
http://167.172.88.190:3000/mayx/blog
|
|
||||||
http://58.17.14.95:8001/mayx/blog
|
http://58.17.14.95:8001/mayx/blog
|
||||||
https://hero-cloud-stg-code.cnbita.com/mayx/blog
|
https://hero-cloud-stg-code.cnbita.com/mayx/blog
|
||||||
https://git.darkmattergame.net/mayx/blog
|
|
||||||
http://101.37.69.204:3000/mayx/blog
|
http://101.37.69.204:3000/mayx/blog
|
||||||
http://jacksonhampton.com:3000/mayx/blog
|
|
||||||
https://git.jaronnie.com/mayx/blog
|
|
||||||
https://gitea.tecamino.com/mayx/blog
|
https://gitea.tecamino.com/mayx/blog
|
||||||
http://39.99.175.172:8000/mayx/blog
|
http://39.99.175.172:8000/mayx/blog
|
||||||
http://8.138.13.251:3000/mayx/blog
|
http://8.138.13.251:3000/mayx/blog
|
||||||
http://47.115.223.229:8888/mayx/blog
|
http://47.115.223.229:8888/mayx/blog
|
||||||
http://47.105.59.0:5132/mayx/blog
|
|
||||||
https://git.veran.link/mayx/blog
|
|
||||||
http://104.254.131.244:3000/mayx/blog
|
http://104.254.131.244:3000/mayx/blog
|
||||||
|
https://gitea.alacloud.de/mayx/blog
|
||||||
|
https://git.tobiasweise.dev/mayx/blog
|
||||||
|
https://code.cif.su/mayx/blog
|
||||||
|
https://git.cynic.moe/mayx/blog
|
||||||
|
https://git.muellers-software.org/mayx/blog
|
||||||
|
http://8.130.128.130:3000/mayx/blog
|
||||||
|
https://repos.fbpx.io/mayx/blog
|
||||||
|
https://git.cavemanon.xyz/mayx/blog
|
||||||
|
http://svn.rivastudio.cn/mayx/blog
|
||||||
|
https://kamtk.ru:4000/mayx/blog
|
||||||
|
http://39.98.126.115:8080/mayx/blog
|
||||||
|
http://46.202.189.66:3000/mayx/blog
|
||||||
|
http://82.26.157.11:3001/mayx/blog
|
||||||
|
http://123.60.146.54:3000/mayx/blog
|
||||||
|
http://8.140.248.67:3000/mayx/blog
|
||||||
|
http://118.178.172.49:3000/mayx/blog
|
||||||
|
https://gitea.lasallesaintdenis.com/mayx/blog
|
||||||
|
http://123.57.225.51:3000/mayx/blog
|
||||||
|
http://8.130.135.159:3000/mayx/blog
|
||||||
|
https://git.suo0.com/mayx/blog
|
||||||
|
http://103.228.160.127:3100/mayx/blog
|
||||||
|
https://git.dshkabatur.ru/mayx/blog
|
||||||
|
https://gitea.hoba.dedyn.io/mayx/blog
|
||||||
|
https://git.wegoo.ltd/mayx/blog
|
||||||
|
http://114.203.209.83:3000/mayx/blog
|
||||||
|
http://47.100.111.106:3000/mayx/blog
|
||||||
|
http://47.103.78.70:3000/mayx/blog
|
||||||
|
http://47.100.208.160:51300/mayx/blog
|
||||||
|
http://113.44.218.8:3000/mayx/blog
|
||||||
|
https://git.cenoq.com/mayx/blog
|
||||||
|
http://8.152.205.35:3000/mayx/blog
|
||||||
|
http://120.210.80.160:3000/mayx/blog
|
||||||
|
http://1.95.192.200:59300/mayx/blog
|
||||||
|
https://git.medis.com.vn/mayx/blog
|
||||||
|
http://194.5.152.156:3000/mayx/blog
|
||||||
|
http://8.155.172.147:3001/mayx/blog
|
||||||
|
https://git.erfmann.dev/mayx/blog
|
||||||
|
https://git.weavefun.com:5443/mayx/blog
|
||||||
|
https://git.vajdak.cz/mayx/blog
|
||||||
|
http://58.65.162.118:3000/mayx/blog
|
||||||
|
https://git.arkon.solutions/mayx/blog
|
||||||
|
http://8.131.93.145:54082/mayx/blog
|
||||||
|
http://111.9.31.174:10007/mayx/blog
|
||||||
|
https://forgejo.bridgetownrb.com/mayx/blog
|
||||||
|
http://54.199.96.217:3000/mayx/blog
|
||||||
|
http://20.219.0.85:3000/mayx/blog
|
||||||
|
https://dev01.open-alt.com/mayx/blog
|
||||||
|
https://gitea.doinlab.com/mayx/blog
|
||||||
|
https://gitea.creative-tg1.ru/mayx/blog
|
||||||
|
https://git.7af.ru/mayx/blog
|
||||||
|
https://gitea.yimoyuyan.cn/mayx/blog
|
||||||
|
https://git.apextoaster.com/mayx/blog
|
||||||
|
https://hub.open-verse.ai/mayx/blog
|
||||||
|
http://221.203.14.217:3000/mayx/blog
|
||||||
|
https://git.sophiagwen.au/mayx/blog
|
||||||
|
http://139.196.96.28:13000/mayx/blog
|
||||||
|
https://dev.kiramtech.com/mayx/blog
|
||||||
|
https://git.ihatemen.uk/mayx/blog
|
||||||
|
https://git.123doit.com/mayx/blog
|
||||||
|
http://62.43.207.91:8889/mayx/blog
|
||||||
|
https://rsas.de/mayx/blog
|
||||||
|
https://git.johntsai.online/mayx/blog
|
||||||
|
https://gitea.css-sistemas.com.br/mayx/blog
|
||||||
|
https://git.f4e.lol/mayx/blog
|
||||||
|
http://47.113.145.232:3000/mayx/blog
|
||||||
|
http://47.115.212.237:3000/mayx/blog
|
||||||
|
http://72.61.229.93:4000/mayx/blog
|
||||||
|
https://git.yinbonet.cn/mayx/blog
|
||||||
|
https://lishan148.synology.me:3014/mayx/blog_cn
|
||||||
|
http://1.95.221.174:3000/mayx/blog
|
||||||
|
https://git.huwhy.cn/mayx/blog_cn
|
||||||
|
http://119.91.35.154:3000/mayx/blog_cn
|
||||||
|
http://110.42.101.39:13000/mayx/blog_cn
|
||||||
|
http://39.101.74.135:5000/mayx/blog_cn
|
||||||
|
http://124.236.46.74:9103/mayx/blog_cn
|
||||||
|
http://123.57.130.140:3000/mayx/blog_cn
|
||||||
|
http://112.124.49.128:3000/mayx/blog_cn
|
||||||
|
http://118.24.46.223:3000/mayx/blog_cn
|
||||||
|
http://s3.v100.vip:31057/mayx/blog_cn
|
||||||
|
https://www.syq.im:2025/mayx/blog_cn
|
||||||
|
http://101.33.225.95:3000/mayx/blog_cn
|
||||||
|
http://45.55.138.82:3000/mayx/blog_cn
|
||||||
|
http://82.156.121.2:3000/mayx/blog_cn
|
||||||
|
http://118.24.129.148:3000/mayx/blog_cn
|
||||||
|
http://58.241.155.106:10140/mayx/blog_cn
|
||||||
|
http://120.48.141.82:3000/mayx/blog_cn
|
||||||
|
http://61.178.84.89:8998/mayx/blog_cn
|
||||||
|
http://82.156.111.58:3000/mayx/blog_cn
|
||||||
|
https://git.saike.fun:9755/mayx/blog_cn
|
||||||
|
https://git.cool2645.com/mayx/blog_cn
|
||||||
|
http://1.95.173.44:3000/mayx/blog_cn
|
||||||
|
http://58.221.157.122:3000/mayx/blog_cn
|
||||||
|
https://gitlab.liruwei.cn/mayx/blog_cn
|
||||||
|
http://61.190.74.90:9900/mayx/blog_cn
|
||||||
|
http://49.234.27.222:3000/mayx/blog_cn
|
||||||
|
http://8.153.70.81:30001/mayx/blog_cn
|
||||||
|
http://175.27.229.211:3000/mayx/blog_cn
|
||||||
|
http://106.55.174.214:3000/mayx/blog_cn
|
||||||
|
https://git.yidaimingjvn.xyz/mayx/blog_cn
|
||||||
|
http://39.105.67.143:3000/mayx/blog_cn
|
||||||
|
http://8.140.232.131:8100/mayx/blog_cn
|
||||||
|
http://82.156.89.21:3000/mayx/blog_cn
|
||||||
|
https://git.sskuaixiu.com/mayx/blog_cn
|
||||||
|
http://xujiesoft.vicp.net:3000/mayx/blog_cn
|
||||||
|
http://113.44.36.103:23000/mayx/blog_cn
|
||||||
|
https://git.mingliqiye.com/mayx/blog_cn
|
||||||
|
http://119.29.194.155:8894/mayx/blog_cn
|
||||||
|
http://43.138.249.161:3000/mayx/blog_cn
|
||||||
|
http://58.213.60.6:19000/mayx/blog_cn
|
||||||
|
http://36.153.162.171:3000/mayx/blog_cn
|
||||||
|
http://47.92.113.131:3000/mayx/blog
|
||||||
|
http://gyc.myds.me:4000/mayx/blog
|
||||||
|
https://git.tablet.sh/mayx/blog
|
||||||
|
https://git.gnyra.com/mayx/blog
|
||||||
|
https://git.graveyard.sh/mayx/blog
|
||||||
|
https://git.nathanspackman.com/mayx/blog
|
||||||
|
https://git.rmarl.in/mayx/blog
|
||||||
|
https://git.alderautomation.ca/mayx/blog
|
||||||
|
http://git.qniao.cn/mayx/blog
|
||||||
|
https://git.fast-blast.uk/mayx/blog
|
||||||
|
http://git.mynas71.myds.me/mayx/blog
|
||||||
|
https://git.4lsa.com/mayx/blog
|
||||||
|
https://rlgit.pro/mayx/blog
|
||||||
|
https://git.veraskolivna.net/mayx/blog
|
||||||
|
https://git.lifetop.net/mayx/blog
|
||||||
|
https://gitea.jnyuxia.com/mayx/blog
|
||||||
|
http://git.liuhung.com/mayx/blog
|
||||||
|
https://git.secretserver.club/mayx/blog
|
||||||
|
https://gitea.adber.tech/mayx/blog
|
||||||
|
https://gitea.hello.faith/mayx/blog
|
||||||
|
https://tea.neuron.my/mayx/blog
|
||||||
|
https://git.violka-it.net/mayx/blog
|
||||||
|
https://git.adityagupta.dev/mayx/blog
|
||||||
|
https://code.ownwire.net/mayx/blog
|
||||||
|
https://git.danpeak.co.uk/mayx/blog
|
||||||
|
https://gitea.mynas-lechner.de/mayx/blog
|
||||||
|
https://git.automathon.org/mayx/blog
|
||||||
|
https://aeterna.cim.mcgill.ca/mayx/blog
|
||||||
|
https://git.esen.gay/mayx/blog
|
||||||
|
https://git.webtims.ru/mayx/blog
|
||||||
|
https://gitea.personalsoftware.space/mayx/blog
|
||||||
|
http://gitea.yiban.com.tw:3030/mayx/blog
|
||||||
|
https://gitlab.iplusus.com/mayx/blog
|
||||||
|
https://git.cyberuk.me/mayx/blog
|
||||||
|
https://git.privezishop.ru/mayx/blog
|
||||||
|
https://gitea.zachl.tech/mayx/blog
|
||||||
|
https://git.miasma-os.com/mayx/blog
|
||||||
|
https://gitea.nacsity.cn/mayx/blog
|
||||||
|
https://gitea.diputadosalta.gob.ar/mayx/blog
|
||||||
|
https://ttym.space/mayx/blog
|
||||||
|
https://getskill.work/mayx/blog
|
||||||
|
https://suprasage.com/mayx/blog
|
||||||
|
https://git.zakum.cn/mayx/blog
|
||||||
|
https://gitea.amazingcoders.com/mayx/blog
|
||||||
|
https://gitea.kamilklecha.dev/mayx/blog
|
||||||
|
http://47.109.103.110:9000/mayx/blog_cn
|
||||||
|
http://47.105.124.101:3000/mayx/blog_cn
|
||||||
|
http://49.232.183.190:3000/mayx/blog_cn
|
||||||
|
http://git.zxkedu.com:33769/mayx/blog_cn
|
||||||
|
https://code.wemediacn.com/mayx/blog_cn
|
||||||
|
https://gitea.shizuka.icu/mayx/blog_cn
|
||||||
|
http://43.139.2.237:3000/mayx/blog_cn
|
||||||
|
http://51.159.198.233:3000/mayx/blog
|
||||||
|
https://gitea.adriangonzalezbarbosa.eu/mayx/blog
|
||||||
|
https://git.legatus.ru/mayx/blog
|
||||||
|
https://git.kayashov.keenetic.pro/mayx/blog
|
||||||
|
http://43.138.83.20:3000/mayx/blog_cn
|
||||||
|
http://47.104.241.192:19999/mayx/blog_cn
|
||||||
|
http://47.98.148.146:1026/mayx/blog_cn
|
||||||
|
http://119.96.62.56:3000/mayx/blog_cn
|
||||||
|
http://101.42.28.156:3000/mayx/blog_cn
|
||||||
|
http://106.55.0.66:31807/mayx/blog_cn
|
||||||
|
https://gitea.gentronhealth.com/mayx/blog_cn
|
||||||
|
http://43.143.209.246:6300/mayx/blog_cn
|
||||||
|
http://152.136.158.133:36512/mayx/blog_cn
|
||||||
|
http://yidaima.cn:6008/mayx/blog_cn
|
||||||
|
http://47.113.101.80:3000/mayx/blog_cn
|
||||||
|
http://82.156.98.34:3000/mayx/blog_cn
|
||||||
|
http://zgd.synology.me:8418/mayx/blog_cn
|
||||||
|
https://git.zguiy.com/mayx/blog_cn
|
||||||
|
http://58.221.216.202:3000/mayx/blog_cn
|
||||||
|
http://39.100.183.95:88/mayx/blog_cn
|
||||||
|
http://www.xshideserver.com:3000/mayx/blog_cn
|
||||||
|
http://124.223.54.62:28/mayx/blog_cn
|
||||||
|
http://159.75.131.235:3001/mayx/blog_cn
|
||||||
|
http://1.117.67.95:3000/mayx/blog_cn
|
||||||
|
http://103.236.53.208:3000/mayx/blog_cn
|
||||||
|
http://118.195.135.194:3000/mayx/blog_cn
|
||||||
|
http://81.70.102.154/mayx/blog_cn
|
||||||
|
http://154.8.164.149:3000/mayx/blog_cn
|
||||||
|
http://111.228.34.40:3000/mayx/blog_cn
|
||||||
|
http://82.156.249.211:3000/mayx/blog_cn
|
||||||
|
http://36.133.248.69:3088/mayx/blog_cn
|
||||||
|
http://220.205.16.27:18081/mayx/blog_cn
|
||||||
|
http://81.69.221.216:3000/mayx/blog_cn
|
||||||
|
http://115.159.194.75:4000/mayx/blog_cn
|
||||||
|
http://183.204.60.122:10081/mayx/blog_cn
|
||||||
|
http://43.139.240.37:17000/mayx/blog_cn
|
||||||
|
http://159.75.27.114:3000/mayx/blog_cn
|
||||||
|
http://arcreya.top/mayx/blog_cn
|
||||||
|
https://code.tczkiot.com/mayx/blog_cn
|
||||||
|
http://111.170.153.123:3000/mayx/blog_cn
|
||||||
|
http://xeroworld.team/mayx/blog_cn
|
||||||
|
https://gitea.wuyuank.com/mayx/blog_cn
|
||||||
|
http://47.117.245.9:17701/mayx/blog_cn
|
||||||
|
https://git.sunlix.one/mayx/blog_cn
|
||||||
|
http://47.106.222.181:20511/mayx/blog_cn
|
||||||
|
http://101.43.95.130:3001/mayx/blog_cn
|
||||||
|
http://39.101.170.62:9080/mayx/blog_cn
|
||||||
|
https://gitea.myat4.com/mayx/blog_cn
|
||||||
|
http://118.24.161.24:3000/mayx/blog_cn
|
||||||
|
http://githanea.s.odn.cc/mayx/blog_cn
|
||||||
|
https://git.dev.chuweizi.com/mayx/blog
|
||||||
|
http://35.175.189.8/mayx/blog
|
||||||
|
http://meowug.com:8418/mayx/blog_cn
|
||||||
|
http://36.138.125.206:3000/mayx/blog_cn
|
||||||
|
https://git.4lcap.com/mayx/blog_cn
|
||||||
|
https://gitea.visoftware.com.co/mayx/blog_cn
|
||||||
|
http://101.43.238.71:3000/mayx/blog_cn
|
||||||
|
http://59.110.175.62:4322/mayx/blog_cn
|
||||||
|
https://www.luluvip.cn:8419/mayx/blog_cn
|
||||||
|
http://xianyuhome.cn:11013/mayx/blog_cn
|
||||||
|
https://git.chatumbrella.online/mayx/blog
|
||||||
|
https://silica.codes/mayx/blog
|
||||||
|
https://git.crystalyx.net/mayx/blog
|
||||||
|
https://gittea.dev/mayx/blog
|
||||||
|
https://git.newnaturalphilosophy.org/mayx/blog
|
||||||
|
http://mrjinit.com:3000/mayx/blog
|
||||||
|
https://code.infininov.com/mayx/blog
|
||||||
|
https://git.apt142.ru/mayx/blog
|
||||||
|
http://gitea.mcelwain.net/mayx/blog
|
||||||
|
https://chunkks.com/mayx/blog
|
||||||
|
https://gitea.earthmanrpg.me/mayx/blog
|
||||||
|
https://ndiuky.site/mayx/blog
|
||||||
|
https://src.enterpriselinux.social/mayx/blog
|
||||||
|
https://gitea.grxe.io/mayx/blog
|
||||||
|
https://git.mhworld.net/mayx/blog
|
||||||
|
https://blvckout.foo/mayx/blog
|
||||||
|
https://gitea.accept.dev.dbf.nl/mayx/blog
|
||||||
|
https://git.ke5.de/mayx/blog
|
||||||
|
https://git.jhossain.online/mayx/blog
|
||||||
|
http://gitea.xsec.fun/mayx/blog
|
||||||
|
https://barhoum-lab.fr/mayx/blog
|
||||||
|
https://git.fedaya.net/mayx/blog
|
||||||
|
http://gitea.nakile.fr/mayx/blog
|
||||||
|
https://redev.lol/mayx/blog
|
||||||
|
http://git.zfxfzb.com/mayx/blog
|
||||||
|
https://papi.tkpups.com/mayx/blog
|
||||||
|
https://git.beyond-a-i.org/mayx/blog
|
||||||
|
http://huanghomenas2.myqnapcloud.com:4000/mayx/blog_cn
|
||||||
|
http://43.142.166.108:10082/mayx/blog_cn
|
||||||
|
https://git.ueda.sk/mayx/blog_cn
|
||||||
|
https://tm-jikayo.com/mayx/blog_cn
|
||||||
|
http://zzdgitea.stnav.com/mayx/blog_cn
|
||||||
|
http://1.117.66.197:3000/mayx/blog_cn
|
||||||
|
http://git.zhmight.com/mayx/blog_cn
|
||||||
|
https://intl-dev.gaia888.com/mayx/blog_cn
|
||||||
|
https://gitea.xinyuxi.com/mayx/blog_cn
|
||||||
|
http://gitea.snailtrack.cn/mayx/blog_cn
|
||||||
|
https://git.powerdata.dk/mayx/blog
|
||||||
|
http://ydds.cloud:3000/mayx/blog_cn
|
||||||
|
https://git.keruixinda.com/mayx/blog_cn
|
||||||
|
http://120.24.50.145:3000/mayx/blog_cn
|
||||||
|
https://code.draussenfunker.de/mayx/blog_cn
|
||||||
|
https://git.dinsor.co.th/mayx/blog
|
||||||
|
https://ofibohost.com/mayx/blog
|
||||||
|
https://lab.iishka.net/mayx/blog
|
||||||
|
http://www.arkproject.top/mayx/blog
|
||||||
|
http://www.bkandssp.cn:30/mayx/blog
|
||||||
|
https://gitea.spitaki.cloud/mayx/blog
|
||||||
|
https://git.codle.ru/mayx/blog
|
||||||
|
http://139.224.24.61:3000/mayx/blog
|
||||||
|
https://git.sao.ru/mayx/blog
|
||||||
|
https://codeop.ru/mayx/blog
|
||||||
|
https://git.mirocom.org/mayx/blog
|
||||||
|
http://gitea.ydxtool.com/mayx/blog
|
||||||
|
http://18.167.251.121:10003/mayx/blog
|
||||||
|
http://39.98.171.121:53000/mayx/blog
|
||||||
|
https://gitea.malxte.de/mayx/blog
|
||||||
|
https://git.nizart.me/mayx/blog
|
||||||
|
https://git.ddns.net/mayx/blog
|
||||||
|
http://222.85.214.245:9776/mayx/blog
|
||||||
|
https://git.kraevsky.ru/mayx/blog
|
||||||
|
https://ruyiscx.cloud:3000/mayx/blog
|
||||||
|
https://git.0xee.eu/mayx/blog
|
||||||
|
https://gitea.deitglobal.com/mayx/blog
|
||||||
|
https://www.mygitea.ru/mayx/blog
|
||||||
|
https://git.crwlr.ir/mayx/blog
|
||||||
|
https://git.nozora.top/mayx/blog
|
||||||
|
https://git.sortug.com/mayx/blog
|
||||||
|
https://aivyx-gitea.cloud/mayx/blog
|
||||||
|
https://git.akarmain.ru/mayx/blog
|
||||||
|
https://git.edenit.co.kr/mayx/blog
|
||||||
|
https://git.catgirlsneed.homes/mayx/blog
|
||||||
|
https://git.eldev.netcraze.pro/mayx/blog
|
||||||
|
http://110.41.184.238:3000/mayx/blog
|
||||||
|
http://47.108.255.216:3000/mayx/blog_cn
|
||||||
|
https://gitea.molietech.com/mayx/blog_cn
|
||||||
|
http://58.87.88.234:3000/mayx/blog_cn
|
||||||
|
http://210.75.240.13:3000/mayx/blog_cn
|
||||||
|
https://git.xz-i.com:30443/mayx/blog_cn
|
||||||
|
http://111.229.64.148:8080/mayx/blog_cn
|
||||||
|
https://git.fynn.vip/mayx/blog_cn
|
||||||
|
http://119.91.212.17:3000/mayx/blog_cn
|
||||||
|
http://git.hbg99.com:8080/mayx/blog_cn
|
||||||
|
https://git.eplg.services/mayx/blog
|
||||||
|
http://89.167.38.168:3001/mayx/blog
|
||||||
|
http://namonba.asuscomm.com:3001/mayx/blog
|
||||||
|
http://109.199.98.226:3001/mayx/blog
|
||||||
|
https://git.extra.eiffel.com/mayx/blog
|
||||||
|
https://gitea.digitanie.org/mayx/blog
|
||||||
|
http://124.207.0.162:30000/mayx/blog
|
||||||
|
|||||||
|
500 Internal Server Error
Gitea Version: 1.24.2 |