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
{
"name": "Darcula",
"cursorColor": "#a9b7c6",
"selectionBackground": "#214283",
"background": "#2b2b2b",
"foreground": "#a9b7c6",
"black": "#000000",
; Darcula-like color scheme
[Colors]
InverseCursor=1
InverseSelection=0
BackColor=4276028
BackColor2=4276028
ForeColor=13088425
MarkColor=3948476
CursorColor=11497035
CursorText=13088425
@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
@bsobol
bsobol / darcula.yml
Last active January 15, 2019 00:08
Darcula_color_scheme
- color: ide_base
hex: #3C3F41
- color: editor_background
hex: #2B2B2B
rgb: [43,43,43]
- color: default_text
hex: #A9B7C6
rgb: [169,183,198]
@bsobol
bsobol / wincmd.ini
Last active March 5, 2020 10:49
totalcmd config file
; Darcula-like color scheme
[Colors]
InverseCursor=1
InverseSelection=0
BackColor=4276028
BackColor2=4276028
ForeColor=13088425
MarkColor=3948476
CursorColor=11497035
CursorText=13088425
@bsobol
bsobol / .travis.yml
Created April 20, 2017 19:06
travis.yml for cmake project with gtest and modern gcc
language:
- cpp
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
- gcc-6