Skip to content

Instantly share code, notes, and snippets.

View Koromix's full-sized avatar

Niels Martignène Koromix

View GitHub Profile
@Koromix
Koromix / 98-sane-memory.conf
Last active March 31, 2024 09:03
98-sane-memory.conf
# Please use memory, I have plenty of it
vm.swappiness=1
# Avoid insane dirty writebacks with slow devices (USB keys, etc.)
vm.dirty_background_bytes=33554432
vm.dirty_bytes=134217728
@Koromix
Koromix / Preferences.sublime-settings
Last active August 11, 2023 11:02
Sublime Text Preferences
{
"color_scheme": "Brackets Light.sublime-color-scheme",
"theme": "Adaptive.sublime-theme",
"highlight_line": true,
"highlight_modified_tabs": true,
"show_encoding": true,
"show_line_endings": true,
"translate_tabs_to_spaces": true,
"trim_only_modified_white_space": true,
"draw_white_space": ["selection", "trailing", "isolated"],
@Koromix
Koromix / SaneBB.java
Last active October 13, 2022 18:19
Fast BBCode parser in Java
// SaneBB - public domain
// Niels Martignène <niels.martignene@protonmail.com>
//
// This software is in the public domain. Where that dedication is not
// recognized, you are granted a perpetual, irrevocable license to copy,
// distribute, and modify this file as you see fit.
//
// See the LICENSE file for more details.
// Fast BBCode to HTML converter