Telegram Web
πŸ”₯ Trending Repository: zapret

πŸ“ Description: DPI bypass multi platform

πŸ”— Repository URL: https://github.com/bol-van/zapret

πŸ“– Readme: https://github.com/bol-van/zapret#readme

πŸ“Š Statistics:
🌟 Stars: 12.9K stars
πŸ‘€ Watchers: 169
🍴 Forks: 909 forks

πŸ’» Programming Languages: C - Shell - Makefile

🏷️ Related Topics:
#windows #macos #linux #freebsd #openbsd #openwrt #censorship_circumvention #russian #anti_dpi


==================================
🧠 By: https://www.tgoop.com/DataScienceM
πŸ”₯ Trending Repository: goose

πŸ“ Description: an open source, extensible AI agent that goes beyond code suggestions - install, execute, edit, and test with any LLM

πŸ”— Repository URL: https://github.com/block/goose

🌐 Website: https://block.github.io/goose/

πŸ“– Readme: https://github.com/block/goose#readme

πŸ“Š Statistics:
🌟 Stars: 20.6K stars
πŸ‘€ Watchers: 108
🍴 Forks: 1.9K forks

πŸ’» Programming Languages: Rust - TypeScript - Shell - HTML - Go - Python

🏷️ Related Topics:
#mcp #hacktoberfest


==================================
🧠 By: https://www.tgoop.com/DataScienceM
πŸ”₯ Trending Repository: social-analyzer

πŸ“ Description: API, CLI, and Web App for analyzing and finding a person's profile in 1000 social media \ websites

πŸ”— Repository URL: https://github.com/qeeqbox/social-analyzer

πŸ“– Readme: https://github.com/qeeqbox/social-analyzer#readme

πŸ“Š Statistics:
🌟 Stars: 13.9K stars
πŸ‘€ Watchers: 374
🍴 Forks: 1.2K forks

πŸ’» Programming Languages: JavaScript

🏷️ Related Topics:
#nodejs #javascript #python #cli #profile #social_media #osint #analysis #analyzer #pentesting #username #pentest #nodejs_cli #information_gathering #security_tools #reconnaissance #social_analyzer #person_profile #sosint


==================================
🧠 By: https://www.tgoop.com/DataScienceM
πŸ”₯ Trending Repository: Depixelization_poc

πŸ“ Description: Depix is a PoC for a technique to recover plaintext from pixelized screenshots.

πŸ”— Repository URL: https://github.com/spipm/Depixelization_poc

πŸ“– Readme: https://github.com/spipm/Depixelization_poc#readme

πŸ“Š Statistics:
🌟 Stars: 2K stars
πŸ‘€ Watchers: 11
🍴 Forks: 167 forks

πŸ’» Programming Languages: Python

🏷️ Related Topics: Not available

==================================
🧠 By: https://www.tgoop.com/DataScienceM
πŸ”₯ Trending Repository: gpui-component

πŸ“ Description: Rust GUI components for building fantastic cross-platform desktop application by using GPUI.

πŸ”— Repository URL: https://github.com/longbridge/gpui-component

🌐 Website: https://longbridge.github.io/gpui-component/

πŸ“– Readme: https://github.com/longbridge/gpui-component#readme

πŸ“Š Statistics:
🌟 Stars: 5.7K stars
πŸ‘€ Watchers: 27
🍴 Forks: 232 forks

πŸ’» Programming Languages: Rust - Tree-sitter Query - HTML - Shell - Python - C

🏷️ Related Topics:
#rust #gui #cross_platform #uikit #desktop_application #shadcn #gpui


==================================
🧠 By: https://www.tgoop.com/DataScienceM
πŸ”₯ Trending Repository: headscale

πŸ“ Description: An open source, self-hosted implementation of the Tailscale control server

πŸ”— Repository URL: https://github.com/juanfont/headscale

πŸ“– Readme: https://github.com/juanfont/headscale#readme

