Skip to content

Instantly share code, notes, and snippets.

View astoialtsev's full-sized avatar
🛠️
In code we trust, the rest we test.

Andrii Stoialtsev astoialtsev

🛠️
In code we trust, the rest we test.
  • Netherlands
View GitHub Profile

Keybase proof

I hereby claim:

  • I am astoialtsev on github.
  • I am astoialtsev (https://keybase.io/astoialtsev) on keybase.
  • I have a public key ASBEZDgNDLNg6BYpLfSWSUgBay1kcfFob6xkgaEU1PhJowo

To claim this, I am signing this object:

@astoialtsev
astoialtsev / .dockerignore
Created December 10, 2018 13:39
Example of .dockerignore file
# This line is a comment
# Exclude all ZIP archives from the root directory
*.zip
# Exclude all files and folders from `dist` directory, located in the root folder,
# whose names start with `temp` and have extension of two characters.
# E.g. `dist/temp01` or `dist/tempNL`
dist/temp??
@astoialtsev
astoialtsev / DataClasses.kt
Created November 12, 2018 21:33
Kotlin data class
data class Person(val name: String, val age: Int?)