
CS-Fundamentals
A curated collection of Computer Science fundamentals (PDFs, notes, cheatsheets, interview question banks) for placement preparation, covering seven core subjects plus general resources.
它完整覆盖了从 Zebra 读写器配置、数据持久化到实时可视化的流程,并附带模拟标签和诊断工具,便于无硬件环境下开发和验证。
A professional, enterprise-focused web interface designed for Zebra FX7500/FX9600 fixed RFID readers. This is a functional model with full database persistence, allowing for long-term data storage and integration with external business systems.
Designed for inventory tracking, warehouse management, asset monitoring, and ERP systems integration.
flowchart LR
Reader["Zebra Reader"] -- "HTTP POST" --> API["Django API"]
API -- "ORM" --> DB["SQL / PostgreSQL"]
DB --> Dashboard["Tailwind Dashboard"]
Dashboard -- "Polling" --> API
This application is built on the Django framework, meaning it uses a powerful ORM (Object-Relational Mapper) to handle data. It is NOT just a visual sample; every tag read is stored in a structured database.
By default, the project uses SQLite (db.sqlite3), which requires zero configuration and is perfect for small deployments or edge devices.
Because it uses Django, you can easily switch to a professional database engine. Simply modify the DATABASES section in scanner_zebra_rfid/settings.py:
# Example for PostgreSQL
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'your_db_name',
'USER': 'your_user',
'PASSWORD': 'your_password',
'HOST': '127.0.0.1',
'PORT': '5432',
}
}
Note: Ensure you install the appropriate driver (e.g., psycopg2 for Postgres or mysqlclient for MySQL).
Enterprise-focused Python interface for Zebra FX RFID readers with real-time tag ingestion, persistent storage, and inventory monitoring
根据分类、Topic 和编程语言匹配的相似项目。

A curated collection of Computer Science fundamentals (PDFs, notes, cheatsheets, interview question banks) for placement preparation, covering seven core subjects plus general resources.
Recensa is a self-hosted web viewer that indexes Claude Code session transcripts into a local SQLite database, enabling full-text search, replay, and audit of all past agent conversations without uploading data anywhere.
Talivia is an open-source, self-hosted analytics platform that combines web analytics, session replay, and customer revenue tracking from multiple payment providers.