https://www.reddit.com/r/kde/comments/qa58oa/how_do_i_disable_this_selection_popup_for_copy/
Tray - Clipboard contents - Configure clipboard - Action menu - MIME (uncheck)
https://www.reddit.com/r/kde/comments/qa58oa/how_do_i_disable_this_selection_popup_for_copy/
Tray - Clipboard contents - Configure clipboard - Action menu - MIME (uncheck)
$ go version | |
go1.18.3 linux/amd64 | |
$ go doc cmd/link [12:03:16] | |
Link, typically invoked as “go tool link”, reads the Go archive or object | |
for a package main, along with its dependencies, and combines them into an | |
executable binary. | |
Command Line |
NB все команды можно выполнять удалённо, запустив с -H hostname
общее время загрузки цели. если аргумент не указан, то цель по умолчанию:
https://medium.com/testcult/intro-to-test-framework-pytest-5b1ce4d011ae
pyenv install 3.7.12
~/.pyenv/versions/3.7.12/bin/python3 -m venv $ENV_DIR
source $ENV_DIR/bin/activate
# ~/.config/systemd/user/fluidsynth.service | |
[Unit] | |
Description=FluidSynth launched in server mode | |
After=sound.target | |
[Service] | |
ExecStart=/usr/bin/fluidsynth -a pulseaudio -m alsa_seq -i -l -s -p FluidSynth /usr/share/soundfonts/default.sf2 | |
[Install] | |
WantedBy=default.target |
NB Linux only
rr
package via your package manager or build it with instructionsudo sysctl kernel.perf_event_paranoid=1
Run - Record and debug
Run - Debug saved trace
# отключить выход по Ctrl-Q | |
browser.quitShortcut.disabled = true | |
# отключить выход после закрытия последней вкладки | |
browser.tabs.closeWindowWithLastTab = false | |
# отключить DevTools по Crtl-Shift-C (?) | |
devtools.toolbox.host = "" | |
devtools.enabled = false | |
devtools.toolbox.selectedTool = "" |
# /usr/share/X11/xorg.conf.d/50-expert.conf | |
Section "InputClass" | |
Identifier "Kensington Expert Mouse" | |
MatchProduct "Kensington Expert Mouse" | |
MatchIsPointer "on" | |
Driver "evdev" | |
Option "Buttons" "9" | |
#xinput --set-button-map 'Kensington Expert Mouse' 2 1 3 4 5 6 7 0 9 |
#!/usr/bin/env python3 | |
import gitlab | |
import sys | |
g = gitlab.Gitlab(url='https://gitlab.com', ssl_verify=False) | |
try: | |
with open('.gitlab-ci.yml', 'r') as gitlabci: | |
content = gitlabci.read() | |
except FileNotFoundError: |