Skip to content

Instantly share code, notes, and snippets.

View qJake's full-sized avatar

Jake Burgy qJake

View GitHub Profile
@qJake
qJake / ocean-breeze.theme.json
Created September 6, 2019 05:51
HACC Theme: Ocean Breeze
{
"Page": {
"BackgroundColor": "rgb(135,186,237)",
"BackgroundImageUrl": null,
"BackgroundImageBlendMode": null,
"BackgroundGradient": "linear-gradient(30deg, rgba(135,186,237,1) 0%, rgba(162,219,254,1) 32%, rgba(161,255,221,1) 100%)",
"PageFontFace": "Roboto",
"PageFontWeight": "300",
"PageFontSize": "12px"
},
@qJake
qJake / packery.d.ts
Last active September 4, 2019 02:03
Packery Typings (TypeScript)
// Updated since the official one on NPM is extremely out of date
declare interface PackeryOptions
{
/**
* [itemSelector Specifies which child elements to be used as item elements. Setting itemSelector is always recommended. itemSelector is useful to exclude sizing elements]
* @type {string}
*/
itemSelector?: string;
@qJake
qJake / netflix-genre-codes.txt
Created February 3, 2017 23:38
Netflix Genre Codes
Use URL: http://www.netflix.com/browse/genre/________
Action & Adventure: 1365
Action Comedies: 43040
Action Sci-Fi & Fantasy: 1568
Action Thrillers: 43048
Adult Animation: 11881
Adventures: 7442
African Movies: 3761
Alien Sci-Fi: 3327
@qJake
qJake / flexbox-less-impl.less
Created June 10, 2016 16:50
Flexbox LESS Implementation / Wrapper
// --------------------------------------------------
// Flexbox LESS mixins
// Credit to: https://gist.github.com/jayj/ for the mixins
// --------------------------------------------------
// Flexbox display
// flex or inline-flex
.flex-display(@display: flex) {
display: ~"-webkit-@{display}";
display: ~"-moz-@{display}";