Skip to content

Instantly share code, notes, and snippets.

View Doomwhite's full-sized avatar

DooMWhite Doomwhite

  • SC, Brazil
View GitHub Profile
@rougier
rougier / nano.el
Created February 4, 2025 18:48
NANO Emacs (minimal version: 256 lines)
;; nano-emacs.el --- NANO Emacs (minimal version) -*- lexical-binding: t -*-
;; Copyright (c) 2025 Nicolas P. Rougier
;; Released under the GNU General Public License 3.0
;; Author: Nicolas P. Rougier <[email protected]>
;; URL: https://github.com/rougier/nano-emacs
;; This is NANO Emacs in 256 lines, without any dependency
;; Usage (command line): emacs -Q -l nano.el -[light|dark]
@JosephJoshua
JosephJoshua / texthooker.html
Last active January 11, 2023 19:54
Anacreon's text hooker page with reading speed hidden by default
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Clipboard Insertion Page - Anacreon Edition</title>
<style>
body,
html {

MSYS2 + Zsh + Oh My Zsh + Theme (windows)

Instalação do Zsh + Oh My Zsh no windows sem WSL.

Instalando o MSYS2

choco install msys2 -y
@pgp
pgp / BuildRustAppForAndroid.sh
Created April 11, 2019 08:36
Cross compile RUST application for Android (uses standalone toolchains, NDK >= 19 required)
# arm
export PATH=$PATH:$HOME/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin
export CC=armv7a-linux-androideabi19-clang
export CXX=armv7a-linux-androideabi19-clang++
~/.cargo/bin/cargo build --target armv7-linux-androideabi
# aarch64
export PATH=$PATH:$HOME/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin
export CC=aarch64-linux-android21-clang
export CXX=aarch64-linux-android21-clang++
@Naraenda
Naraenda / bd-custom-css.css
Last active April 17, 2022 06:22
CSS snippets for BetterDiscord
/* Single emotes as sticker */
span:only-of-type .jumboable {
width: 160px;
height: 160px;
image-rendering: pixelated;
}
/* Hide GIF picker button */
button[aria-label="Open GIF picker"] {
visibility: hidden;