') + ')', 'gi');
if (regex.test(text)) {
found = true;
var frag = document.createDocumentFragment();
var parts = text.split(regex);
parts.forEach(function(part, i) {
if (i % 2 === 0) {
frag.appendChild(document.createTextNode(part));
} else {
var span = document.createElement('span');
span.className = 'userscript-highlight';
span.textContent = part;
frag.appendChild(span);
}
});
node.parentNode.replaceChild(frag, node);
}
});
} else if (node.nodeType === 1 && node.childNodes) { // element
var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];
if (!skipTags.includes(node.tagName)) {
Array.from(node.childNodes).forEach(highlight);
}
}
}
highlight(document.body);
// Re-highlight on dynamic content
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(m) {
m.addedNodes.forEach(function(node) {
if (node.nodeType === 1 || node.nodeType === 3) highlight(node);
});
});
});
observer.observe(document.body, { childList: true, subtree: true });
})();
}
} catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); }
})();
(function(){
try {
var __m = "*";
var __re = new RegExp('^' + ".*" + ', 'i');
if (__m === '*' || __re.test(location.href)) {
// Strip utm_, fbclid, gclid, etc. from all links on page
(function() {
var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',
'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',
'ref', 'ref_src', 'source', 'medium', 'campaign'];
function cleanUrl(url) {
try {
var u = new URL(url, window.location.origin);
var changed = false;
trackingParams.forEach(function(p) {
if (u.searchParams.has(p)) {
u.searchParams.delete(p);
changed = true;
}
});
return changed ? u.toString() : url;
} catch (e) {
return url;
}
}
function cleanLinks() {
document.querySelectorAll('a[href]').forEach(function(a) {
var clean = cleanUrl(a.href);
if (clean !== a.href) a.href = clean;
});
}
cleanLinks();
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(m) {
m.addedNodes.forEach(function(node) {
if (node.nodeType === 1) {
if (node.tagName === 'A') cleanLinks();
node.querySelectorAll('a[href]').forEach(function(a) {
var clean = cleanUrl(a.href);
if (clean !== a.href) a.href = clean;
});
}
});
});
});
observer.observe(document.body, { childList: true, subtree: true });
})();
}
} catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); }
})();
(function(){
try {
var __m = "youtube.com";
var __re = new RegExp('^' + "youtube\\.com" + ', 'i');
if (__m === '*' || __re.test(location.href)) {
// Auto-enable theater mode on YouTube
(function() {
function tryTheater() {
var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]');
if (btn && !btn.classList.contains('activated')) {
btn.click();
}
}
// Try immediately
tryTheater();
// Try after navigation (SPA)
var lastUrl = location.href;
setInterval(function() {
if (location.href !== lastUrl) {
lastUrl = location.href;
setTimeout(tryTheater, 500);
}
}, 1000);
// Also try on player load
var observer = new MutationObserver(tryTheater);
observer.observe(document.body, { childList: true, subtree: true });
})();
}
} catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); }
})();
(function(){
try {
var __m = "*";
var __re = new RegExp('^' + ".*" + ', 'i');
if (__m === '*' || __re.test(location.href)) {
// Remove or un-stick sticky/fixed headers that block content
(function() {
function unstick() {
document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) {
if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {
el.style.position = 'static';
el.style.top = 'auto';
el.style.zIndex = 'auto';
}
});
}
unstick();
var observer = new MutationObserver(unstick);
observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });
})();
}
} catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); }
})();
})();
全国大学生操作系统比赛 · GitHub
2025.08.22:2025年全国大学生操作系统比赛颁奖典礼。 2025.08.20-21:2025年全国大学生操作系统比赛的线下决赛&答辩评审。 2025.08.17:2025年全国大学生操作系统比赛的线上决赛作品提交截止日 2025.07.09:2025年全国大学生操作系统比赛进入决赛的名单公布 。 2025.06.30:2025年全国大学生操作系统比赛初赛结束。46个内核赛道队和187个功能赛道队 提交了参赛项目作品。部分内核赛道开源项目作品 ,可进行交流与学习。 2025.02.28:2025年全国大学生操作系统比赛启动并开启报名。可访问OS比赛官网 了解更多信息并报名。 2025.02.23:2025年全国大学生操作系统比赛的章程和技术方案初步完成。 2025.02.22:发布与2025OS比赛内核实现赛道相关的一些OS实例/教程的参考信息 2024.11.16:2024年度全国大学生操作系统比赛总结&2025年度全国大学生操作系统比赛准备会召开 注:2025内核实现赛道比赛,测试用例所在文件系统格式为Ext4, 测试用例没用到Ext4的高级功能(如系统掉电/崩溃的可靠性保障等)。比赛提供的C和Rust的Ext4库 与具体OS无关,并给出了适配这些库的某些OS参考。这些库经过适配后,可集成到各种C或Rust-based的OS中。
在 https://github.com/oscomp 网址下,具有 "projXXX-YYY" 名称的Public类型的仓库是OS比赛功能挑战赛道的可选题目,参加此类赛道的学生队伍可以选择。 建议学生看到想选择的OS功能挑战赛道题目(须是Public类型的仓库且能联系上该题目的出题导师)前,先及时与项目导师取得联系,找导师了解到项目情况后,再决定是否选择。 如果联系不上项目导师,请及时与比赛技术支持组的韩冰老师(微信ID: AiXi_0514 QQ ID: 3479261167)联系,寻求可能的帮助。 具有Public archive类型的仓库,表示此项目(属于OS功能赛道)是往年题目,不是2025年的参赛题目,请参赛同学不要选择。 如果有人感兴趣成为此项目(Public archive类型)的导师,并将进一步改进项目,请及时与会务组联系。 请还没加入“2025OS功能赛道导师群”的专家,及时与比赛技术支持组的韩冰老师(微信ID: AiXi_0514 QQ ID: 3479261167)联系,她会帮助大家加入导师群。 开源实验小项目招新 ,可作为本科或研究生的实习/毕设/科研课题,以及工程师实训课题,欢迎报名并参加!
Pinned
Loading
"全国大学生操作系统比赛2026"相关信息
286
32
Repositories
Showing 10 of 507 repositories oscomp/testsuits-for-oskernel's past year of commit activity oscomp/autotest-for-oskernel's past year of commit activity Python
9
4
0
1
Updated Jun 25, 2026 oscomp/os-competition-info's past year of commit activity
286 GPL-3.0
32
3
7
Updated Jan 4, 2026 oscomp/.github's past year of commit activity
0
1
0
0
Updated Jan 4, 2026 oscomp/first-prize-osf2025-AriadneTrace's past year of commit activity
0
0
0
0
Updated Dec 31, 2025 oscomp/first-prize-osf2025-GPU-RPlayer's past year of commit activity C
0 GPL-3.0
0
0
0
Updated Dec 31, 2025 oscomp/first-prize-osf2025-linux-rtmutex's past year of commit activity C
0
0
0
0
Updated Dec 31, 2025 oscomp/first-prize-osf2025-eFuse's past year of commit activity C
0 GPL-2.0
0
0
0
Updated Dec 31, 2025 oscomp/first-prize-osf2025-LLM-based-kdump-analysis's past year of commit activity Python
2 MIT
0
0
0
Updated Dec 31, 2025 oscomp/first-prize-osf2025-heap_detection's past year of commit activity C++
0 MIT
0
0
0
Updated Dec 31, 2025
People
This organization has no public members. You must be a member to see who’s a part of this organization.
You can’t perform that action at this time.