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
| <!-- | |
| In the past, the DOCTYPE was needed to specify HTML versions. | |
| As of HTML5, providing `html` is sufficient. | |
| It is somewhere between a proper HTML tag, and an HTML comment. | |
| --> | |
| <!DOCTYPE html> | |
| <!-- Add the appropriate language for your site --> | |
| <html lang="en"> | |
| <head> |
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
| # Load aliases | |
| source ~/.bash_aliases | |
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| # For brew, at least | |
| export PATH=/usr/local/bin:$PATH | |
| # NVM Stuff | |
| export NVM_DIR="$HOME/.nvm" |
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
| ### DISCLAIMER: This code will delete all personal files regarding | |
| ###. your Parallels 17 installation and should fix any of the common | |
| ###. trial period bugs once you reinstall. | |
| ###. I created this for personal use but found there were so many | |
| ###. with a similar bug that I decided to share it. | |
| ### If you are actively using Parallels for longer than the trial | |
| ### period or using it for commercial purposes, you MUST register | |
| ### it or it is considered software piracy. | |
| sudo rm -rfd ~/library/preferences/com.parallels* |
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
| # Version key/value should be on his own line | |
| PACKAGE_VERSION=$(cat package.json \ | |
| | grep version \ | |
| | head -1 \ | |
| | awk -F: '{ print $2 }' \ | |
| | sed 's/[",]//g' \ | |
| | tr -d '[[:space:]]') | |
| echo $PACKAGE_VERSION |