Skip to content

Instantly share code, notes, and snippets.

View Yllelder's full-sized avatar

Yllelder Bamir Yllelder

View GitHub Profile
@oninjqk
oninjqk / Crack Sublime Text Build 4200 for Windows.md
Last active June 20, 2025 15:58
Crack Sublime Text Build 4200 for Windows.
Easy and Fast Crack By ninjqk.

Step 1: Install Required Tools
Download and install Sublime Text from:
https://download.sublimetext.com/sublime_text_build_4200_x64_setup.exe

Install HxD or any other hex editor. You can also use an online tool like:
https://hexed.it
@YoSoyPhil
YoSoyPhil / README.md
Last active June 1, 2025 10:01
Install Canon EOS Utility 2 full version

How to install Canon EOS Utility 2 full version

EOS Utility 2.14.20a full version install

Go to Canon and select your camera model under software downloads. At the time this guide was written, the link was https://www.canon-europe.com/support/consumer_products/software/eos-utility.html

Select your camera and download "EOS Utility 2.14.20a Updater for Windows" (yes, we will do full install with this file).

Before we can run the installer we need to add a key to our registry.

@TravisJoe
TravisJoe / tkinter_full_test.py
Created May 14, 2013 14:17
Tkinter in python full screen example
from Tkinter import *
root = Tk()
w = Label(root, text="Hello, world!")
root.overrideredirect(True)
root.geometry("{0}x{1}+0+0".format(root.winfo_screenwidth(), root.winfo_screenheight()))
root.focus_set() # <-- move focus to this widget
root.bind("<Escape>", lambda e: e.widget.quit())
w.pack()