Skip to content

Instantly share code, notes, and snippets.

@reagent
reagent / whitespace.sh
Last active August 15, 2019 03:27
Convert whitespace from tabs to 2 spaces
#!/bin/bash
set -e # fail on nonzero status
cd $1
files=`find . \
-not \( -path ./vendor -prune \) \
-not \( -path ./tmp -prune \) \
-name '*.html' -o -name '*.js' -o -name '*.coffee' -o \
@reagent
reagent / .gitignore
Last active November 8, 2023 08:53
Curses Windowing Example
demo
*.swp
@reagent
reagent / .gitignore
Last active September 13, 2021 15:13
Curses + C Example
demo
*.swp
@reagent
reagent / xmas.ino
Created December 2, 2013 08:36
ruff & reddy
class Note {
short frequency;
int tempo;
public:
String name;
Note(String name) {
this->name = name;
this->tempo = 150;
<%=
begin
render "pages/#{foo}/data"
rescue ActionView::MissingTemplate
render "pages/data"
end
%>
@reagent
reagent / pad.c
Last active December 15, 2015 18:59
dat pad
char *
pad(char *in, size_t width)
{
char *padded = NULL,
*fmt = NULL;
check(asprintf(&fmt, "%%%lds", width) >= 0);
check(asprintf(&padded, fmt, in) >= 0);
free(in);
@reagent
reagent / .gitignore
Created April 1, 2013 14:51
Implementation of realloc / malloc
realloc
*.o
*.dSYM
@reagent
reagent / .gitignore
Created April 1, 2013 14:50
String Calculator
calc
*.o
*.dSYM
@reagent
reagent / malloc_size.c
Created March 25, 2013 19:49
Checking size of allocation
#include <stdlib.h>
#include <stdio.h>
#include <malloc/malloc.h>
int
main()
{
char *thing = malloc(1 * sizeof(char));
printf("Alloc'd: %ld bytes\n", malloc_size(thing));
@reagent
reagent / .gitignore
Last active December 15, 2015 07:18
Dynamic array + union
main
*.o
*.dSYM