Skip to content

Instantly share code, notes, and snippets.

View matyushkin's full-sized avatar
🐕
Glad you found this page

Leo Matyushkin matyushkin

🐕
Glad you found this page
View GitHub Profile
@ohong
ohong / Brewfile
Created April 4, 2025 00:52
Oscar's Tools & Apps
# Command line tools
brew 'ata' # ChatGPT in the terminal
brew 'cask' # Extension to brew supporting installation of graphical applications
brew 'ffmpeg' # Complete solution to record, convert and stream audio and video
brew 'gh' # GitHub's CLI
brew 'git' # Version control
brew 'htop' # Interactive process viewer, an enhanced version of top
brew 'imagemagick' # Command-line tool for manipulating images
brew 'mailsy' # Command-line email client or email utility
brew 'mas' # Mac App Store command-line interface
@matyushkin
matyushkin / cmd_lang_rule.json
Created January 12, 2025 12:44
Karabiner Multilingual Switch (En/Ru/He/Ar) with Birman Layout for MacOS
{
"description": "Switch Language with cmd+1/2/3/4 (en, ru, he, ar)",
"manipulators": [
{
"from": {
"key_code": "1",
"modifiers": {
"mandatory": ["left_command"],
"optional": ["any"]
}
@denguir
denguir / cuda_install.md
Last active December 28, 2025 15:53
Installation procedure for CUDA / cuDNN / TensorRT

How to install CUDA / cuDNN / TensorRT on Ubuntu

Install NVIDIA drivers

Update & upgrade

sudo apt update && sudo apt upgrade

Remove previous NVIDIA installation

@simplesasha
simplesasha / gist:73005e8e08065d8c360dba09dc86626b
Created May 5, 2018 11:38
Интеграция Python 3 в Sublime Text 3 (простая и интерактивная консоль REPL)
1. Открываем Sublime Text -> Tools -> Build System -> New Build System
2. Вставляем в открывшийся файл следующие строки, чтобы получилось вот так:
{
"cmd": ["python3", "-i", "-u", "$file"],
"file_regex": "^[ ]File \"(...?)\", line ([0-9]*)",
"selector": "source.python"
}
3. Сохраняем файл с названием python3.sublime-build и не меняем путь предложенный редактором