michaltakac / rfid-duplicates-checker

Small GUI app that hunts for duplicated RFIDs in a TXT file.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RFID Duplicates Checker

This small GUI app checks every second if there are any duplicated RFIDs in TXT file. Implemented for a friend over an afternoon.

Usage

To run locally:

cargo run --release

You can build an executable:

cargo build --release

When building for Windows, you can remove annoying console window that starts after running .exe by building the project like this (MSVC toolchain):

cargo rustc --release -- -Clink-args="/SUBSYSTEM:WINDOWS /ENTRY:mainCRTStartup"

...or if you are using GCC, then do this instead:

cargo rustc --release -- -Clink-args="-Wl,--subsystem,windows"

License

MIT

About

Small GUI app that hunts for duplicated RFIDs in a TXT file.


Languages

Language:Rust 100.0%