Skip to content

Instantly share code, notes, and snippets.

View erisdev's full-sized avatar
🏳️‍🌈
gay piece of shit

Riley Nicole Sledgehammer erisdev

🏳️‍🌈
gay piece of shit
View GitHub Profile
@erisdev
erisdev / chili.md
Last active May 28, 2020 18:46
my dang chili recipe

you need:

  • 2-3 pounds ground pork or pork and beef blend
  • 1 white or yellow onion, but not sweet onions
  • 1 red onion
  • 4 fresh tomatillos
  • 4 fresh jalapeño peppers
  • 4 roma tomatoes
  • 1-2 cans of corn
  • 1 can black beans
  • 1 can dark kidney beans
I: [pulseaudio] client.c: Created 2 "Native client (UNIX socket client)"
D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client2
D: [pulseaudio] protocol-native.c: Protocol version: remote 32, local 32
I: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=1000 success=1
D: [pulseaudio] protocol-native.c: SHM possible: yes
D: [pulseaudio] protocol-native.c: Negotiated SHM: yes
D: [pulseaudio] protocol-native.c: Memfd possible: yes
D: [pulseaudio] protocol-native.c: Negotiated SHM type: shared memfd
D: [pulseaudio] memblock.c: Using shared memfd memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
D: [pulseaudio] srbchannel.c: SHM block is 65472 bytes, ringbuffer capacity is 2 * 32712 bytes
@erisdev
erisdev / -README.md
Last active August 9, 2017 14:40
make discord chats not 99% whitespace and move that pesky channel list out of the way

install betterdiscord then paste this in the custom CSS textbox

@import url("https://cdn.rawgit.com/erisdev/98ba52158cf7af694283ebc9e1934e79/raw/4ec50b6510ea94c09502ad78be83407cd51c5c9d/deflatediscord.css");

which can be found in preferences

where to find the custom CSS option

@erisdev
erisdev / more-cybre.css
Created July 5, 2017 19:44
my userstyle tweaks to make cybrespace a little more cybre
@import url('https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,400i,700,700i&subset=latin-ext');
body {
--bright: #00ff95;
--dark: #009054;
--shadow: #004437;
--input-base: #181818;
--input-text: #dae8da;
font-family: "Ubuntu Mono";
@erisdev
erisdev / # weechat - 2017-05-17_00-16-24.txt
Created May 17, 2017 04:32
weechat on macOS 10.12.4 - Homebrew build logs
Homebrew build logs for weechat on macOS 10.12.4
Build date: 2017-05-17 00:16:24
@erisdev
erisdev / Poser.m
Created March 11, 2012 04:09
Miss +[NSObject poseAsClass:]? Don't use this, you might hurt yourself or someone you love.
#import <objc/runtime.h>
#import <stdlib.h>
// declare some of the Objective-C runtime's private parts where we can see them
typedef struct _NXMapTable NXMapTable;
extern NXMapTable *gdb_objc_realized_classes;
extern void *NXMapInsert(NXMapTable *table, const void *key, const void *value);
@implementation NSObject (Poser)
@erisdev
erisdev / gist:2316067
Created April 6, 2012 02:19
Turns TextMate bookmarks into lldb breakpoints. Inefficiently. Also hoses .lldbinit, so watch out!
#!/usr/bin/env ruby
require 'osx/plist'
require 'ffi-xattr'
File.open '.lldbinit', 'w' do |script|
Dir['./**/*.{c,cc,cpp,cxx,m,mm,h,hpp}'].each do |filename|
xattr = Xattr.new filename
source = File.basename filename