This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set padding 0 0 0 0 | |
set border 0 | |
set bargravity n | |
set barborder 1 | |
alias syncboard exec sh -c 'xclip -o | xclip -selection clipboard' | |
alias screenshot exec sh -c 'cd ~/Pictures/screenshots; scrot -s' | |
alias volume exec volume="$(ratpoison -c prompt\ volume:\ )%"; pacmd list-sinks | awk -F ': ' '/index/ {print $2}' | xargs -I{} pactl set-sink-volume {} $volume |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
URxvt.scrollBar: false | |
URxvt.cursorBlink: true | |
URxvt.perl-ext: default,matcher | |
URxvt.url-launcher: sensible-browser | |
URxvt.keysym.C-Delete: perl:matcher:last | |
URxvt.keysym.M-Delete: perl:matcher:list | |
URxvt.matcher.button: 1 | |
URxvt.font: xft:Inconsolata:pixelsize=15,xft:Symbola | |
URxvt.letterSpace: -1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Scheme] | |
Name=evilroot | |
ColorPalette=#1B1D1E;#ff005f;#afd700;#ff8f00;#0d4eb5;#8C54FE;#4c8ea1;#d2d2d2;#505354;#ff6767;#8ce25d;#ffb445;#5496ff;#9E6FFE;#6bc1d0;#ffffff | |
ColorForeground=#f8f8f2 | |
ColorCursor=#f8f8f2 | |
ColorBackground=#000000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call plug#begin() | |
Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
Plug 'maxmellon/vim-jsx-pretty' | |
Plug 'tpope/vim-surround' | |
call plug#end() | |
" Add syntax highlighting. | |
syntax on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <emscripten.h> | |
#include <SDL2/SDL.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
#define BUFFER_SIZE 4096 | |
int main(int argc, char **argv) { | |
if (SDL_Init(SDL_INIT_AUDIO)) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdint.h> | |
#include <stdio.h> | |
#define TSF_IMPLEMENTATION | |
#include "tsf.h" | |
#define TML_IMPLEMENTATION | |
#include "tml.h" | |
#define SAMPLE_RATE 22050 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const drawIndex = 0; | |
const yOffsets = [1, 4, 5, 16, 17, 20, 21, 64]; | |
const xOffsets = [2, 8, 10, 32, 34, 40, 42, 1920]; | |
const expandedYOffsets = [0]; | |
let test = 0; | |
for (let i = 0; i < 30; i++) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
const fetch = require('node-fetch-commonjs'); | |
const path = require('path'); | |
const readline = require('readline/promises'); | |
const { spawn } = require('child_process'); | |
const { promises: fs } = require('fs'); | |
const { stdin, stdout } = require('process'); | |
const concat = require('concat-stream'); |
OlderNewer