πŸ“Š Statistics:
🌟 Stars: 32K stars
πŸ‘€ Watchers: 172
🍴 Forks: 1.7K forks

πŸ’» Programming Languages: Go

🏷️ Related Topics:
#wireguard #tailscale #tailscale_control_server #tailscale_server


==================================
🧠 By: https://www.tgoop.com/DataScienceM
πŸ”₯ Trending Repository: ai-engineering-hub

πŸ“ Description: In-depth tutorials on LLMs, RAGs and real-world AI agent applications.

πŸ”— Repository URL: https://github.com/patchy631/ai-engineering-hub

🌐 Website: https://join.dailydoseofds.com

πŸ“– Readme: https://github.com/patchy631/ai-engineering-hub#readme

πŸ“Š Statistics:
🌟 Stars: 19.1K stars
πŸ‘€ Watchers: 241
🍴 Forks: 3.2K forks

πŸ’» Programming Languages: Jupyter Notebook - Python - TypeScript - HTML - Dockerfile - CSS

🏷️ Related Topics:
#machine_learning #ai #mcp #agents #rag #llms


==================================
🧠 By: https://www.tgoop.com/DataScienceM
πŸ”₯ Trending Repository: aws-devops-zero-to-hero

πŸ“ Description: AWS zero to hero repo for devops engineers to learn AWS in 30 Days. This repo includes projects, presentations, interview questions and real time examples.

πŸ”— Repository URL: https://github.com/iam-veeramalla/aws-devops-zero-to-hero

🌐 Website: https://www.youtube.com/@AbhishekVeeramalla

πŸ“– Readme: https://github.com/iam-veeramalla/aws-devops-zero-to-hero#readme

πŸ“Š Statistics:
🌟 Stars: 8.9K stars
πŸ‘€ Watchers: 561
🍴 Forks: 13.2K forks

πŸ’» Programming Languages: Python - HCL - Shell - Dockerfile

🏷️ Related Topics: Not available

==================================
🧠 By: https://www.tgoop.com/DataScienceM
In Python, building AI-powered Telegram bots unlocks massive potential for image generation, processing, and automationβ€”master this to create viral tools and ace full-stack interviews! πŸ€–

# Basic Bot Setup - The foundation (PTB v20+ Async)
from telegram.ext import Application, CommandHandler, MessageHandler, filters

async def start(update, context):
await update.message.reply_text(
"✨ AI Image Bot Active!\n"
"/generate - Create images from text\n"
"/enhance - Improve photo quality\n"
"/help - Full command list"
)

app = Application.builder().token("YOUR_BOT_TOKEN").build()
app.add_handler(CommandHandler("start", start))
app.run_polling()


# Image Generation - DALL-E Integration (OpenAI)
import openai
from telegram.ext import ContextTypes

openai.api_key = os.getenv("OPENAI_API_KEY")

async def generate(update: Update, context: ContextTypes.DEFAULT_TYPE):
if not context.args:
await update.message.reply_text("❌ Usage: /generate cute robot astronaut")
return

prompt = " ".join(context.args)
try:
response = openai.Image.create(
prompt=prompt,
n=1,
size="1024x1024"
)
await update.message.reply_photo(
photo=response['data'][0]['url'],
caption=f"🎨 Generated: *{prompt}*",
parse_mode="Markdown"
)
except Exception as e:
await update.message.reply_text(f"πŸ”₯ Error: {str(e)}")

app.add_handler(CommandHandler("generate", generate))


Learn more: https://hackmd.io/@husseinsheikho/building-AI-powered-Telegram-bots

#Python #TelegramBot #AI #ImageGeneration #StableDiffusion #OpenAI #MachineLearning #CodingInterview #FullStack #Chatbots #DeepLearning #ComputerVision #Programming #TechJobs #DeveloperTips #CareerGrowth #CloudComputing #Docker #APIs #Python3 #Productivity #TechTips


https://www.tgoop.com/DataScienceM 🦾
Please open Telegram to view this post
VIEW IN TELEGRAM
❀4
This media is not supported in your browser
VIEW IN TELEGRAM
πŸŽ₯ Ditto: Innovations in Video Editing with AI

