Github Top Repositories
12.9K subscribers
375 photos
57 videos
9 files
1.32K links
Top GitHub repositories in one place πŸš€
Explore the best projects in programming, AI, data science, and more.
Download Telegram
πŸ”₯ Trending Repository: UI-TARS-desktop

πŸ“ Description: The Open-Source Multimodal AI Agent Stack: Connecting Cutting-Edge AI Models and Agent Infra

πŸ”— Repository URL: https://github.com/bytedance/UI-TARS-desktop

🌐 Website: https://agent-tars.com

πŸ“– Readme: https://github.com/bytedance/UI-TARS-desktop#readme

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

πŸ’» Programming Languages: TypeScript - MDX - JavaScript - CSS - Less - HTML

🏷️ Related Topics:
#agent #mcp #vision #vlm #tars #multimodal #computer_use #mcp_server #gui_agent #browser_use #gui_operator #ui_tars #agent_tars


==================================
🧠 By: https://t.me/DataScienceM
πŸ”₯ Trending Repository: Agent-S

πŸ“ Description: Agent S: an open agentic framework that uses computers like a human

πŸ”— Repository URL: https://github.com/simular-ai/Agent-S

🌐 Website: https://www.simular.ai

πŸ“– Readme: https://github.com/simular-ai/Agent-S#readme

πŸ“Š Statistics:
🌟 Stars: 6.4K stars
πŸ‘€ Watchers: 62
🍴 Forks: 706 forks

πŸ’» Programming Languages: Python - Shell

🏷️ Related Topics:
#memory #planning #cua #ai_agents #grounding #computer_automation #mllm #retrieval_augmented_generation #in_context_reinforcement_learning #agent_computer_interface #gui_agents #computer_use #computer_use_agent


==================================
🧠 By: https://t.me/DataScienceM
πŸ”₯ Trending Repository: reflex

πŸ“ Description: πŸ•ΈοΈ Web apps in pure Python 🐍

πŸ”— Repository URL: https://github.com/reflex-dev/reflex

🌐 Website: https://reflex.dev

πŸ“– Readme: https://github.com/reflex-dev/reflex#readme

πŸ“Š Statistics:
🌟 Stars: 26.1K stars
πŸ‘€ Watchers: 177
🍴 Forks: 1.6K forks

πŸ’» Programming Languages: Python - JavaScript - PowerShell - Shell - CSS - Dockerfile

🏷️ Related Topics:
#python #open_source #gui #framework #web


==================================
🧠 By: https://t.me/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://t.me/DataScienceM
import sys
from PyQt5.QtWidgets import *
from PyQt5.QtCore import QDate
import database as db

class PharmacyApp(QMainWindow):
def __init__(self):
super().__init__()
self.setWindowTitle("Pharmacy Management System")
self.setGeometry(100, 100, 1200, 700)
db.setup_database()

self.tabs = QTabWidget()
self.setCentralWidget(self.tabs)

self.pos_tab = QWidget()
self.inventory_tab = QWidget()

self.tabs.addTab(self.pos_tab, "Point of Sale")
self.tabs.addTab(self.inventory_tab, "Inventory Management")

self.setup_inventory_ui()
# self.setup_pos_ui() will be done in the next step

self.load_inventory_data()

def setup_inventory_ui(self):
layout = QVBoxLayout()
self.inventory_table = QTableWidget()
self.inventory_table.setColumnCount(6)
self.inventory_table.setHorizontalHeaderLabels(['ID', 'Name', 'Barcode', 'Quantity', 'Price', 'Expiry Date'])
layout.addWidget(self.inventory_table)

form = QFormLayout()
self.drug_name = QLineEdit()
self.drug_barcode = QLineEdit()
self.drug_qty = QSpinBox()
self.drug_qty.setRange(0, 9999)
self.drug_price = QLineEdit()
self.drug_expiry = QDateEdit(QDate.currentDate().addYears(1))
self.drug_expiry.setDisplayFormat("yyyy-MM-dd")

form.addRow("Name:", self.drug_name)
form.addRow("Barcode:", self.drug_barcode)
form.addRow("Quantity:", self.drug_qty)
form.addRow("Price:", self.drug_price)
form.addRow("Expiry Date:", self.drug_expiry)
add_btn = QPushButton("Add Drug to Inventory")
add_btn.clicked.connect(self.add_drug_to_db)

layout.addLayout(form)
layout.addWidget(add_btn)
self.inventory_tab.setLayout(layout)

