Skip to content

Instantly share code, notes, and snippets.

View MousieDev's full-sized avatar
😡
I hate *vs* and *ms*

MousieDev

😡
I hate *vs* and *ms*
View GitHub Profile
// Copyright 2021 Alexey Kutepov <reximkut@gmail.com>
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
@StevenACoffman
StevenACoffman / Homoglyphs.md
Last active June 7, 2026 17:52
Unicode Look-alikes

Unicode Character Look-Alikes

Original Letter Look-Alike(s)
a а ạ ą ä à á ą
c с ƈ ċ
d ԁ ɗ
e е ẹ ė é è
g ġ
h һ
@rcraig12
rcraig12 / tiledemo.asm
Last active October 27, 2021 11:04
Tile Demo for Commander X16
!cpu 65c02
!to "TILEDEMO.PRG",cbm
* = $0801 ; BASIC starts at #2049
!byte $0c,$08 ; Address of next line
!byte $0a,$00 ; LINE Number
!byte $9e ; TOKEN for SYS
!byte $20 ; PETSCII for SPACE
!byte $32,$33,$30,$34 ; PETSCII for 2304 $30 - $39 is 0 to 9 respectively!
@JerryLokjianming
JerryLokjianming / Crack Sublime Text Windows and Linux.md
Last active June 29, 2026 22:24
Crack Sublime Text 3.2.2 Build 3211 and Sublime Text 4 Alpha 4098 with Hex

How to Crack Sublime Text 3.2.2 Build 3211 with Hex Editor (Windows | Without License) ↓

  1. Download & Install Sublime Text 3.2.2 Build 3211
  2. Visit https://hexed.it/
  3. Open file select sublime_text.exe
  4. Offset 0x8545: Original 84 -> 85
  5. Offset 0x08FF19: Original 75 -> EB
  6. Offset 0x1932C7: Original 75 -> 74 (remove UNREGISTERED in title bar, so no need to use a license)
@deyixtan
deyixtan / sublime_text_patch.md
Last active March 23, 2026 00:51
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

@eltonvs
eltonvs / arch_installation.md
Last active February 14, 2026 15:09
Arch Linux step to step installation guide

Arch Linux Installation Guide

This guide will show step-by-step how to Install Arch Linux on UEFI mode.

Table of Contents

  • Bootable Flash Drive
  • BIOS
  • Pre installation
    • Set Keyboard Layout
    • Check boot mode
  • Update System Clock
@MehmetKursat
MehmetKursat / Sublime Text 3 Crack Tutorial.md
Last active March 31, 2021 11:23
Sublime Text 3 Crack Tutorial - 3112 3111 3110 3148

Win x64

Version Offset Offset Change
3093 Win x64 0xF0A8B 85 -> 3B
3094 Win x64 0xF0A8B 85 -> 3B
3095 Win x64 0xF0BDF 85 -> 3B
3100 Win x64 0xE888D F8 -> E0
3101 Win x64 0xE7721 F8 -> E0
3102 Win x64 0xE849D F8 -> E0
@Yttrmin
Yttrmin / TableTopTennisSimulator2012.asm
Created February 3, 2016 06:52
Basic Atari 2600 pong game. Compile with DASM.
; Table Top Tennis Simulator 2012
processor 6502
include vcs.h
org $F000
;Constants
BGColor = $48
PFColor = $34
P0Color = $C6 ; Green
@skeeto
skeeto / jit.c
Last active August 18, 2024 16:51
Basic JIT
/* http://redd.it/2z68di */
#define _BSD_SOURCE // MAP_ANONYMOUS
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <sys/mman.h>
#define PAGE_SIZE 4096
@Kwauhn
Kwauhn / Basic2DCamera.java
Last active June 22, 2020 17:30
Basic 2D Camera with OpenGL and Java
import static org.lwjgl.opengl.GL11.*;
import org.lwjgl.opengl.Display;
public class Camera
{
private float x, y, scale;
public Camera()
{
x = y = 0;