Skip to content

Instantly share code, notes, and snippets.

View thexavismith's full-sized avatar
🖖
Live long and prosper

Xavi Smith thexavismith

🖖
Live long and prosper
View GitHub Profile
@thexavismith
thexavismith / page.html
Last active January 23, 2019 20:12 — forked from iwittkau/page.html
Microgram Light
<style type="text/css">
.photos {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
grid-auto-rows: minmax(160px, 1fr);
grid-gap: 1rem;
margin-top: 2rem;
}
.photo {
@thexavismith
thexavismith / _syntax.scss
Created January 10, 2016 08:58 — forked from LeBenLeBen/_syntax.scss
Pygments theme based on SublimeText theme "Spacegray" available here: https://github.com/kkga/spacegray
/**
* Syntax highlighting
* Colors from SublimeText theme "Spacegray"
* https://github.com/kkga/spacegray
*/
.highlight {
background-color: #343d46;
color: white;
@thexavismith
thexavismith / jekyll-image-filer.rb
Last active December 12, 2016 20:03 — forked from ttscoff/Jekyll Filer.rb
OS X System Service script for filing Jekyll images and putting Markdown links on the clipboard
require 'fileutils'
# An OS X System Service for quickly filing image files to a Jekyll blog folder,
# putting Markdown links to the files on the clipboard.
# Copyright Brett Terpstra 2013
# Config
# ======
# Where to store the images
base_path = '~/Projects/theboldreport.net/uploads/'
#!/usr/bin/env ruby
# *********************************************
# Jekyll Post Generator Awesomeness
# by Cody Krieger (http://codykrieger.com)
# *********************************************
# *********************************************
# Modified by Tim Smith (http://ttimsmith.com)
# Originally created as a command line tool but