Skip to content

Instantly share code, notes, and snippets.

@goldensunliu
goldensunliu / font-sizes.styl
Last active May 12, 2016 17:43
a font size source with some global selectors
// Font size definitions
$font-size-smaller = 1rem
$font-size-small = 2rem
$font-size-base = 3rem
// Global font styles
const StyleSheetServer = {
async renderStatic(appRenderFunc) {
reset();
startBuffering();
const result = await appRenderFunc();
const cssContent = flushToString();
return {
result,
css: {
.label
display inline
padding .2em .6em .3em
font-size 75%
font-weight bold
line-height 1
color label-color
text-align center
white-space nowrap
vertical-align baseline
@require 'label'
@require 'OrgWideTypography'
.MyComponent__Label
@extend .label
.MyFeatureLayout
@extend $OrgMarketingLayout
.header
@goldensunliu
goldensunliu / gist:865469b6f5a43779eb2e
Created March 18, 2015 19:41
Game of life in Processing.js
// Game of Life
int sx, sy;
float density = 0.2;
int lifeSqureWidth = 3;
int[][][] world;
void populate() {
for (int i = 0; i < sx * sy * density; i++) {