An open API service indexing awesome lists of open source software.

https://github.com/gokatas/gokatas

Internalize Go programming techniques
https://github.com/gokatas/gokatas

devops security-engineer sysadmin

Last synced: 5 months ago
JSON representation

Internalize Go programming techniques

Awesome Lists containing this project

README

          

Go katas are small [programs](https://github.com/orgs/gokatas/repositories) meant to show and teach Go programming techniques. To understand and remember these techniques install the gokatas CLI tool

```
go install github.com/gokatas/gokatas@latest
```

and repeatedly do this simple practice cycle 🥋:

1. Choose a kata

```
gokatas -sortby lines -wide
git clone https://github.com/gokatas/.git
cd
```

2. Read the kata and try to understand it

```
code .
```

3. Delete (some of) the kata and try to write it back

```
git diff
```

4. Track your progress to stay motivated

```
gokatas -done -sortby last -report
```

It's important to practice regularly. Start by taking baby steps. After some time it will require much less will power to practice. And your programming moves will start looking simpler and smoother.