Skip to content

Instantly share code, notes, and snippets.

View trey's full-sized avatar
🐢
Slow and steady

Trey Piepmeier trey

🐢
Slow and steady
View GitHub Profile
@trey
trey / a11y.md
Last active March 22, 2018 20:33
A C C E S S I B I L I T Y
  1 2 3 4 5 6 7 8 9 10 11  
@trey
trey / counter.markdown
Created December 20, 2017 19:54
Counter
@trey
trey / crop-factor.markdown
Last active January 15, 2019 03:21
Crop Factor
@trey
trey / Howto.md
Last active January 7, 2017 17:10
What I used to use to scrape APOD for my Tumblr mirror. This is outdated, but I'm keeping it here for the sake of its history.

Set up a recurring task to run this script every morning at 3am:

crontab -e
0 3 * * *  ~/bin/common/apod
@trey
trey / Wishlist.md
Created June 12, 2016 19:35
Abridged Comics Wishlist
@trey
trey / find-in-js-array.md
Created April 12, 2016 21:43
Find an object by a value in a JavaScript array.
var optionList = [
    {
        'label': 'HTML',
        'value': 'html'
    },
    {
        'label': 'Plain Text',
        'value': 'plaintext'
 }
@trey
trey / jsx-conditional-block.md
Last active September 15, 2016 02:06
Conditional Blocks in JSX
return (
  <div className="wrapper"
    {(this.state.corbin) ?
        <h1>I am a meat popsicle.</h1>
    : null}
  </div>
);
@trey
trey / film-journal-template.txt
Created January 24, 2016 01:32
Film Journal Template
Ref (roll #)
Film / Format / ISO
Date Loaded
Date Unloaded
Location(s)
Camera
Notes
[Line items for each exposure]
@trey
trey / truncate-in-css.md
Last active September 15, 2016 02:06
Truncate a String in CSS

Truncate a String in CSS

.whatever {
  max-width: [?]px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; /* optional */
}