NVIDIA Jetson for Robotics and Edge AI
NVIDIA Jetson™ is a powerful platform for developing innovative edge AI and robotics solutions across industries. It delivers the compact, energy-efficient modules and developer kits with a robust AI software stack you need to deploy next-generation physical AI solutions.
`;
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);