Skip to content

Instantly share code, notes, and snippets.

@bsobol
bsobol / windows-msys2-vscode-jetbrains-PATH.md
Created September 18, 2024 19:49 — forked from slvdrvlc/windows-msys2-vscode-jetbrains-PATH.md
integrate msys2 to VSCode and JetBrains on windows inheriting the path variable from the user. optionally you can install fish with msys2, intuitive terminal, I recommend it

FOR VSCODE IN FILE settings.json

"terminal.integrated.profiles.windows": {
  "Bash": {
    "path": "C:\laragon\bin\git\bin\bash.exe",
  },
  "MSYS2": {
    "path": "C:\msys64\usr\bin\bash.exe",
    "label": "MSYS2",
 "args": ["--login", "-i"],

Compile ctffind4 on CentOS 8

Instructions to compile ctffind4 on CentOS 8.

Install dependencies

# Enable PowerTools
sudo dnf config-manager --set-enabled PowerTools
@bsobol
bsobol / config-highlight.cfg
Last active April 19, 2022 18:24 — forked from AndBondStyle/config-highlight.cfg
A dark highlighting theme for Python's IDLE IDE based on PyCharm Darcula color scheme
[Darcula]
normal-foreground = #A9B7C6
normal-background = #2B2B2B
definition-foreground = #A9B7C6
definition-background = #2B2B2B
keyword-foreground = #CC7832
keyword-background = #2B2B2B
builtin-foreground = #8888C6
builtin-background = #2B2B2B
string-foreground = #629755