Skip to content

Instantly share code, notes, and snippets.

View yanislav-igonin's full-sized avatar
😴
zzz

Yanislav Igonin yanislav-igonin

😴
zzz
View GitHub Profile
https://www.freecodecamp.org/news/the-best-data-science-courses-on-the-internet-ranked-by-your-reviews-6dc5b910ea40/ - The best Data Science courses on the internet, ranked by your reviews
https://stepik.org/course/76/promo#toc - Основы статистики
https://stepik.org/course/4852/promo - Введение в Data Science и машинное обучение
https://www.coursera.org/specializations/deep-learning - ДИП лёрнинг
const encoder = new TextEncoder();
const decoder = new TextDecoder('utf-8', { ignoreBOM: true });
const U8 = {
/** @param {string} data */
encode: (data) => {
return encoder.encode(data);
},
/** @param {Uint8Array} data */