Skip to content

Instantly share code, notes, and snippets.

View ursooperduper's full-sized avatar
👁️

Sarah Kuehnle ursooperduper

👁️
View GitHub Profile
@ursooperduper
ursooperduper / finding-text-in-files
Created July 18, 2013 03:28
For a given file type, how do you find a particular text string?
find . -name "*.haml" -print | XARgs grep "toggle to use paths"
git clean -df & git checkout -- .
Git clean removes all untracked files & git checkout clears all unstaged changes
@ursooperduper
ursooperduper / tmux-ref.md
Created August 24, 2014 17:15
tmux reference

tmux Reference

Creating Sessions

Command Description
tmux new-session Create new session without a name. (Alt: tmux or tmux new)
tmux new -s development Creates new session called "development."
tmux new -s development -n editor Create new session called "development" and a first window called "editor."
tmux attach -t development Attaches to a session called "development."
@ursooperduper
ursooperduper / insertion-sort.rb
Created September 9, 2014 15:56
Simple Insertion Sort algorithm implemented with Ruby
#!/usr/bin/env ruby
num_arr = [31, 41, 59, 26, 41, 58]
puts "Original array:\n\t#{num_arr.join(",")}"
def insertion_sort(arr, comp)
(1...arr.length).each do |j|
key = arr[j]
i = j - 1
@ursooperduper
ursooperduper / insertion-sort.playground
Last active August 29, 2015 14:06
Insertion Sort algorithm written in Swift
typealias ArrayInt = Array<Int>
func lt(a: Int, b: Int) -> Bool {
return a < b
}
func gt(a: Int, b: Int) -> Bool {
return a > b
}
func insertionSort(arr: ArrayInt, comp: (Int, Int) -> Bool) -> ArrayInt {
/*
* Creative Coding Course
* Week Two: 25 Squares Sketch
* by Sarah Kuehnle (sarah@sooperduper.com)
*
* This sketch attempts to reproduce the work of Vera Molnar's, 1991
* work entited, 25 Squares.
* A grid of 5 x 5 squares is drawn with some randomness added for
* x/y positions and color
*/
@ursooperduper
ursooperduper / snippets.cson
Created November 2, 2015 20:55
Jekyll Snippet
# Front matter used to identify blog posts in Jeckyll.
'.source.gfm':
'Front Matter':
'prefix': 'fm'
'body': '---\nlayout: ${1:post}\ntitle: ${2:post title}\ndate: ${3:dd-mm-yyyy}\npublished: ${4:false}\ntags:\n- ${5:tag name}\n---$0'

Design Ops – Design Systems Ops for the rest of us

As many others I have read @kaelig's post Introducing Design Systems Ops with great joy. My head was in danger of falling off from all the nodding and seeing my past years' work reflected in it <3

But there is this one thing that doesn't sit right with me:

who will bridge the gap between the design systems team and the engineering team?

It implies that there is a "design systems team". That might be a thing for very large companies – to quote Jina's presentation on Living Design Systems:

@ursooperduper
ursooperduper / README.md
Created April 29, 2017 21:35 — forked from xaviervia/README.md
Sketch 43 files JSON types
@ursooperduper
ursooperduper / README.md
Created April 29, 2017 21:35 — forked from xaviervia/README.md
Sketch 43 files JSON types