Skip to content

Instantly share code, notes, and snippets.

Screen Shot 2021-08-12 at 12 37 16 PM Screen Shot 2021-08-12 at 12 37 24 PM Screen Shot 2021-08-12 at 12 37 32 PM Screen Shot 2021-08-12 at 12 37 39 PM

(my favorite) Screen Shot 2021-08-12 at 11 12 31 AM

@colevscode
colevscode / custom-stripe.css
Created October 27, 2020 00:05
Styling Stripe Elements example
/**
* The CSS shown here will not be introduced in the Quickstart guide, but shows
* how you can use CSS to style your Element's container.
*/
.StripeElement {
box-sizing: border-box;
height: 40px;
padding: 10px 12px;
@colevscode
colevscode / startup.scd
Created February 24, 2020 01:32
Supercollider Startup Script for UMC404HD with Midi

( var deviceName;

deviceName = "UMC404HD 192k"; // substitute your own device here

s.reboot { // server options are only updated on reboot

// configure the sound server: here you could add hardware specific options
// see http://doc.sccode.org/Classes/ServerOptions.html
s.options.numBuffers = 1024 * 256; // increase this if you need to load more samples
#!/usr/bin/env python
import random
from enum import Enum
from typing import NamedTuple
from collections import Counter
from dataclasses import dataclass
class Color(Enum):
RED = 1
ORANGE = 2
import React, { Component } from "react";
import { Shaders, Node, GLSL } from "gl-react";
import {Surface, resolveAssetSource} from "gl-react-expo";
import { Image } from 'react-native';
const shaders = Shaders.create({
helloImage: {
frag: GLSL`
precision highp float;
/* UPDATE --- It's working!
Just needed to make sure I was consistently spreading the args (or not spreading them)
and not forget that javascript typeof [] === 'object'.
*/
/*
lispparser is a lisp parser! It's meant to turn a lisp string
like this:
"(first (list 1 (+ 2 3) 9))"
@colevscode
colevscode / formbutton-default.css
Last active September 15, 2022 18:36
Default formbutton styles.
body {
font-family: sans-serif;
font-size: 100%;
line-height: 1;
font-weight: 400;
}
#formbutton-shim {
position: fixed;
top: 0;
bottom: 0;
@colevscode
colevscode / form-reset.css
Last active April 15, 2024 19:16
Formspree universal form styles
/* reset */
form input,
form select,
form textarea,
form fieldset,
form optgroup,
form label,
.StripeElement {
font-family: inherit;
font-size: 100%;
@colevscode
colevscode / nginx.rb
Created June 30, 2012 00:18
Homebrew formula for nginx with upload
require 'formula'
class Nginx < Formula
url 'http://nginx.org/download/nginx-1.2.1.tar.gz'
head 'http://nginx.org/download/nginx-1.3.2.tar.gz'
homepage 'http://nginx.org/'
if ARGV.include? '--HEAD'
@md5='7a4f8e26b76bf9f24f884317f5614338'
else