DocRipper 0.0.7 Release: .sketch files are now tap

Jul 14, 2016

Release Notes:

A brand-new version of DocRipper has been released to the wild. This will be the first release of several upcoming releases that will bring support for new file formats in DocRipper. The goal is to maintain a limited set of dependencies and where necessary only add dependencies that provide a high level of performance.

Notes

  1. *.sketch files are now supported! All text content (text labels, artboard labels and layer labels) are returned as a concatenated string. I've kept the parsing simple to avoid breaking changes and conform to the spirit of DocRipper's mission to simply grab text from files.

  2. *Cleans up module namespacing internally

Parsing Sketch Files

Extracting text from .sketch files proved to be an interesting excercise and required a couple of levels of digging into this proprietary format:

*Sketch files are sqlite3 databases Thanks to this SO question, I was able to read .sketch files using Ruby's sqlite3 adapter. Sketch files contain a single payload "blob" which requires additional parsing.

*Binary Plist The payload blob turns out to be binary plist which I was able to parse using CFPropertyList. The plist contains an array of objects that are parsed to build the sketch file. The array appears to contain flattened references with several objects (string, uuid, dictionary) sometimes describing a single "sketch" object. Finding text references was a matter of identifying the text objects in this array. I ultimately found that using a black list to remove non-text objects was the practical solution in this case. I could not identify a consistent "rule" or class identification for text labels in this object list. I hope to re-examine this approach in the future.

Find your PostgreSQL database Datestyle

Jun 20, 2016

Sometimes you need to find the expected format of dates in your PostgreSQL database. You can find the database's default style using your psql console:

Log into the postgresql console

psql

connect to your database

\connect your_database_name

interact...

Sublime RubyTest Shortcuts

Mar 09, 2016

Run entire Rspec File

CMD + SHIFT + T

Run specific test or block (where cursor is selected)

CMD + SHIFT + R

Encapsulation patterns in AngularJS

May 03, 2015

Providing public and private design patterns in Angular.js

The concept of Encapsulation is an important design pattern in most object-oriented programming designs. Determining which properties and methods should be accessible is a nice forcing function...

More >>