( by @ninokierulf )
created: 2015 April 02
modified:
After reading Collection Pipeline Patterns by Martin Fowler.
- map - to transform item (similar to select?)
- flatten - merge nested
- flat-map - map with flatten 1 level
( by @ninokierulf )
created: 2015 April 02
modified:
Open Terminal and execute the ff:
ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl /usr/local/bin/sublime
git config --global core.editor "sublime -n -w"
references: https://help.github.com/en/articles/associating-text-editors-with-git
zip -er "<protected>.zip" "<folder path>"git push origin <local_branch>:<remote_branch> git push --force-with-lease origin <local_branch>:<remote_branch>(topic-b)$ git tag "outdated"
(topic-b)$ git reset --hard master #if master is parent of Topic-B
git rerere forget {file_path}
git checkout --conflict merge {file_path}
| class AmongUsGame { | |
| init(players: [Player]) { | |
| self.players = players | |
| listenToPlayerEvents() | |
| } | |
| func start() { | |
| assignTasks() | |
| } |