diff --git a/README.md b/README.md
index 582faff..0152645 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,18 @@
# real-java
+This repository includes all projects, which are only build with the basic java libraries.
+
+You dont need anything besides a Java JDK to run the different projects.
+
+# The projects
+| Name | Description | Status |
+|:----------:|:-------------:|:------:|
+| ATM-Machine | Doodeling arround with System.in
Maybe add a Database to Project| In Development |
+| BruitForce | Bruitforce a 6-Digit password | Done |
+| CodingChallanges | Contains every coding challange I solved
All challanges were taken from [Edabit](https://edabit.com/challenges) | Every Time im Bored |
+| DemoProjects | | |
+| Doodles | | |
+| ImageToText | | |
+| LanguageAnalysis | | |
+| Tools | | |
+| TicTacToe - MinMax | | |
+| out | | |
diff --git a/TOOLS/time/util/Timer.java b/TOOLS/time/util/Timer.java
index 4ece416..54bfdc1 100644
--- a/TOOLS/time/util/Timer.java
+++ b/TOOLS/time/util/Timer.java
@@ -5,7 +5,7 @@ package util;
*
* @param starttime This Parameter captures the time at the beginning of a program
* @param endtime This Parameter captures the time at the end of a program
- * @Author BiteCoding --> https://github.com/BiteCoding
+ * @Author cato447 --> https://github.com/cato447
*/
import java.util.Date;
@@ -38,4 +38,4 @@ public class Timer {
public String timeNeeded(){
return "Time needed " + deltaTime() + " ms";
}
-}
\ No newline at end of file
+}