u/Andrea-Bonn

AutoGPS rileva l'avvio di Android Auto o la connessione Bluetooth e attiva automaticamente il GPS. Quando ci si disconnette, si disattiva.

Lo uso quotidianamente da un mese e funziona in modo affidabile senza falsi allarmi.

Salva anche il tuo posto auto ogni volta che scendi dall'auto. C'è un widget sulla schermata iniziale che mostra dove hai parcheggiato e apre la navigazione direttamente sulla tua auto: molto utile nei centri commerciali, negli aeroporti e in zone sconosciute.

Un'altra funzionalità che ho aggiunto è il rilevamento degli incidenti. Se l'accelerometro rileva un forte impatto mentre sei in movimento e la velocità scende improvvisamente a zero, mostra un avviso a schermo intero e invia un SMS ai tuoi contatti di emergenza con la tua posizione. Se non rispondi entro 60 secondi, l'invio avviene comunque.

Un avvertimento: la configurazione richiede un comando ADB una tantum per concedere un'autorizzazione che Android normalmente non espone. L'installazione richiede circa 15-20 minuti seguendo il file README, dopodiché non dovrete più toccarla.

Android 8.0+, gratuito, senza pubblicità. APK su GitHub: https://github.com/AndreaBonn/AutoGPS-by-Bonn

---

Check all my projects on my GitHub profile

u/Andrea-Bonn — 17 days ago
▲ 0 r/git

It's a GitHub Action that hooks into your repo, reads the PR diff, and posts a code review comment using whatever LLM you configure.

It supports Groq, Gemini, Anthropic, and OpenAI. The main reason I added multi-provider support is rate limits — if one provider fails, it moves to the next in line. You can also pass multiple API keys for the same provider if you hit per-key limits. Groq and Gemini both have free tiers, so you can run it at no cost if that matters to you.

The review covers the usual stuff: bugs, security issues, performance, breaking changes, missing tests. It also tries to point out what's done well, which I find useful as a sanity check.

Setup is pretty minimal: add your API key as a repo secret, drop in a workflow YAML, and it runs on every PR. Zero dependencies beyond requests.

It won't replace a real reviewer, and I'd be cautious about blindly applying its suggestions — but it catches things before the humans even look, which speeds things up.

Repo: https://github.com/AndreaBonn/ai-pr-reviewer

It's also on the Actions Marketplace. Still early, so feedback is welcome.

u/Andrea-Bonn — 17 days ago