Ditto is an advanced platform for generating high-quality data for instruction-based video editing. It combines the power of image and video generators, creating a unique Ditto-1M dataset with one million examples, enabling the training of models like Editto with outstanding results.

πŸš€Key highlights:
- Innovative data generation for video editing.
- Unique Ditto-1M dataset with one million examples.
- Efficient model architecture to reduce costs and improve quality.
- Use of an intelligent agent for filtering and quality control.

πŸ“Œ GitHub: https://github.com/EzioBy/Ditto
πŸ”₯ Trending Repository: opentelemetry-collector

πŸ“ Description: OpenTelemetry Collector

πŸ”— Repository URL: https://github.com/open-telemetry/opentelemetry-collector

🌐 Website: https://opentelemetry.io

πŸ“– Readme: https://github.com/open-telemetry/opentelemetry-collector#readme

πŸ“Š Statistics:
🌟 Stars: 5.9K stars
πŸ‘€ Watchers: 88
🍴 Forks: 1.8K forks

πŸ’» Programming Languages: Go

🏷️ Related Topics:
#monitoring #metrics #telemetry #observability #opentelemetry #open_telemetry


==================================
🧠 By: https://www.tgoop.com/DataScienceM
πŸ”₯ Trending Repository: Web-Dev-For-Beginners

πŸ“ Description: 24 Lessons, 12 Weeks, Get Started as a Web Developer

πŸ”— Repository URL: https://github.com/microsoft/Web-Dev-For-Beginners

πŸ“– Readme: https://github.com/microsoft/Web-Dev-For-Beginners#readme

πŸ“Š Statistics:
🌟 Stars: 92.5K stars
πŸ‘€ Watchers: 2.7k
🍴 Forks: 14.4K forks

πŸ’» Programming Languages: JavaScript - HTML - CSS - Vue - Python

🏷️ Related Topics:
#javascript #css #html #learning #education #curriculum #tutorials #microsoft_for_beginners


==================================
🧠 By: https://www.tgoop.com/DataScienceM
πŸ”₯ Trending Repository: VoiceInk

πŸ“ Description: Voice-to-text app for macOS to transcribe what you say to text almost instantly

πŸ”— Repository URL: https://github.com/Beingpax/VoiceInk

🌐 Website: https://tryvoiceink.com

πŸ“– Readme: https://github.com/Beingpax/VoiceInk#readme

πŸ“Š Statistics:
🌟 Stars: 2.2K stars
πŸ‘€ Watchers: 10
🍴 Forks: 276 forks

πŸ’» Programming Languages: Swift

🏷️ Related Topics:
#macos #swift #macos_app


==================================
🧠 By: https://www.tgoop.com/DataScienceM
πŸ”₯ Trending Repository: olmocr

πŸ“ Description: Toolkit for linearizing PDFs for LLM datasets/training

πŸ”— Repository URL: https://github.com/allenai/olmocr

πŸ“– Readme: https://github.com/allenai/olmocr#readme

πŸ“Š Statistics:
🌟 Stars: 14.9K stars
πŸ‘€ Watchers: 77
🍴 Forks: 1.1K forks

πŸ’» Programming Languages: Python - Shell - HTML

🏷️ Related Topics: Not available

==================================
🧠 By: https://www.tgoop.com/DataScienceM
This channels is for Programmers, Coders, Software Engineers.

0️⃣ Python
1️⃣ Data Science
2️⃣ Machine Learning
3️⃣ Data Visualization
4️⃣ Artificial Intelligence
5️⃣ Data Analysis
6️⃣ Statistics
7️⃣ Deep Learning
8️⃣ programming Languages

βœ… https://www.tgoop.com/addlist/8_rRW2scgfRhOTc0

βœ… https://www.tgoop.com/Codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
❀1
πŸ”₯ Trending Repository: cpp-httplib

πŸ“ Description: A C++ header-only HTTP/HTTPS server and client library

