====== Programming ======
* https://roadmap.sh/roadmaps - road maps
* algoexpert - site with algorithms
* https://visualgo.net/en - algorithms visualize (https://habr.com/ru/company/gnivc/blog/689770/ описание)
* https://codersrank.io/ - popularity instruments
* https://insights.stackoverflow.com/
* [[https://www.techempower.com/benchmarks/#section=data-r19&hw=ph&test=fortune&l=ziiwhr-1r|web frammework ranks]]
* colorer site color and format source for copy - http://hilite.me/
* Kubernetes https://m.habr.com/ru/company/mailru/blog/465823/#1
* Angularcomponent https://blog.bitsrc.io/11-angular-component-libraries-you-should-know-in-2018-e9f9c9d544ff
* https://www.codota.com/setup/vscode - codota AI Code Completions
* https://www.tabnine.com/?utm_source=search-web - vscode ai code completion
* search code grep - ''grep -inIEr -C1 –include="*.java" "codere*" ./src/''
===== Programming backlog =====
Какие подходы и методологии Вы применяли для формирования бэклога и проектирования функциональности продукта в этом году?
* СJM, UJM
* Service Blueprint
* Jobs to be done и Job Story
* User Story и User Story Mapping
* Use Case
* UML
* Текстовое описание по собственным шаблонам
* Другое (укажите, что именно)
Какие способы визуализации и моделирования Вы применяли в этом году?
* IDEF0
* BPMN
* EPC
* Блок-схемы
* UML
* User Flow, UJM
* Прототипы и мокапы интерфейсов
* Другое (укажите, что именно)
====== Programming.stacks стэк ======
* [[https://stackshare.io/stackups/trending|stack compare and tools choosing]]
====== Programming.concepts ======
* [[https://www.youtube.com/watch?v=-uleG_Vecis|100+ Computer Science Concepts Explained]]
====== O notation ======
* O notation \\
{{::onotation.webp?400}} \\
===== Popularity популярность =====
* https://madnight.github.io/githut/#/pull_requests/2022/1 https://githut.info/
* https://survey.stackoverflow.co/2022/
===== HTTP =====
===== HTML =====
* [[https://caniuse.com|can i use]]
* [[https://www.dunebook.com/21-chrome-extensions-for-web-development/|chrome development extensions]]
* https://github.com/apollographql
* https://github.com/APIs-guru/graphql-voyager - graphql voyager
* https://api.prisma-cms.com/ api prisma
* https://squoosh.app/editor - picture image optimize [[https://www.smashingmagazine.com/2021/09/modern-image-formats-avif-webp/|smashingmagazine modern image formats 2021]]
* нагрузочное тестирование
* ++ Web Scrapping web download scrap|
(async function downloadCompleteHTML() {
// Helper function to fetch content of external files (CSS, JS, images)
async function fetchResource(url, isBinary = false) {
try {
const response = await fetch(url);
if (isBinary) {
const blob = await response.blob();
return new Promise((resolve, reject) => {
const reader = new FileReader();
reader.onloadend = () => resolve(reader.result);
reader.onerror = reject;
reader.readAsDataURL(blob);
});
} else {
return await response.text();
}
} catch (error) {
console.warn('Failed to fetch resource:', url);
return '';
}
}
// Helper function to inline external CSS and convert relative URLs to absolute
async function inlineCSS(linkElement) {
const href = linkElement.href;
const cssContent = await fetchResource(href);
// Resolve relative URLs within CSS (for images, fonts, etc.)
const resolvedCSS = cssContent.replace(/url\((?!['"]?(?:data|https?|ftp):)['"]?([^'")]+)['"]?\)/g, function(match, relativeUrl) {
const absoluteUrl = new URL(relativeUrl, href).href;
return `url(${absoluteUrl})`;
});
// Create a