Skip to content

Instantly share code, notes, and snippets.

View jeremyboggs's full-sized avatar

Jeremy Boggs jeremyboggs

View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bulletproof Accessible Icon Test</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css">
<style type="text/css" media="screen">
.audible {
clip: rect(0 0 0 0);
overflow: hidden;
position: absolute;
@jeremyboggs
jeremyboggs / 3dprinter.md
Last active August 29, 2015 14:07
Things to know before using the 3D printer on your own
  • How to turn it on and off
  • How to get a model onto the printer: Makerbot
  • How to get a model onto the printer: ReplicatorG
  • How to unload and load the filament before/after a print
    • Make sure to check the kind of filament you're using (PLA, ABS) and confirm settings when exporting for a print. (You don't want to use ABS settings with PLA, and vice versa.)
  • How to unload and load the filament during a print
  • How to watch the filament to make sure it isn’t getting tangled on the spool.
  • How to level the build platform
  • How to remove/add painters tape on build platform
  • How to remove build platform
@jeremyboggs
jeremyboggs / maker-software.md
Last active April 9, 2018 08:50
Software for Maker Computer

Software for a Maker computer

Misc

  • Arduino
  • TextWrangler
  • MacVim
  • Miro Video Converter

3D Printing

@jeremyboggs
jeremyboggs / ie-filter-gradient.scss
Created September 5, 2014 19:14
Sass/Compass mixin to do filter gradient in IE.
@mixin ie-filter-gradient($start-color, $end-color, $orientation: vertical) {
@include has-layout;
$gradient-type: if($orientation == vertical, 0, 1);
@each $property in -ms-filter, filter {
#{$property}: progid:DXImageTransform.Microsoft.gradient(gradientType=#{$gradient-type}, startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}');
}
}
@jeremyboggs
jeremyboggs / urlchooser.md
Created August 14, 2014 17:58
Key in each letter of the alphabet in address bar, see what URL the browser chooses first.

My results:

  • a - ach.org
  • b - blakearchive.org
  • c - codepen.io
  • d - docs.google.com
  • e - espn.go.com
  • f - flickr.com
  • g - google.com
  • h - html5boilerplate.com
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Intro to Forms</title>
<style type="text/css">
label {
display:block;

Research and Scholarship: Categories

Kind of Interaction

  • One-to-one (reference, consultation)
  • One-to-many (workshops, guides, online resources)
  • Many-to-many (events, conferences, networking)

Degree of Involvement or Investment

git config --global alias.amend 'commit -a --amend --no-edit'
@jeremyboggs
jeremyboggs / switch-theme.php
Last active August 29, 2015 13:57
Code to run on WP theme activation and deactivation.
<?php
/**
* On theme activation.
*/
function ivanhoe_after_switch_theme($theme_name) {
}
add_action('after_switch_theme', 'ivanhoe_after_switch_theme');
<?php
add_filter('locale', 'change_locale');
function change_locale($locale) {
if(isset($_GET['locale'])) {
$locale = $_GET['locale'];
}