Skip to content

Instantly share code, notes, and snippets.

View kennedysgarage's full-sized avatar

Kennedy kennedysgarage

View GitHub Profile
@kennedysgarage
kennedysgarage / Favicon
Last active September 19, 2019 01:04
Favicon
<!-- Apple -->
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
/* ========================================================= Grid ===*/
/* Raster v6 (rsms.me/raster) */
:root {
--fontSize: 12px;
--lineHeight: calc(var(--fontSize)*1.5);
--baseline: calc(var(--lineHeight)/2);
--blockSpacingTop: 0px;
--blockSpacingBottom: calc(var(--lineHeight)*1);
--hrThickness: 2px;
On Thursday June 9th, 2016 @ 1:00pm while sitting in the UX Room I ran `ping 8.8.8.8` in Terminal on my MacBook Pro for a little more than 5 minuntes. Here are the results:
Last login: Thu Jun 9 11:25:54 on ttys000
Christophers-MacBook-Pro-2:~ kennedy$ ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8): 56 data bytes
64 bytes from 8.8.8.8: icmp_seq=0 ttl=60 time=2.462 ms
64 bytes from 8.8.8.8: icmp_seq=1 ttl=60 time=7.319 ms
64 bytes from 8.8.8.8: icmp_seq=2 ttl=60 time=3.010 ms
64 bytes from 8.8.8.8: icmp_seq=3 ttl=60 time=4.850 ms
64 bytes from 8.8.8.8: icmp_seq=4 ttl=60 time=2.324 ms
Marketing, Social Media, and/or PR
Technology - IT Products and Services
Technology - Software Development
Financial Services and Insurance
Media and Entertainment
Art, Fashion, and Design
Business Consulting
Aerospace and Defense
Real Estate
Non-Profit/Causes
@kennedysgarage
kennedysgarage / List
Created May 24, 2016 17:39
U.S. Bureau of Labor Statistics Industries
Accommodation
Accommodation and Food Services
Administrative and Support Services
Administrative and Support and Waste Management and Remediation Services
Agriculture, Forestry, Fishing and Hunting
Air Transportation
Ambulatory Health Care Services
Amusement, Gambling, and Recreation Industries
Animal Production
Apparel Manufacturing
@kennedysgarage
kennedysgarage / gist:7744230
Created December 2, 2013 02:47
Delete a lot of git files at once.
git rm $(git ls-files --deleted)
@kennedysgarage
kennedysgarage / gist:7741384
Created December 1, 2013 21:58
Git rename file extension
for i in *.php; do git mv "$i" "${i/.php}".html; done
c() { cd ~/code/$1; }
_c() { _files -W ~/code -/; }
compdef _c c
<% if user_signed_in? %>
<div id="feedback">
<h5><i class="ss-icon">&#x1F4AC;</i> How can we make Status Chart better for you?</h5>
<%= form_tag("/feedback", :method => "post", :remote => true, :id => "feedbackForm", :name => "feedbackForm") do %>
<textarea placeholder="We would love to hear your feedback, ideas, and complaints :)" name="feedback_note"></textarea>
<input type="hidden" value="" name="feedback_browser">
<input type="hidden" value="" name="feedback_version">
<input type="hidden" value="" name="feedback_os">
<input type="hidden" value="" name="feedback_url">
<input type="hidden" value="<%=current_user.email%>" name="feedback_email">