def load_inventory_data(self):
drugs = db.get_all_drugs()
self.inventory_table.setRowCount(len(drugs))
for row, drug in enumerate(drugs):
for col, data in enumerate(drug):
self.inventory_table.setItem(row, col, QTableWidgetItem(str(data)))

def add_drug_to_db(self):
name = self.drug_name.text()
barcode = self.drug_barcode.text()
qty = self.drug_qty.value()
price = float(self.drug_price.text())
expiry = self.drug_expiry.date().toString("yyyy-MM-dd")

if not all([name, barcode, qty > 0, price > 0]):
QMessageBox.warning(self, "Input Error", "Please fill all fields correctly.")
return

if db.add_drug(name, barcode, qty, price, expiry):
self.load_inventory_data()
else:
QMessageBox.warning(self, "Database Error", "A drug with this barcode already exists.")

# Main execution block at the end of the file
if __name__ == '__main__':
app = QApplication(sys.argv)
window = PharmacyApp()
window.show()
sys.exit(app.exec_())

# Hashtags: #PyQt5 #GUI #CRUD #Inventory


---

#Step 3: Point of Sale (POS) UI and Barcode Handling

Now, let's build the user interface for the sales tab. This will include an input for the barcode, a table for the current sale items (the "cart"), and buttons to finalize or clear the sale. A physical barcode scanner typically emulates a keyboard, entering the numbers and pressing "Enter". We will simulate this with the returnPressed signal on a QLineEdit.

Add these methods to the PharmacyApp class:
πŸ”₯ Trending Repository: dbeaver

πŸ“ Description: Free universal database tool and SQL client

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

🌐 Website: https://dbeaver.io

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

πŸ“Š Statistics:
🌟 Stars: 46.1K stars
πŸ‘€ Watchers: 527
🍴 Forks: 3.9K forks

πŸ’» Programming Languages: Java - C++ - ANTLR - CSS - HTML - XSLT

🏷️ Related Topics:
#mysql #java #gui #sql #database #ai #nosql #jdbc #sqlite #postgresql #oracle #openai #dbeaver #erd #redshift #db2 #sqlserver #copilot


==================================
🧠 By: https://t.me/DataScienceM
πŸ”₯ Trending Repository: escrcpy

πŸ“ Description: πŸ“± Display and control your Android device graphically with scrcpy.

πŸ”— Repository URL: https://github.com/viarotel-org/escrcpy

🌐 Website: https://viarotel.eu.org/

πŸ“– Readme: https://github.com/viarotel-org/escrcpy#readme

πŸ“Š Statistics:
🌟 Stars: 7.7K stars
πŸ‘€ Watchers: 48
🍴 Forks: 563 forks

πŸ’» Programming Languages: JavaScript - Vue - TypeScript - Roff - CSS - VBScript

🏷️ Related Topics:
#android #windows #macos #linux #screenshots #gui #recording #screensharing #mirroring #hacktoberfest #scrcpy #scrcpy_engine #gnirehtet #genymobile #scrcpy_gui #hacktoberfest2025 #hacktoberfest2026


==================================
🧠 By: https://t.me/DataScienceM
πŸ”₯ Trending Repository: claudecodeui

πŸ“ Description: Use Claude Code, Cursor CLI or Codex on mobile and web with CloudCLI (aka Claude Code UI). CloudCLI is a free open source webui/GUI that helps you manage your Claude Code session and projects remotely

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

🌐 Website: https://cloudcli.ai

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

πŸ“Š Statistics:
🌟 Stars: 6.5K stars
πŸ‘€ Watchers: 21
🍴 Forks: 846 forks

πŸ’» Programming Languages: JavaScript - TypeScript - HTML - CSS

🏷️ Related Topics:
#react #gui #ui #mobile_first #claude #anthropic #anthropic_claude #claude_api #anthropic_ai #claude_code #claudecode #claude_code_ui


==================================
🧠 By: https://t.me/DataScienceM
πŸ”₯ Trending Repository: MobileAgent

πŸ“ Description: Mobile-Agent: The Powerful GUI Agent Family

πŸ”— Repository URL: https://github.com/X-PLUG/MobileAgent

πŸ“– Readme: https://github.com/X-PLUG/MobileAgent#readme

πŸ“Š Statistics:
🌟 Stars: 7.4K stars
πŸ‘€ Watchers: 86
🍴 Forks: 762 forks

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

🏷️ Related Topics:
#android #agent #app #gui #automation #mobile #copilot #multimodal #mobile_agents #mllm #multimodal_large_language_models #multimodal_agent


==================================
🧠 By: https://t.me/DataScienceM