Skip to content

Instantly share code, notes, and snippets.

View keif's full-sized avatar

Keith Baker keif

View GitHub Profile
@keif
keif / Disclaimers.chunk
Created January 13, 2012 22:03 — forked from larscwallin/Disclaimer.chunk
Widgeteer IRXML
@keif
keif / README.txt
Created January 16, 2012 15:59 — forked from larscwallin/README.txt
SIMPLX Widgeteer 0.8.4
SIMPLX Widgeteer 0.8.4.kb
UPDATE 120116 10:59
Made a nested foreach loop to handle placeholders with the same parent reference.
UPDATE 120115 16:59
Changed so that the default chunkMatchingSelector is "", which is more likely to be the case.
@keif
keif / gitconfig
Last active December 24, 2015 10:19 — forked from kmorcinek/gitconfig
[core]
excludesfile = /Users/_user_/.gitignore_global
[fetch]
prune = true
[alias]
# log outputs
lds = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cgreen\\ [%cn]" --decorate --date=short
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cgreen\\ [%cn]" --decorate --numstat
ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cgreen\\ [%cn]" --decorate
# fancy log output
@keif
keif / osx-for-hackers.sh
Created November 10, 2015 06:50 — forked from brandonb927/osx-for-hackers.sh
OSX for Hackers: Yosemite Edition. This script tries not to be *too* opinionated and any major changes to your system require a prompt. You've been warned. Also, please don't email me about this script, my poor inbox...
#!/bin/sh
# Alot of these configs have been taken from the various places
# on the web, most from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Set the colours you can use
black='\033[0;30m'
white='\033[0;37m'
red='\033[0;31m'
@keif
keif / m8o-nextjs-framer-flip-card.tsx
Created July 31, 2024 17:42 — forked from alishahlakhani/madeofzero-nextjs-framer-flip-card.tsx
Create a Tarot card deck selection page using Framer Motion and Nextjs
"use client";
import React, { useState } from "react";
import { AnimatePresence, motion } from "framer-motion";
import Image from "next/image";
import clsx from "clsx";
type Props = {
onPick?: (card: string | null) => void;
onSelect?: (card: string) => void;
};