This file contains 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
class Me { | |
constructor(userName, friend) { | |
this.userName = userName; | |
this.friend = friend; | |
} | |
getName() { | |
console.log(`This is ${this.userName}`); | |
} |
STATUS: IN PROGRESS
- Create MongoDB cluster and connect it with AWS
- Create Hydra PostgreSQL database AWS
This file contains 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
# Git version checking | |
autoload -Uz is-at-least | |
git_version="${${(As: :)$(git version 2>/dev/null)}[3]}" | |
# | |
# Functions | |
# | |
# The name of the current branch | |
# Back-compatibility wrapper for when this function was defined here in |