LR/Instagram is an unofficial publish plugin for Lightroom, allowing you to post photos directly to your Instagram account. Simply install the plugin, add new service in Lightroom Publishing Manager and authenticate with your Instagram account. LR/Instagram – Lightroom Publish Plugin for Instagram →
Category Archives: Elsewhere
Typography for User Interfaces
Viljami Salminen: Since my early days in the industry, I’ve grown to love type and all the little nuances that go into setting it. In this article, I want to share some of the fundamentals that I’ve learned, and hopefully help you get better at setting type for user interfaces. Typography for User Interfaces (Article) …
Spoiled.io – Game Of Thrones Spoilers as a Service
Mediaqueryless Responsiveness
Slides of the – highly entertaining – talk @Vasilis gave at CSS Day 2016 in which he elaborated on a few techniques he experimented with in order to get responsive-like sites without using any media queries. Some neat tricks include: Calling it “active whitespace” instead of floats getting stacked up 😛 Setting a unit-ed value …
CSS for Software Engineers for CSS Developers
The New Google Fonts
The new Google Fonts makes it easier than ever to browse our collection of open source designer fonts and learn more about the people who make them. Using the Material Design framework, we created a design that scales across different screen sizes and devices, and updated the entire look and feel of the site, from …
Stress test your design with forceFeed.js
Fun script by Heydon Pickering, whom you might know from the lobotmized owl selector, and quantity queries with CSS. Static mockups are liars. They only show the designer’s content. The forceFeed.js script is designed to help you test your design’s tolerance for variable, dynamic content. A tiny script that “force feeds” HTML elements with random …
Continue reading “Stress test your design with forceFeed.js”
From Coffeescript to ES6 ES2015
At work we used write most of JavaScript in Coffeescript. Used to. In our most recent projects we now write ES6 (in combination with Babel). In the transition from Coffeescript to ES6, I found these resources helpful: Moving to ES6 from CoffeeScript → CoffeeScript equivalents in ECMAScript6/ES2015 → Decaffeinate: CoffeeScript in, ES6 out → Decaffeinate …
audio-effects – Create Audio Effects Using the Web Audio API
Great stuff by Sam Bellen, in which me mimics the effect-pedals for guitars: Audio-effects is a JavaScript library to create audio effects using the Web Audio API. This library contains the Volume, Distortion, Delay, Flanger, Reverb, and Tremolo effects He recently gave a talk about this at JSConf Budapest 2016 and at a local Fronteers …
Continue reading “audio-effects – Create Audio Effects Using the Web Audio API”
Getting Started with Redux
Managing state in an application is critical, and is often done haphazardly. Redux provides a state container for JavaScript applications that will help your applications behave consistently. Redux is an evolution of the ideas presented by Facebook’s Flux, avoiding the complexity found in Flux by looking to how applications are built with the Elm language. …