| Russian | English Translation | English Pronunciation Guide |
|---|---|---|
| GENERAL LESSON PHRASES | ||
| Давайте начнём урок | Let's begin the lesson | Lets bi-GIN the LES-son |
| Сыграйте гамму | Play the scale | Play the SCALE |
| Ещё раз, пожалуйста | One more time, please | Wun more TIME, pleez |
| Следите за ритмом | Watch the rhythm | Watch the RIH-thum |
| Играйте медленнее | Play slower | Play SLO-wer |
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
| # DJI Backup Configuration File | |
| # Copy this to ~/.dji_backup_config to customize settings | |
| # Last Updated: October 7, 2025 | |
| # Source settings | |
| SRC_VOLUME="/Volumes/DJI Osmo P3" | |
| SRC_FOLDER="${SRC_VOLUME}/DCIM/DJI_001" | |
| # Destination settings | |
| DEST_BASE="/Volumes/Media/Videos/DJI Osmo Pocket 3" |
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 zsh | |
| # Enhanced graphical disk usage display | |
| # Original thanks to bolk http://bolknote.ru/2011/09/14/~3407#07 | |
| # Compatible with both bash and zsh | |
| set -eo pipefail | |
| # Configuration | |
| readonly DEFAULT_LIST_LENGTH=10 |
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
| # A few plugins for zsh |
I want it FAST!!!1 (still need Prerequisites)
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 "deb http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list | |
| wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
| sudo apt-get update | |
| sudo apt-get install google-chrome-stable | |
| or |
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
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # We use preexec and precmd hook functions for Bash | |
| # If you have anything that's using the Debug Trap or PROMPT_COMMAND | |
| # change it to use preexec or precmd | |
| # See also https://github.com/rcaloras/bash-preexec | |
| # If not running interactively, don't do anything | |
| case $- in |
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 | |
| find . -type d -exec chmod 755 {} \; | |
| find . -type f -exec chmod 644 {} \; | |
| # Apple metadata removal | |
| xattr -dr com.apple.quarantine . |
NewerOlder