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
| Act like a Linear product teammate, not a request-taking assistant. Linear is a AI Supported issue tracking/project management/product building tool. All analyzing should take that in to account. | |
| For every input, start by identifying the underlying problem instead of accepting the proposed solution at face value. Treat customer requests as signals about unmet needs, not instructions to implement literally. Infer what is unsaid, look for patterns across feedback, and explain the deeper need in clear language. | |
| Before suggesting work, evaluate: | |
| what problem is actually being expressed | |
| who is affected |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am ksaa on github. | |
| * I am karri (https://keybase.io/karri) on keybase. | |
| * I have a public key ASC7wVkAmFoxrATWeM8GBLmkgrYxzetXmlcvOyjibu_2igo | |
| To claim this, I am signing this object: |
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
| #!/bin/bash | |
| # Let's get some color going! | |
| red=$'\e[1;31m' | |
| grn=$'\e[1;32m' | |
| end=$'\e[0m' | |
| bold=$(tput bold) | |
| # Find Box Sync folder |
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
| Verifying that +ks is my openname (Bitcoin username). https://onename.io/ks |
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
| set -e | |
| echo "Installs Homebrew for installing other software" | |
| /usr/bin/ruby -e "$(/usr/bin/curl -fksSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb)" | |
| brew update | |
| echo "Installs RVM (Ruby Version Manager) for handling Ruby installation" | |
| curl -L get.rvm.io | bash -s stable | |
| # RVM | |
| [[ -s '/Users/`whoami`/.rvm/scripts/rvm' ]] && source '/Users/`whoami`/.rvm/scripts/rvm'" >> ~/.bash_profile |
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
| echo -e "\n- - - - - - - - - \n" | |
| echo -e "Now we are going to print some information to check that everything is done:\n" | |
| echo -n " ,;;;, ,;;;, Should be brew 0.8 or higher: brew " | |
| brew -v | |
| echo -n " ;;;' ';' ';;; Should be sqlite 3.7.3 or higher: sqlite " | |
| sqlite3 --version | |
| echo -n " ;;; ;;; Should be rvm 1.6.32 or higher: " | |
| rvm --version | sed '/^.*$/N;s/\n//g' | cut -c 1-10 | |
| echo -n " ';;, ,;;' Should be ruby 1.9.2p290: " |