Learn how to build high-performance visual AI agents, from cloud to far edge, powered by vision language models.
Register Now
Meet Jetson, the Platform for AI at the Edge
NVIDIA® Jetson⢠is used by professional developers to create breakthrough AI products across all industries, and by students and enthusiasts for hands-on AI learning and making amazing projects .
The Jetson platform includes small, power-efficient production modules and developer kits that offer the most comprehensive AI software stack for high-performance acceleration to power Generative AI at the edge, NVIDIA Metropolis and the Isaac platform.
Announcing Jetson Generative AI Lab
Read More
NVIDIA Isaac for Your Robotics Development
Learn More
Jetson Orin Nano Developer Kit Now Available
Learn More
Jetson Orin Family Modules Available Now
Buy Now
Explore Jetson Projects from our Community
Explore
`;
const hosts = {
'en': 'https://developer.nvidia.com/blog',
'cn': 'https://developer.nvidia.com/zh-cn/blog',
}
class FeedAggregatorElement extends HTMLElement {
constructor() {
super();
this._shadowRoot = this.attachShadow({ 'mode': 'open' });
this._shadowRoot.appendChild(template.content.cloneNode(true));
}
connectedCallback() {
const categories = this.getAttribute('categories');
const tags = this.getAttribute('tags');
const perPage = this.getAttribute('per-page');
const excludedTags = this.getAttribute('excluded-tags');
let locale = this.getAttribute('locale');
if (!locale) {
locale = 'en';
}
let targetElement = this._shadowRoot.querySelector(".feed-aggregator-component");
let feed = {
id: 'blog',
host: hosts[locale],
type: 'json',
minCount: 2,
};
if (categories && categories !== 'all') {
feed['category_ids'] = categories.split(',');
}
if (tags && tags !== 'all') {
feed['tag_ids'] = tags.split(',');
}
if(excludedTags && excludedTags !== 'null'){
feed['excluded_tag_ids'] = excludedTags.split(',');
}
document.addEventListener("DOMContentLoaded", function () {
new FeedAggregator({
target: targetElement,
props: {
count: perPage,
openInNewTab: true,
showExcerpts: true,
feeds: [feed]
}
});
})
}
}
window.customElements.define('feed-aggregator', FeedAggregatorElement);
Join now
').insertAfter(e);
}).focus();
});
}
function isValidForm(form, constraints) {
var errors = validate(form, constraints, {format: "detailed"});
if (errors) {
showErrors(errors);
return false;
}
return true;
}
$.each(window.sfv, function (index, element) {
$(element.target).on('click', function (event) {
$('.js-validation-errors').remove();
if (!isValidForm(element.form, element.constraints)) {
event.preventDefault();
}
});
});
}
connectedCallback() {
document.addEventListener('DOMContentLoaded', () => {
this.initComponent();
});
}
}
window.customElements.define('nv-sf-form-validator', NvidiaSalesforceValidator);