Skip to content

Instantly share code, notes, and snippets.

View marius92mc's full-sized avatar

Marius-Constantin Melemciuc marius92mc

  • Bucharest, Romania
View GitHub Profile
@marius92mc
marius92mc / mds_students.md
Last active May 8, 2019 12:53
Details for students

General notes

  • 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
/*
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.)