πŸ”— Repository URL: https://github.com/yhirose/cpp-httplib

πŸ“– Readme: https://github.com/yhirose/cpp-httplib#readme

πŸ“Š Statistics:
🌟 Stars: 15.2K stars
πŸ‘€ Watchers: 189
🍴 Forks: 2.5K forks

πŸ’» Programming Languages: C++ - CMake - C - Meson - Makefile - Python

🏷️ Related Topics:
#http #cpp #https #cpp11 #header_only


==================================
🧠 By: https://www.tgoop.com/DataScienceM
πŸ”₯ Trending Repository: MONAI

πŸ“ Description: AI Toolkit for Healthcare Imaging

πŸ”— Repository URL: https://github.com/Project-MONAI/MONAI

🌐 Website: https://monai.io/

πŸ“– Readme: https://github.com/Project-MONAI/MONAI#readme

πŸ“Š Statistics:
🌟 Stars: 7K stars
πŸ‘€ Watchers: 95
🍴 Forks: 1.3K forks

πŸ’» Programming Languages: Python - C++ - Cuda

🏷️ Related Topics:
#deep_learning #python3 #pytorch #medical_image_computing #medical_image_processing #healthcare_imaging #monai


==================================
🧠 By: https://www.tgoop.com/DataScienceM
πŸ”₯ Trending Repository: jan

πŸ“ Description: Jan is an open source alternative to ChatGPT that runs 100% offline on your computer.

πŸ”— Repository URL: https://github.com/janhq/jan

🌐 Website: https://jan.ai/

πŸ“– Readme: https://github.com/janhq/jan#readme

πŸ“Š Statistics:
🌟 Stars: 38.4K stars
πŸ‘€ Watchers: 203
🍴 Forks: 2.3K forks

πŸ’» Programming Languages: TypeScript - Rust - Python - JavaScript - Shell - PowerShell

🏷️ Related Topics:
#open_source #self_hosted #gpt #tauri #llm #chatgpt #llamacpp #localai


==================================
🧠 By: https://www.tgoop.com/DataScienceM
πŸ”₯ Trending Repository: mem0

πŸ“ Description: Universal memory layer for AI Agents; Announcing OpenMemory MCP - local and secure memory management.

πŸ”— Repository URL: https://github.com/mem0ai/mem0

🌐 Website: https://mem0.ai

πŸ“– Readme: https://github.com/mem0ai/mem0#readme

πŸ“Š Statistics:
🌟 Stars: 42.1K stars
πŸ‘€ Watchers: 203
🍴 Forks: 4.5K forks

πŸ’» Programming Languages: Python - TypeScript - MDX - Jupyter Notebook - JavaScript - Shell

🏷️ Related Topics:
#python #application #state_management #ai #memory #chatbots #memory_management #agents #hacktoberfest #ai_agents #long_term_memory #rag #llm #chatgpt #genai


==================================
🧠 By: https://www.tgoop.com/DataScienceM
πŸ”₯ Trending Repository: WeKnora

πŸ“ Description: LLM-powered framework for deep document understanding, semantic retrieval, and context-aware answers using RAG paradigm.

πŸ”— Repository URL: https://github.com/Tencent/WeKnora

🌐 Website: https://weknora.weixin.qq.com

πŸ“– Readme: https://github.com/Tencent/WeKnora#readme

πŸ“Š Statistics:
🌟 Stars: 6.8K stars
πŸ‘€ Watchers: 43
🍴 Forks: 778 forks

πŸ’» Programming Languages: Go - Vue - Python - TypeScript - Shell - Less

🏷️ Related Topics:
#agent #golang #multi_tenant #ai #chatbot #evaluation #embeddings #openai #question_answering #chatbots #knowledge_base #semantic_search #reranking #multimodel #rag #vector_search #llm #generative_ai #agentic #ollama


==================================
🧠 By: https://www.tgoop.com/DataScienceM
2025/10/31 03:41:49
Back to Top
HTML Embed Code: