π₯ 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:
==================================
π§ By: https://t.me/DataScienceM
π 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:
==================================
π§ By: https://t.me/DataScienceM
π 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:
==================================
π§ By: https://t.me/DataScienceM
π 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:
==================================
π§ By: https://t.me/DataScienceM
π 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 HandlingNow, 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:
==================================
π§ By: https://t.me/DataScienceM
π 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:
==================================
π§ By: https://t.me/DataScienceM
π 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:
==================================
π§ By: https://t.me/DataScienceM
π 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:
==================================
π§ By: https://t.me/DataScienceM
π 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