diff --git a/README-tmpl.md b/README-tmpl.md
index bed675e..ec989ff 100644
--- a/README-tmpl.md
+++ b/README-tmpl.md
@@ -10,25 +10,29 @@ Tiny data-over-sound library.
Click on the images below to hear what it sounds like:
-
-
-
-
+
+
+
+
## Details
This library allows you to communicate small amounts of data between air-gapped devices using sound. It implements a simple FSK-based transmission protocol that can be easily integrated in various projects. The bandwidth rate is between 8-16 bytes/sec depending on the protocol parameters. Error correction codes (ECC) are used to improve demodulation robustness.
This library is used only to generate and analyze the RAW waveforms that are played and captured from your audio devices (speakers, microphones, etc.). You are free to use any audio backend (e.g. PulseAudio, ALSA, etc.) as long as you provide callbacks for queuing and dequeuing audio samples.
-Possible applications:
+Here is a list of possible applications of **ggwave** with a few examples:
-- Serverless, one-to-many broadcast
-- Device pairing
-- Authorization
-- Internet of Things
-- Audio QR codes
+- **Serverless, one-to-many broadcast**
+ - [wave-share](https://github.com/ggerganov/wave-share) - file sharing through sound
+- **Internet of Things**
+ - [r2t2](https://github.com/ggerganov/ggwave/tree/master/examples/r2t2) - Transmit data with the PC speaker
+ - Record and send commands via [Talking buttons](https://github.com/ggerganov/ggwave/discussions/27)
+- **Audio QR codes**
+ - [[Twitter]](https://twitter.com/ggerganov/status/1509558482567057417) - Broadcast your clipboard to nearby devices
+- **Device pairing**
+- **Authorization**
## Try it out