Skip to content

Instantly share code, notes, and snippets.

View keyiflerolsun's full-sized avatar
🏕️
hiçbi kere hayat bayram olmadı ya da; her nefes alışımız bayramdı.. 🎶

Ömer Faruk Sancak keyiflerolsun

🏕️
hiçbi kere hayat bayram olmadı ya da; her nefes alışımız bayramdı.. 🎶
View GitHub Profile
@keyiflerolsun
keyiflerolsun / how-to-setup-verified-commits.md
Created May 15, 2023 10:53 — forked from Beneboe/how-to-setup-verified-commits.md
How to Setup Verified Commits on Github
@keyiflerolsun
keyiflerolsun / key.md
Created July 14, 2022 13:07
Twitter (un)official Consumer Key

Twitter Official Consumer Key

Twitter for Android

type:            PIN
Consumer key:    3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys

Twitter for iPhone

type:            PIN

Consumer key: IQKbtAYlXLripLGPWd0HUA

#!/usr/bin/python3
import gi
gi.require_version('Gtk', '3.0')
gi.require_version('Vte', '2.91')
from gi.repository import Gtk, Vte, GLib
terminal = Vte.Terminal()
terminal.connect("child_exited",Gtk.main_quit)
terminal.spawn_sync(Vte.PtyFlags.DEFAULT, None, ["/bin/bash"], [], GLib.SpawnFlags.DO_NOT_REAP_CHILD, None, None)
win = Gtk.Window()
win.connect('delete-event', Gtk.main_quit)
@keyiflerolsun
keyiflerolsun / open-cmder-here.md
Created April 15, 2020 02:43 — forked from hamzahamidi/open-cmder-here.md
"Open Cmder Here" in context menu

"Open Cmder Here" in context menu

To add an entry in the Windows Explorer context menu to open Cmder in a specific directory, paste this into a OpenCmderHere.reg file and double-click to install it.

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder]
    @="Open Cmder Here"
 "Icon"="\"%CMDER_ROOT%\\icons\\cmder.ico\",0"