Skip to content

Instantly share code, notes, and snippets.

View kostyakoz's full-sized avatar
🏠
Working from home

Kostya kostyakoz

🏠
Working from home
View GitHub Profile
anonymous
anonymous / sublime_text3_crack.md
Created June 7, 2015 04:58
Sublime Text 3092 3083 latest crack Win32 Win64 Linux64 Linux32 OSX Mac MacOS

cat

For pupil: all binary can be downloaded http://pan.baidu.com/s/1hqH2Pko

After overwriting, maybe need to run chmod +x /path/to/sublime_text. For linux default installation, need to add sudo.

For programmer:

VERSION PLATFORM OFFSET ORIGINAL CRACKED
@moomoohk
moomoohk / generate_build.py
Created April 7, 2015 12:55
Cactus (http://cactusformac.com/) plugin that generates an external build folder that doesn't overwrite your git files. Perfect for usage with GitHub pages, just stick your .git in the generated build folder.
import distutils.dir_util
import shutil
import os
def copytree(src, dst):
for item in os.listdir(src):
s, d = os.path.join(src, item), os.path.join(dst, item)
if os.path.isdir(s):
shutil.copytree(s, d, False, None)
else:
@aroman
aroman / iso-to-usb.md
Last active June 18, 2017 01:52
Creating a Mac-bootable USB drive from an elementary OS ISO

How to turn an Isis ISO into USB installation media

Using the command line

  1. Download the ISO. Let's assume it's in ~/Downloads.
  2. Convert the ISO to DMG format: hdiutil convert -format UDRW -o isis elementaryos-unstable-amd64.20140529.iso.
  3. Insert your >1GB USB drive into your Mac.
  4. Determine and make note of the mount point of your USB drive.

Using Disk Utility

@jaimergp
jaimergp / config-highlight.cfg
Last active May 27, 2024 12:16
Dark highlighting theme for Python IDLE based on SublimeText's Monokai color scheme
# Place this file inside your ~/.idlerc/ folder
# or paste its contents inside
# /path/to/python/idlelib/config-highlight.def
# Adapted from SublimeText's Monokai
[monokai]
normal-foreground= #F8F8F2
normal-background= #272822
keyword-foreground= #F92672
keyword-background= #272822