Skip to content

Instantly share code, notes, and snippets.

View GrayWizard12345's full-sized avatar

Muslimbek Abduganiev GrayWizard12345

  • South Korea
View GitHub Profile
@sreeragh-ar
sreeragh-ar / python_quick_tips.ipynb
Created June 23, 2021 14:07
Python_quick_tips.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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)
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active June 21, 2024 01:45
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@levymoreira
levymoreira / SetupInnoSetupPostgreSql.iss
Created April 12, 2012 19:35
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.