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
| #!/usr/bin/env bash | |
| # Use like: `curl -L https://tr.ee/iqzI19 | bash` | |
| set -e | |
| URL="https://iterm2.com/downloads/stable/latest" | |
| ZIP="/tmp/iterm2-latest.zip" | |
| APP="/Applications/iTerm.app" | |
| if command -v curl >/dev/null 2>&1; then | |
| curl -L "$URL" -o "$ZIP" |
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
| # fib.py | |
| # Written by Lev Grachov | |
| # Import Tkinter | |
| # If you get module not installed, then run this command: | |
| # For Linux: `sudo apt-get install python3-tk` | |
| # For Windows: `pip install tk` | |
| # For macOS: `brew install python-tk` | |
| from tkinter.simpledialog import askinteger | |
| from tkinter import * |