Skip to content

Instantly share code, notes, and snippets.

View bheesham's full-sized avatar
🦥
yes

Bheesham Persaud bheesham

🦥
yes
View GitHub Profile
>>>> building module gambit/prim/bytevector for C
>>>> building module _test/verbose for C
>>>> building module gambit/prim/char for C
/bin/sh: line 1: 64598 Segmentation fault: 11 ../../gsc/gsc -:~~bin=../../bin,~~lib=../../lib,~~include=../../include -f -e "(let ((x (##build-module \"$main_mod\" (quote $targe
@bheesham
bheesham / gist:b2993ad47ab8b870386fdc412cd476f9
Created February 25, 2020 18:47
update kube-state-metrics roles
awk -e '/reflector.go:156.*Failed to/ {match($0, /cannot (\w+) resource "([^"]+)" in API group "([^"]+)"/, m); print m[1], m[2], m[3]}' logs | sort | uniq
Command line (with current working directory = .):
/usr/bin/perl ./Configure mingw64
Perl information:
/usr/bin/perl
5.30.1 for x86_64-msys-thread-multi
Enabled features:
var undefined = "FOO";
undefined;
(function() {
var undefined = "BAR";
return undefined;
}());

Test

This is a test

This is a test

Another test

int main(void) {
  return 0;
}
;; -*- mode: emacs-lisp -*-
;; vim: set filetype=cl :
;; This file is loaded by Spacemacs at startup.
;; It must be stored in your home directory.
(defun dotspacemacs/layers ()
"Configuration Layers declaration.
You should not put any user code in this function besides modifying the variable
values."
(setq-default

Keybase proof

I hereby claim:

  • I am bheesham on github.
  • I am bheesham (https://keybase.io/bheesham) on keybase.
  • I have a public key whose fingerprint is 4941 2C2A 783E 30B2 DE84 D2ED 3361 7817 D589 CB73

To claim this, I am signing this object:

@bheesham
bheesham / Makefile
Last active December 5, 2015 02:22
Makefile for my LaTeX projects.
.PHONY: clean spell count
SOURCE=template.tex
# template.bib, graphics, etc.
ADDITIONAL=
NAME=$(patsubst %.tex,%,$(SOURCE))
OUTPUT=$(patsubst %.tex,%.pdf,$(SOURCE))
@bheesham
bheesham / gist:67876f928dc81328b1fb
Created February 12, 2015 04:16
Magic Realm Tile Data
[
{
"numbers": {
"1": {
"y": 156,
"x": 138
},
"2": {
"y": 281,
"x": 135
@bheesham
bheesham / tas
Created April 7, 2014 23:00
Highlights tabs (red, 8 spaces) and spaces (green)
#!/usr/bin/env python3
__author__ = 'Bheesham Persaud <bheesham.persaud@live.ca>'
__license__ = 'ISC License'
__copyright__ = 'Copyright (C) 2014 Bheesham Persaud.'
__version__ = '0.0.1'
__usage__ = """tas <input file>
highlights tabs and spaces
"""