Skip to content

Instantly share code, notes, and snippets.

View harubaru's full-sized avatar
🌺

Anthony Mercurio harubaru

🌺
  • CoreWeave, ASU
  • Phoenix, AZ
  • 11:53 (UTC -07:00)
View GitHub Profile
@harubaru
harubaru / config
Created January 14, 2018 03:53
i3 config
# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
#
# i3 config file (v4)
#
# Please see http://i3wm.org/docs/userguide.html for a complete reference!
@harubaru
harubaru / something.c
Created December 14, 2017 06:09
a tool for doing boring biology homework that my teacher gives me
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define RNACOMP(x0, x1) (rna[i + 2] == x0 || rna[i + 2] == x1)
char *dna_to_rna(char *dna)
{
size_t sz = strlen(dna);
unsigned i;