Skip to content

Instantly share code, notes, and snippets.

View LIMPIX31's full-sized avatar
🏆
Yandex Cup 2023

Danil Karpenko LIMPIX31

🏆
Yandex Cup 2023
View GitHub Profile
@LIMPIX31
LIMPIX31 / suppressor.md
Last active June 3, 2024 12:49
Гайд по сапрессору на Paper

И так, вы все любите сапрессор, поэтому я решил подробно описать как это сделать, я буду дополнять статью со временем, т.к. сейчас пишу с телефона, так же не стесняйтесь задавать вопросы мне в дискорде(LIMPIX31#9144) или Telegram (@LIMPIX31).

Если это гайд вам помог, то пожалуйста оставьте звёздочку и комментарий, чтобы я знал, что улучшить или дополнить.

1.19 (fixed)

Я немного забросил тему с сапрессором и похоже, что сапрессор оффициально исправлен Mojang. 😕

Сборка из патча (1.18.2 или другая версия)

Поехали.

@fnky
fnky / ANSI.md
Last active June 7, 2024 09:59
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@Nihhaar
Nihhaar / extract android kernel.md
Created May 10, 2018 12:03 — forked from azureru/extract android kernel.md
How to Extract Android Kernel And Modify The Boot Ramdisk (Android 4.4)

Extracting Existing Kernel + Ramfs

Enter the machine using adb shell

Run cat /proc/partitions

  #  Path                     Purpose        Size
  0 /dev/block/mmcblk0                       7761920
  1 /dev/block/mmcblk0p1      data           6085631
@xposedbones
xposedbones / map.js
Last active May 1, 2024 11:15
Javascript Map range of number to another range
Number.prototype.map = function (in_min, in_max, out_min, out_max) {
return (this - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;
}