Github Top Repositories
12.9K subscribers
561 photos
58 videos
10 files
1.43K links
Top GitHub repositories in one place πŸš€
Explore the best projects in programming, AI, data science, and more.
Download Telegram
πŸ”₯ Trending Repository: serena

πŸ“ Description: A powerful coding agent toolkit providing semantic retrieval and editing capabilities (MCP server & Agno integration)

πŸ”— Repository URL: https://github.com/oraios/serena

πŸ“– Readme: https://github.com/oraios/serena#readme

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

πŸ’» Programming Languages: Python - Elixir - Erlang - JavaScript - Nix - Lua

🏷️ Related Topics:
#agent #programming #ai #language_server #claude #llms #ai_coding #mcp_server #vibe_coding #claude_code


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: system-design-primer

πŸ“ Description: Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.

πŸ”— Repository URL: https://github.com/donnemartin/system-design-primer

πŸ“– Readme: https://github.com/donnemartin/system-design-primer#readme

πŸ“Š Statistics:
🌟 Stars: 319K stars
πŸ‘€ Watchers: 6.8k
🍴 Forks: 52.2K forks

πŸ’» Programming Languages: Python - Shell

🏷️ Related Topics:
#python #design #development #programming #web #system #design_patterns #interview #web_application #webapp #interview_practice #interview_questions #design_system


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: coding-interview-university

πŸ“ Description: A complete computer science study plan to become a software engineer.

πŸ”— Repository URL: https://github.com/jwasham/coding-interview-university

πŸ“– Readme: https://github.com/jwasham/coding-interview-university#readme

πŸ“Š Statistics:
🌟 Stars: 328K stars
πŸ‘€ Watchers: 8.5k
🍴 Forks: 80.5K forks

πŸ’» Programming Languages: Not available

🏷️ Related Topics:
#computer_science #algorithm #algorithms #interview #data_structures #software_engineering #coding_interviews #study_plan #interview_prep #interview_preparation #coding_interview #programming_interviews


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: build-your-own-x

πŸ“ Description: Master programming by recreating your favorite technologies from scratch.

πŸ”— Repository URL: https://github.com/codecrafters-io/build-your-own-x

🌐 Website: https://codecrafters.io

πŸ“– Readme: https://github.com/codecrafters-io/build-your-own-x#readme

πŸ“Š Statistics:
🌟 Stars: 430K stars
πŸ‘€ Watchers: 6.3k
🍴 Forks: 40.4K forks

πŸ’» Programming Languages: Markdown

🏷️ Related Topics:
#programming #tutorials #free #awesome_list #tutorial_code #tutorial_exercises


==================================
🧠 By: https://t.iss.one/DataScienceM
Forwarded from Machine Learning
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://t.iss.one/DataScienceM 🦾
Please open Telegram to view this post
VIEW IN TELEGRAM
❀4
πŸ”₯ Trending Repository: kotlin

πŸ“ Description: The Kotlin Programming Language.

πŸ”— Repository URL: https://github.com/JetBrains/kotlin

🌐 Website: https://kotlinlang.org

πŸ“– Readme: https://github.com/JetBrains/kotlin#readme

πŸ“Š Statistics:
🌟 Stars: 51.6K stars
πŸ‘€ Watchers: 1.5k
🍴 Forks: 6.1K forks

πŸ’» Programming Languages: Kotlin - Java - Swift - C - C++ - Objective-C++

🏷️ Related Topics:
#kotlin #programming_language #compiler #webassembly #wasm #kotlin_library #maven_plugin #gradle_plugin #intellij_plugin


==================================
🧠 By: https://t.iss.one/DataScienceM
β€’ Error Handling: Always wrap dispatch logic in try-except blocks to gracefully handle network issues, authentication failures, or incorrect receiver addresses.
β€’ Security: Never hardcode credentials directly in scripts. Use environment variables (os.environ.get()) or a secure configuration management system. Ensure starttls() is called for encrypted communication.
β€’ Rate Limits: SMTP servers impose limits on the number of messages one can send per hour or day. Implement pauses (time.sleep()) between dispatches to respect these limits and avoid being flagged as a spammer.
β€’ Opt-Outs: For promotional dispatches, ensure compliance with regulations (like GDPR, CAN-SPAM) by including clear unsubscribe options.

Concluding Thoughts

Automating electronic message dispatch empowers users to scale their communication efforts with remarkable efficiency. By leveraging Python's native capabilities, anyone can construct a powerful, flexible system for broadcasting anything from routine updates to extensive promotional campaigns. The journey into programmatic dispatch unveils a world of streamlined operations and enhanced communicative reach.

#python #automation #email #smtplib #emailautomation #programming #scripting #communication #developer #efficiency

━━━━━━━━━━━━━━━
By: @DataScienceN ✨
πŸ”₯ Trending Repository: go

πŸ“ Description: The Go programming language

πŸ”— Repository URL: https://github.com/golang/go

🌐 Website: https://go.dev

πŸ“– Readme: https://github.com/golang/go#readme

πŸ“Š Statistics:
🌟 Stars: 131K stars
πŸ‘€ Watchers: 3.3k
🍴 Forks: 18.5K forks

πŸ’» Programming Languages: Go - Assembly - HTML - C - Shell - Perl

🏷️ Related Topics:
#go #language #programming_language #golang


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: ruby

πŸ“ Description: The Ruby Programming Language

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

🌐 Website: https://www.ruby-lang.org/

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

πŸ“Š Statistics:
🌟 Stars: 23.3K stars
πŸ‘€ Watchers: 1.1k
🍴 Forks: 5.6K forks

πŸ’» Programming Languages: Ruby - C - Rust - C++ - Yacc - HTML

🏷️ Related Topics:
#ruby #c #language #programming_language #rust #jit #object_oriented #ruby_language


==================================
🧠 By: https://t.iss.one/DataScienceM
❀1
πŸ”₯ Trending Repository: freeCodeCamp

πŸ“ Description: freeCodeCamp.org's open-source codebase and curriculum. Learn math, programming, and computer science for free.

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

🌐 Website: https://contribute.freecodecamp.org

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

πŸ“Š Statistics:
🌟 Stars: 439k
πŸ‘€ Watchers: 8.5k
🍴 Forks: 43.9k

πŸ’» Programming Languages: TypeScript - JavaScript - CSS - Dockerfile - HCL - Shell

🏷️ Related Topics:
#react #nodejs #javascript #d3 #teachers #community #education #programming #curriculum #math #freecodecamp #learn_to_code #nonprofits #careers #certification


==================================
🧠 By: https://t.iss.one/DataScienceM
❀1