Skip to content

Instantly share code, notes, and snippets.

View nezort11's full-sized avatar
🙏

George Zorin nezort11

🙏
View GitHub Profile
@nezort11
nezort11 / readme.md
Created April 9, 2026 20:05
Будущее разработчиков...

https://chatgpt.com/s/t_69d80660c47c819197de29af827623cc

Окей, если смотреть широко — индустрия сейчас не про «один язык → другой язык», а про сдвиг ролей: от узких разработчиков к более системным 👇


🧠 Backend разработчики

Куда клонят:

@nezort11
nezort11 / readme.md
Created April 9, 2026 20:00
Куда уходят фронты?

Если коротко — фронтенд не «уходит» в один язык, как backend → Go, а расползается в несколько направлений в зависимости от того, куда ты хочешь расти.

Вот реальные векторы 👇


1. Fullstack (самый частый путь)

Фронтендеры углубляются в backend, но остаются в JS/TS:

Unfortunately, no, there is no direct or official way to "export" your trained brain (watch history, search patterns) and "import" it into another YouTube account. Your recommendation algorithm is hardcoded to your specific Google Account and cannot be transferred .

However, you can successfully transfer the "skeleton" of your account (subscriptions/playlists) to give your friend a huge head start. Here is the breakdown of what is actually possible and how to do it.

⚠️ CRITICAL DISCLAIMER: The Brand Account transfer method (often suggested for "moving channels") does NOT apply to you. That process is specifically for Content Creators to transfer uploaded videos and channel ownership to a business account. It does not transfer your personal viewing history or recommendations, and it requires you to give your friend ownership access (which violates your requirement of not sharing your account) .

✅ What You CAN Transfer (and How)

Here is a clear distinction of what moves and wha

@nezort11
nezort11 / youtube-cleanup.css
Created December 28, 2025 18:23
Gleanup YouTube
ytm-shorts-lockup-view-model {
display: none !important;
}
ytd-rich-section-renderer:has(a[href="/playables"]) {
display: none !important;
}
@nezort11
nezort11 / youtube-cleanup.css
Created December 28, 2025 18:23
Gleanup YouTube
ytm-shorts-lockup-view-model {
display: none !important;
}
ytd-rich-section-renderer:has(a[href="/playables"]) {
display: none !important;
}
@nezort11
nezort11 / youtube-cleanup.css
Created December 28, 2025 18:23
Gleanup YouTube
ytm-shorts-lockup-view-model {
display: none !important;
}
ytd-rich-section-renderer:has(a[href="/playables"]) {
display: none !important;
}
#!/usr/bin/env python3
import sys
from lxml import etree
SVG_NS = {"svg": "http://www.w3.org/2000/svg", "xlink": "http://www.w3.org/1999/xlink"}
PLACEHOLDER = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGNgAAAAAgAB9HFkCg=="
def shrink_svg(input_path, output_path):
tree = etree.parse(input_path)
root = tree.getroot()
@nezort11
nezort11 / gist:66950388dbdd743a2babb947fde5265a
Last active August 30, 2025 19:29
Elliminate Telegram app distructions

Main source of distructions:

  • UGC feed/history (list of chats/folders, stories)
  • notifications (new messages, posts)

Reduce distructions absolutely:

  1. Make first folder - only you need
  2. Go to https://web.telegram.org/k/
  3. Apply custom uBlock Origin filter rules:
web.telegram.org##.no-scrollbar.TabList
@nezort11
nezort11 / index.html
Last active September 28, 2024 09:30
plainproxies.com free web proxy redirect (croxyproxy) - gist thread
<!DOCTYPE html>
<html>
<head>
<title>Proxy is launching...</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="frontPassport" content="66cecc9cecdbd" />
<style>
* {
outline: 0;
@nezort11
nezort11 / lamoda-render-review-rating.js
Last active April 29, 2024 22:15
Render rating value and review count near every product in results on Lamoda
var REVIEW_RATING_REGEX = /"ratingValue": "([^"]+)",\s*"reviewCount": "([^"]+)"/;
var main = async () => {
const productCards = document.querySelectorAll(".x-product-card__card");
Array.from(productCards).forEach(async (productCard) => {
// console.log('productCard.id', productCard.id);
const productUrl = `https://www.lamoda.ru/p/${productCard.id}`;
// console.log('productUrl', productUrl);