Skip to content

Instantly share code, notes, and snippets.

View tylersticka's full-sized avatar

Tyler Sticka tylersticka

View GitHub Profile
@tylersticka
tylersticka / styles.css
Created December 9, 2022 18:01
Mastodon Advanced View: Highlight Missing Alt Text
.media-gallery__item-thumbnail:has(img:not([alt])) {
position: relative;
}
.media-gallery__item-thumbnail:has(img:not([alt]))::after {
align-items: center;
background: rgb(191, 64, 64);
border-radius: 4px;
color: #fff;
content: 'No alt';
@tylersticka
tylersticka / times.js
Created August 4, 2015 23:42
Simple iteration helper for Handlebars
/**
* Iterate over a block a given number of times.
*
* Usage:
* <ul>
* {{#times 5}}<li>Item {{@index}}</li>{{/times}}
* </ul>
*/
var Handlebars = require('handlebars');
@tylersticka
tylersticka / moment.js
Last active August 29, 2015 14:22
Simple moment helper for Handlebars
/*
* Format a date using Moment.
* Usage: {{moment date format="MMMM YYYY"}}
*/
var Handlebars = require('handlebars'),
_ = require('lodash'),
moment = require('moment');
Handlebars.registerHelper('moment', function (context, block) {
@tylersticka
tylersticka / gulpfile.js
Created July 17, 2014 21:53
Simple Knockout template inclusion with Gulp
// include gulp + template plugin
var gulp = require('gulp');
var template = require('gulp-template');
// include the koTemplates module locally
var koTemplates = require('./koTemplates');
// create the 'templates' task
gulp.task('templates', function () {
// single-page app, so just pipe through index
gulp.src('./src/templates/index.html')
@tylersticka
tylersticka / gulpfile.js
Last active August 29, 2015 13:57
Example of bespoke Gulp task that includes Knockout templates
/**
* This project's actual gulpfile contains much more than this,
* but these are the relevant bits.
*/
// Node libraries
var fs = require('fs');
var path = require('path');
// Gulp + plugins
@tylersticka
tylersticka / chrome-webfont-fix.js
Last active August 29, 2015 13:57
Quick and dirty fix for Chrome 32/33 webfont issue.
/**
* Chrome 32/33 webfont issue fix.
* Requires jQuery.
* More info: http://blog.cloudfour.com/chrome-webfont-issues/
*/
(function($, window){
// only proceed if this is Chrome
if (window.navigator.userAgent.indexOf('Chrome') === -1) return;
// only proceed if the version is 32 or greater
@tylersticka
tylersticka / .profile
Last active August 29, 2015 13:56
Helpful Pattern Lab aliases for your bash profile.
alias plbuild="php core/builder.php -gc" # Pattern Lab: Build/Clean
alias plwatch="php core/builder.php -rw" # Pattern Lab: Watch/Sync
@tylersticka
tylersticka / scrollable.scss
Created July 19, 2013 22:03
A class I sometimes use in my SASS/SCSS projects to add native-style scrolling to a fixed container in mobile or hybrid-mobile web apps.
// Native scrolling (iOS 5+, Android 4+)
.scrollable {
overflow: auto; // Fallback for non-touch browsers
-webkit-overflow-scrolling: touch; // Native-esque scrolling on touch-enabled webkit
// Everything below here improves performance of scrolling. You can omit this at
// first and add as your content becomes more complex and performance needs a boost.
&, > * {
-webkit-backface-visibility: hidden;
/**
* fitvids.js is awesome but kind of dependent on pretty
* ideal and predictable markup. Unfortunately, a lot of
* services and sites seem to break it.
*
* This is a dirtier but more forgiving spin on the same
* idea. It is probably worse, but it works.
*
* https://gist.github.com/tylersticka/5967626
*/
@tylersticka
tylersticka / ko.bindingHandlers.transitionEnd.js
Created May 3, 2013 04:06
Rough transitionEnd binding for Knockout
/*
* Sample usage:
* <div data-bind="transitionEnd: modelMethod"></div>
*
* Issues:
* - Webkit-only event name
* - Fires multiple times when multiple properties are transitioned
*/
ko.bindingHandlers.transitionEnd = {
init: function (element, valueAccessor) {