A piece of software that acts as an Airplay receiver for your iOS device. Formerly known as Reflection.app. Beware though: does not work with iPhones prior to the iPhone4S and iPads prior to the iPad2. Reflector.app – AirPlay mirroring to your Mac or PC, wirelessly →
Author Archives: Bramus!
Trello – Your entire project, in a single glance
A must have tool if you’re working together with others on projects. Works like a charm: organizes your cards (along with a description, checklists, and comments) in the (customizable) todo–doing–done columns, assign people and labels to it, etc. Above that it’s free and iOS/Android apps are available too. Trello → (via Small Town Heroes when …
Continue reading “Trello – Your entire project, in a single glance”
Responsive Typography using Face Detection
Typesetting based upon your distance to your screen. Clever use of WebRTC’s getUserMedia and JavaScript Face Detection In case you don’t have a capable browser, this is what it looks like: Responsive Typography: Breakpoints Demo → Responsive Typography: Realtime Demo → (via Jeremy) Related: headtrackr →
Do responsive websites outperform their non-mobile-optimized brethren?
We took a popular ecommerce store (O’Neill Clothing) that we’d recently redesigned and monitored conversions, transactions and revenue for three weeks. Then we quietly deployed the responsive conditions to the already live site and monitored for another three weeks. In case you ever need present some numbers to one of your colleagues in order to …
Continue reading “Do responsive websites outperform their non-mobile-optimized brethren?”
Find Your Way to Oz
“Find Your Way to Oz” is a new Google Chrome Experiment brought to the web by Disney. It allows you to take an interactive journey through a Kansas circus, which leads you to the land of Oz after you are swept up by a massive storm. Find Your Way to Oz → “Find Your Way …
When CCIEs get bored
node-orm2 — Node.js Object Relational Mapping
ORM Package for Node.js. Works with MySQL, PostgreSQL and SQLite. var orm = require(‘orm’); orm.connect("mysql://username:password@host/database", function (err, db) { if (err) throw err; var Person = db.define(‘person’, { name : String, surname : String, age : Number, male : Boolean, continent : [ ‘Europe’, ‘America’, ‘Asia’, ‘Africa’, ‘Australia’, ‘Antartica’ ], // ENUM type photo : …
Continue reading “node-orm2 — Node.js Object Relational Mapping”
Unpretentiousil
Sublime Text Markdown Syntax Highlighting
Instructions for use with SublimeText3 in the comments below One of the features I find lacking in Sublime Text is the default support for Markdown syntax highlighting. Fortunately Sublime Text can be customized and we can define a color scheme of our own. To get the results as shown in the screenshot above, edit your …
Continue reading “Sublime Text Markdown Syntax Highlighting”
OS X hardlink
UPDATE 2013.02.09: Via the comments I’ve come to know that it is possible with ln after all as long as you don’t combine a tilde (˜) and quotes in the source path (which I did because some of my folders have spaces in their name). Just escape any spaces with a \ and the tilde …