Skip to content

Instantly share code, notes, and snippets.

View GrayWizard12345's full-sized avatar

Muslimbek Abduganiev GrayWizard12345

  • South Korea
View GitHub Profile

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@GrayWizard12345
GrayWizard12345 / extensions
Last active October 27, 2022 06:36
Extensions Sync
{"Hide_Activities@shay.shayel.org":{},"unite@hardpixel.eu":{"/org/gnome/shell/extensions/unite/":"[/]\nautofocus-windows=false\ndesktop-name-text=\"Muslim's Desktop\"\ngreyscale-tray-icons=true\nhide-activities-button='always'\nhide-dropdown-arrows=true\nhide-window-titlebars='maximized'\nrestrict-to-primary-screen=true\nwindow-buttons-placement='left'"},"InternetSpeedMeter@alshakib.dev":{},"trayIconsReloaded@selfmade.pl":{"/org/gnome/shell/extensions/trayIconsReloaded/":""},"extension-list@tu.berry":{},"hidetopbar@mathieu.bidon.ca":{"/org/gnome/shell/extensions/hidetopbar/":""}}
@GrayWizard12345
GrayWizard12345 / SetupInnoSetupPostgreSql.iss
Created December 2, 2021 07:14 — forked from levymoreira/SetupInnoSetupPostgreSql.iss
Exemplo Setup (INNO SETUP) instalação PostgreSql no Windows
; Levy Moreira - 12/04/2012
#define MyAppName "Program"
#define MyAppVersion "1.0"
#define MyAppPublisher "NextTi"
#define MyAppURL "http://www.nextti.com/"
#define MyAppExeName "Program.jar"
[Setup]
; NOTE: The value of AppId uniquely identifies this application.
class QCheckableHeaderView(QtGui.QHeaderView):
'''
Checkable QHeaderView. Column 0 contains a checkbox that emits
a signal when it's check state is updated.
'''
is_on = True
signal_checked = QtCore.pyqtSignal(bool)
def __init__(self, *args, **kwargs):
super(QCheckableHeaderView, self).__init__(*args, **kwargs)