Skip to content

Instantly share code, notes, and snippets.

@texervn
texervn / st4-changelog.md
Created October 25, 2020 12:09 — forked from jfcherng/st4-changelog.md
Sublime Text 4 changelog just because it's not on the official website yet.

Converted via https://domchristie.github.io/turndown

About Sublime Text 4

ST 4 is currently under private alpha for power users to test and report issues to let the dev team make it polished before it gets publicly announced. It has been almost under alpha for 8 months already and it's actually kind of stable for daily use now. If you have a ST 3 license, you can join the offical ST Discord chat server to download and test it. And the most important thing, report issues you encoutered so ST 4 can become better. I hope people can interact with the dev team more so I don't directly put download links here but maybe you are smart enough to guess them :)

Dev Channel Changelog

@texervn
texervn / sublime_text_patch.md
Created July 30, 2020 02:20 — forked from deyixtan/sublime_text_patch.md
Sublime Text Patching Guide

Automated Patching

Download slt.py python script (supports multiple build) from this repository.

Usage

python slt.py <"sublime_text file path">


Manual Patching

@texervn
texervn / Evaluation Version 1903
Last active October 22, 2019 08:36 — forked from CHEF-KOCH/Evaluation Version 1903
Windows 10 Build 18362.30 (May 2019 Update 1903)
Evaluation images cannot be activated after the evaluation period (90 days) is gone.
------------------------------------------------------------------------------------
Evaluation to Full
------------------
Dism /online /Get-TargetEditions
DISM /online /Set-Edition: /ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /AcceptEula
https://docs.microsoft.com/en-us/windows-server/get-started/supported-upgrade-paths
@texervn
texervn / fractal-dimension.py
Created June 19, 2019 01:01 — forked from viveksck/fractal-dimension.py
Fractal dimension computing
# -----------------------------------------------------------------------------
# From https://en.wikipedia.org/wiki/Minkowski–Bouligand_dimension:
#
# In fractal geometry, the Minkowski–Bouligand dimension, also known as
# Minkowski dimension or box-counting dimension, is a way of determining the
# fractal dimension of a set S in a Euclidean space Rn, or more generally in a
# metric space (X, d).
# -----------------------------------------------------------------------------
import scipy.misc
import numpy as np