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 / 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)