') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); Telegramonic · GitHub
Skip to content
@Telegramonic

Telegramonic

Telegramonic is a high-performance, minimalist cloud storage solution designed for digital craftsmen, developers, and tech professionals.

Telegramonic

🚀 A high-performance, minimalist cloud storage solution designed for digital craftsmen, developers, and tech professionals.


🔭 Our Core Pillars

  • ⚡ Native Performance: Blazing-fast compiled Rust gateway bridging client requests directly to Telegram's MTProto.
  • 🎨 Utility Minimalism: Sleek, distraction-free interfaces featuring fluid animations and adaptive light/dark visual styling.
  • 💻 Developer Ergonomics: TypeSafe architecture, robust offline-first caching, and complete command hotkey integrations.

📂 Workspace Architecture

  • 🌐 web — Public landing portal, OS-detection downloads, and documentation.
  • 💻 desktop — Secure Electron shell featuring dashboard navigation and a login wizard.
  • 🦀 server — Fast Rust Axum server serving as the MTProto API bridge.
  • 📦 common — Shared design system tokens, localizations, and icons.
Gemini_Generated_Image_5wz0co5wz0co5wz0

⚙️ Frameworks & Tooling

LayerTechnologies Used
FrontendReact 18+, TypeScript 5.x, React Router v7, Zustand v5
Data FetchingTanStack Query v5, TanStack Form v1
Styling & MotionChakra UI v3, Panda CSS, Framer Motion
Shell & ServerElectron, Rust (Axum, default port 50065)
CI / CDGitHub Actions, FTP Deploy, Conventional Changelog

💎 Design System Spec

  • Colors: Telegram Blue (#0088CC) accents, Deep Charcoal (#212529) text, soft grey surfaces (#F8F9FA / #FFFFFF).
  • Geometry: Modern 8px borders for control buttons/inputs and 16px border-radius for modals.
  • Adaptability: Complete native Dark Mode integration supporting automatic system preference detection.

🤝 Developer Workflow

  1. Branch Prefixing: amitraikwar/TEL-{ticket_number}/{short-description}
  2. Conventional Commits: Commit messages must match type(scope): message with detailed descriptions.
  3. Local Testing: Ensure everything compiles and passes before pushing: yarn run-staged-tests
  4. Target: Open Pull Requests directly to the development branch.

Crafted with ❤️ by the Amit Raikwar.

Popular repositories Loading

  1. telegramonic telegramonicPublic

    ⚡ Minimalist, developer-focused cloud storage ☁️ powered by Telegram's MTProto, React ⚛️, and Rust 🦀. http://www.telegramonic.com

    TypeScript

  2. .github .githubPublic

Repositories

Showing 2 of 2 repositories

Top languages

Loading…

Most used topics

Loading…