This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
NOTE I'm trying to find the most optimal fav/touch icon setup for my use-cases. Nothing new here. Read Mathias Bynens' articles on re-shortcut-icon and touch icons, a FAQ or a Cheat Sheet for all the details.
I'd like to hear how you approach this: @valuedstandards or comment on this gist.
You have to include a boatload of link
elements pointing to many different images to provide (mobile) devices with a 'favicon' or 'touch icon':
var gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
var livereload = require('gulp-livereload'); | |
var prefix = require('gulp-autoprefixer'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var runSequence = require('run-sequence'); | |
gulp.task('sass', function () { | |
gulp.src('./assets/css/*.scss') | |
.pipe(sourcemaps.init()) |
require 'net/http' | |
require 'json' | |
require 'uri' | |
@token = '' | |
def list_files | |
ts_to = (Time.now - 30 * 24 * 60 * 60).to_i # 30 days ago | |
params = { | |
token: @token, |
# Usage: | |
# | |
# Add worker(LogDNA.BatchLogger, []) to your application supervision tree. | |
# Add Mojito to your mix deps (or replace with HTTPoison or another HTTP library) | |
# | |
# Call LogDNA.BatchLogger.{debug / info / warn / error} to send logs to LogDNA | |
defmodule LogDNA do | |
require Logger | |
@url "https://logs.logdna.com/logs/ingest" |