Skip to content

Instantly share code, notes, and snippets.

View bookerbolin's full-sized avatar

Nathan bookerbolin

  • Booker & Bolin
  • DURM
View GitHub Profile
@ToniWonKanobi
ToniWonKanobi / custom.scss
Last active May 1, 2024 12:26
Custom Stylesheet for Desktop Safari
// Variables
// Color for <code> and <pre>
$lighterGray: lighten(black, 25%);
// Background color for <code>
$lightGray: lighten(lightgray, 10%);
// Border color for <pre> and <code>
$darkGray: darken(lightgray, 3%);
// Background color of YouTube
$darkerGray: darken(gray, 35%);
@itod
itod / app-prototyping-apps.txt
Last active November 8, 2017 15:57
App-Prototyping Apps
App Prototyping tools
============
https://www.adobe.com/products/xd.html
https://www.figma.com/
http://principleformac.com/
https://kiteapp.co/
https://framer.com/
https://www.flinto.com/
https://www.invisionapp.com/studio
https://www.invisionapp.com/craft
<?php
// Turn off all error reporting
error_reporting(0);
$dir = new DirectoryIterator($folder);
$json = array();
foreach ($dir as $index => $fileinfo) {
@joshangell
joshangell / go-craft-go.sh
Last active January 26, 2021 00:48
Sets up a new Craft project in the ~/Sites folder with a bunch of plugins and boilerplate. Geared towards OSX users.
#!/bin/sh
printf "\e[34mEnter name for this site\e[0m\n"
read DOMAIN
if [ -z "$DOMAIN" ];
then
DOMAIN="${PWD##*/}"
fi
@murtaugh
murtaugh / cursor-reset.css
Last active May 11, 2023 17:28
CSS Cursor Reset
html,
body {
cursor: default;
}
code {
cursor: text;
}
/*