Skip to content

Instantly share code, notes, and snippets.

@jcklpe
jcklpe / Marriage.md
Created September 15, 2020 04:29 — forked from quinnnorton/Marriage.md
Marriage

Marriage Agreement

English

In this marriage we seek to mingle the project of our lives.

Our relationship is one of companionship, shared resources, comfort, encouragement, and pleasure. We laugh with, and look after, each other. We share our courage, and our grief. We protect each other, but we push each other as well. We choose this because we believe we can go further together and grow more as humans than we can alone.

What keeps us together is language. We talk to each other, we never let stuff disappear, never sweep difficult topics under the carpet. Our commitment is to talk about the things we feel like we can't talk about, to push through fearful times and be present for one another. We will always still be getting to know each other, and sharing our respective evolving views of the world. We will seek to listen and learn from each other.

@jcklpe
jcklpe / church.js
Created August 18, 2019 23:21 — forked from vivekhaldar/church.js
Church numerals in ES6.
//#!/usr/bin/env node --harmony
/*jshint esversion: 6 */
'use strict';
// Church numerals in ES6.
// c.f. https://en.wikipedia.org/wiki/Church_encoding
// Zero is the identity function.
let zero = (f => x => x);
@jcklpe
jcklpe / wp-gulp.js
Created November 13, 2018 19:45 — forked from zachattack/wp-gulp.js
Simple Gulp Config for Word Press Dev
// Gulp.js configuration
'use strict';
const
// source and build folders
dir = {
src : './static/',
lib : './static/lib/',
build : './assets/'
@jcklpe
jcklpe / FF57+RoomyBookmarksToolbar.md
Created August 15, 2018 19:20 — forked from sboettcher/FF57+RoomyBookmarksToolbar.md
Firefox Quantum Roomy Bookmarks Toolbar

In your Profile folder, add/edit the file chrome/userChrome.css with the following contents:

/* Recreates the basic functionality of the popular Roomy Bookmarks Toolbar add-on:
Hide bookmarks bar items label text, show on hover. */

.bookmark-item > .toolbarbutton-text {
  margin-top: -1px !important;
}
.bookmark-item {
@jcklpe
jcklpe / matrix.sh
Created July 25, 2018 03:22 — forked from alexfornuto/matrix.sh
Matrix Bash Script
#!/bin/bash
#
# matrix: matrix-ish display for Bash terminal
# Author: Brett Terpstra 2012 <http://brettterpstra.com>
# Contributors: Lauri Ranta and Carl <http://blog.carlsensei.com/>
#
# A morning project. Could have been better, but I'm learning when to stop.
### Customization:
blue="\033[0;34m"

Gradient shadow in pure CSS

alt text

HTML
<button>Let's Go !</button>