- make teams with 3 - 5 members
- GitHub account:
- I recommend using the personal email address for the main email address, and the FMI one as secondary
- Register for Student Developer Pack. You need the FMI email address for this.
- inspiration for app ideas:
- website: frontend, backend
- game: game engine, C++, JS - in browser, etc
- JS package manager npm
- Python Package Manager pypi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| IMPORTANT! | |
| The rule about pointers vs. values for receivers is that | |
| value methods can be invoked on pointers AND values, but | |
| pointer methods can only be invoked on pointers. | |
| `make([]int, 10, 100)` | |
| // It allocates an array of 100 ints and then creates a slice structure with length 10 and a capacity of 100 | |
| // pointing at the first 10 elements of the array. | |
| // (When making a slice, the capacity can be omitted.) |
OlderNewer