diff --git a/TIPS.md b/TIPS.md
index c04c242..489fd7b 100644
--- a/TIPS.md
+++ b/TIPS.md
@@ -1,6 +1,54 @@
+
# Avoid
+ [ ] Putting the parameter at the end of the prompt
-| Good | Bad |
-|-------------------------------------------------------------|--------------------------------------------------|
-| `Predict the capital of the country:\nCountry: {country}\n` | `{country}. Predict the capital of the country:` |
+
+
+ | Good |
+ Bad |
+
+
+
+
+Predict the capital of the country:
+Country: {country}
+
+ |
+
+
+{country}. Predict the capital of the country:
+
+ |
+
+
+
+# Try to
++ [ ] Make your prompt _multi-shot_ (i.e. provide examples of what you expect the answer to be given some input)
+
+
+
+
+ | Good |
+ Bad |
+
+
+
+
+Country: Czechia
+Capital: Prague
+---
+Country: France
+Capital: Paris
+---
+Predict the capital of the country:
+Country: {country}
+
+ |
+
+
+Predict the capital of the country:
+Country: {country}
+
+ |
+
+