- Log in to the AWS Management Console.
- Navigate to the CloudTrail Console.
- In the left-hand menu, click Event history.
If you are creating a new environment, use the following commands:
conda create --name new-env python=3.11
conda activate new-env
If you are using an existing environment, use the following command:
Models | Context Window | Price per 1,000 input tokens | Price per 1,000 output tokens |
---|---|---|---|
Claude Instant | 100k | $0.00080 | $0.00240 |
Claude v2 | 100k | $0.00800 | $0.02400 |
Claude v2.1 | 200k | $0.00800 | $0.02400 |
After install zsh | |
- brew update | |
- brew install nvm | |
- mkdir ~/.nvm | |
after in your ~/.zshrc or in .bash_profile if your use bash shell: | |
export NVM_DIR=~/.nvm | |
source $(brew --prefix nvm)/nvm.sh |
How do I get the full path for a file in finder?
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
then
killall Finder
This will display the full path in the titlebar.
![path][1]
Create a new repo (let's call it private-repo) via the Github UI. Then:
git clone --bare https://github.com/exampleuser/public-repo.git
cd public-repo.git
git push --mirror https://github.com/yourname/private-repo.git
cd ..
rm -rf public-repo.git