Skip to content

Instantly share code, notes, and snippets.

View Mixerou's full-sized avatar
🤗
TOOOOKIOOOOOO

Ivan Mixerou

🤗
TOOOOKIOOOOOO
View GitHub Profile
@Mixerou
Mixerou / cloud_scratches.sh
Last active May 17, 2025 06:40
JetBrains Cloud Scratch Files Linker
#!/usr/bin/env bash
# Error Codes
# 1 — Platform is not supported
# 2 — No IDEs have been installed
# 3 — Location for cloud scratches does not exist
set -eu +x
PLATFORM=$(uname -s)
@Mixerou
Mixerou / steps.md
Created October 15, 2022 10:44
Use GPG key in Git
  • git config --global --unset gpg.format
  • gpg --list-secret-keys --keyid-format=long
sec   4096R/3AA5C34371567BD2 2016-03-10 [expires: 2017-03-10]
uid                          User <[email protected]>
ssb   4096R/4BB6D45482678BE3 2016-03-10
  • git config --global user.signingkey 3AA5C34371567BD2
  • git config --global commit.gpgsign true
@Mixerou
Mixerou / rustfmt.toml
Created October 9, 2022 16:22
Rust FMT TOML 2018 Edition
# https://rust-lang.github.io/rustfmt/?version=master&search=
max_width = 120
tab_spaces = 4
# fn_single_line = true
# match_block_trailing_comma = true
# normalize_comments = true
# wrap_comments = true
# use_field_init_shorthand = true
# use_try_shorthand = true
# normalize_doc_attributes = true