') + ')', '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); }
})();
})();
Continental · GitHub
Continental
Imprint - https://www.continental.com/en/site-notice
Verified
We've verified that the organization continental controls the domain:
Pinned
Loading
Multi Repository Pull Request Orchestration
Ruby
36
6
The Continental Nodes for KNIME Extension provides data processing and reporting capabilities intended for business users of the KNIME Analytics Platform.
Java
11
3
Methods for alignment of global image statistics aimed at unsupervised Domain Adaptation and Data Augmentation
Python
43
8
A system to manage cloud accounts in large enterprises.
C#
9
3
Forked from eclipse-ecal/ecal
Please visit the new repository: https://github.com/eclipse-ecal/ecal
C++
11
3
Repositories
Showing 10 of 32 repositories uncertainty-detection-autolabeling
Public archive
Implementation of several research papers focused on uncertainty estimation and auto-labeling within the context of object detection for autonomous driving applications. It utilizes the Keras implementation of EfficientDet as an exemplary detector for demonstration purposes.
continental/uncertainty-detection-autolabeling's past year of commit activity Python
2 BSD-3-Clause
8
0
0
Updated Sep 29, 2025 continental-nodes-for-knime
Public
The Continental Nodes for KNIME Extension provides data processing and reporting capabilities intended for business users of the KNIME Analytics Platform.
continental/continental-nodes-for-knime's past year of commit activity Java
11 GPL-3.0
3
2
0
Updated Sep 15, 2025 seed4d
Public archive
[WACV 2025] Official code of "SEED4D: A Synthetic Ego-Exo Dynamic 4D Data Generator, Driving Dataset and Benchmark"
continental/seed4d's past year of commit activity Python
24 BSD-3-Clause
3
0
0
Updated Sep 3, 2025 6Img-to-3D
Public archive
[IV 2025, Oral] Official code of "6Img-to-3D: Few-Image Large-Scale Outdoor Novel View Synthesis"
continental/6Img-to-3D's past year of commit activity Python
81 BSD-3-Clause
14
2
0
Updated Sep 3, 2025 continental/pydremio's past year of commit activity EP-Diffuser
Public archive
A novel diffusion-based approach for traffic scene prediction and generation on the Argoverse 2 dataset.
continental/EP-Diffuser's past year of commit activity
11 BSD-3-Clause
4
1
0
Updated Jul 2, 2025 local-concept-embeddings
Public archive
The implementation of Local Concept Embeddings (LoCE) framework for concept-based explainability of computer vision models.
continental/local-concept-embeddings's past year of commit activity Python
2 BSD-3-Clause
2
0
0
Updated Jun 21, 2025 everything-polynomial
Public archive
A framework for OOD testing across Argoverse 2 Motion and Waymo Open Motion Datasets.
continental/everything-polynomial's past year of commit activity Python
6 BSD-3-Clause
1
2
0
Updated Oct 28, 2024 megamerge
Public archive
Multi Repository Pull Request Orchestration
continental/megamerge's past year of commit activity Ruby
36 Apache-2.0
6
0
0
Updated Aug 21, 2024 outlier-robust-student-t-filter
Public archive
Implemention of the Student-t Filter and comparison methods to state of the art robust Bayesian filtering methods.
continental/outlier-robust-student-t-filter's past year of commit activity Jupyter Notebook
8
2
0
0
Updated May 22, 2024
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.