Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
programming [2023/12/03 23:39] – [Python. Data visualization] admin | programming [2025/03/18 06:43] (current) – [Python] admin | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Programming ====== | ====== Programming ====== | ||
+ | * https:// | ||
* algoexpert - site with algorithms | * algoexpert - site with algorithms | ||
* https:// | * https:// | ||
Line 54: | Line 55: | ||
+ | ===== MarkDown ===== | ||
+ | markdown online editor < | ||
===== HTTP ===== | ===== HTTP ===== | ||
===== HTML ===== | ===== HTML ===== | ||
Line 67: | Line 70: | ||
* нагрузочное тестирование | * нагрузочное тестирование | ||
+ | * ++ Web Scrapping web download scrap| | ||
+ | <code javascript> | ||
+ | (async function downloadCompleteHTML() { | ||
+ | // Helper function to fetch content of external files (CSS, JS, images) | ||
+ | async function fetchResource(url, | ||
+ | try { | ||
+ | const response = await fetch(url); | ||
+ | if (isBinary) { | ||
+ | const blob = await response.blob(); | ||
+ | return new Promise((resolve, | ||
+ | const reader = new FileReader(); | ||
+ | reader.onloadend = () => resolve(reader.result); | ||
+ | reader.onerror = reject; | ||
+ | reader.readAsDataURL(blob); | ||
+ | }); | ||
+ | } else { | ||
+ | return await response.text(); | ||
+ | } | ||
+ | } catch (error) { | ||
+ | console.warn(' | ||
+ | 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(/ | ||
+ | const absoluteUrl = new URL(relativeUrl, | ||
+ | return `url(${absoluteUrl})`; | ||
+ | }); | ||
+ | |||
+ | // Create a < | ||
+ | const styleElement = document.createElement(' | ||
+ | styleElement.textContent = resolvedCSS; | ||
+ | return styleElement; | ||
+ | } | ||
+ | |||
+ | // Helper function to convert images to base64-encoded data URIs | ||
+ | async function inlineImages(element) { | ||
+ | const images = element.querySelectorAll(' | ||
+ | for (let img of images) { | ||
+ | if (img.src.startsWith(' | ||
+ | const dataUri = await fetchResource(img.src, | ||
+ | img.src = dataUri; // Replace the src with base64-encoded data URI | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | |||
+ | // Get the entire DOM HTML structure | ||
+ | const html = document.documentElement.outerHTML; | ||
+ | |||
+ | // Create a new document to parse and modify the HTML content | ||
+ | const parser = new DOMParser(); | ||
+ | const doc = parser.parseFromString(html, | ||
+ | |||
+ | // Inline all external CSS files | ||
+ | const linkElements = [...doc.querySelectorAll(' | ||
+ | for (let link of linkElements) { | ||
+ | const inlineStyleElement = await inlineCSS(link); | ||
+ | link.replaceWith(inlineStyleElement); | ||
+ | } | ||
+ | |||
+ | // Inline all images as base64 data URIs | ||
+ | await inlineImages(doc); | ||
+ | |||
+ | // Get the final HTML including the modified DOM | ||
+ | const finalHTML = doc.documentElement.outerHTML; | ||
+ | |||
+ | // Create a downloadable HTML file | ||
+ | const downloadHTML = (content, fileName) => { | ||
+ | const a = document.createElement(" | ||
+ | const file = new Blob([content], | ||
+ | a.href = URL.createObjectURL(file); | ||
+ | a.download = fileName; | ||
+ | document.body.appendChild(a); | ||
+ | a.click(); | ||
+ | document.body.removeChild(a); | ||
+ | }; | ||
+ | |||
+ | // Download the final HTML file | ||
+ | downloadHTML(finalHTML, | ||
+ | |||
+ | // Hide loading overlay | ||
+ | loadingOverlay.style.display = ' | ||
+ | })(); | ||
+ | </ | ||
+ | ++ | ||
+ | |||
+ | ==== HTML Beauty ==== | ||
+ | * https:// | ||
+ | |||
===== SVG ===== | ===== SVG ===== | ||
* Svg editor https:// | * Svg editor https:// | ||
Line 133: | Line 231: | ||
===== Python ===== | ===== Python ===== | ||
+ | * https:// | ||
* good book https:// | * good book https:// | ||
* install pip from wheels '' | * install pip from wheels '' |