This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let cgContext:CGContextRef = CGBitmapContextCreate(nil, UInt(resolutionForExport.width), UInt(resolutionForExport.height), 8, 4*UInt(resolutionForExport.width), colorSpace, CGBitmapInfo.ByteOrderDefault|CGBitmapInfo(CGImageAlphaInfo.PremultipliedLast.rawValue)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// MainWindowController.swift | |
// Heartbeat | |
// | |
// Created by Aral Balkan on 07/02/2015. | |
// Copyright (c) 2015 Ind.ie. | |
// Released under the MIT license. | |
// | |
import Cocoa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Implementation of hash sieve algorithm that I read | |
# about at http://www.shamasis.net/2009/09/fast-algorithm-to-find-unique-items-in-javascript-array/ | |
# in CoffeeScript with slightly more literate code :) | |
# | |
Array.prototype.unique = -> | |
hashSieve = {} | |
arrayOfUniqueValues = []; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat .ssh/authorized_keys | grep aral@ | sshcommand acl-add dokku aral |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env coffee | |
fs = require 'fs' | |
# Get the file name that’s passed as the first argument | |
nameOfFile = process.argv.slice(2)[0] | |
# Read the file and convert it from bytes to a string | |
file = fs.readFileSync(nameOfFile).toString() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
<iframe id='map' width='100%' height='500px' frameBorder='0' src='https://a.tiles.mapbox.com/v3/laurakalbag.ie85aj18/attribution,zoompan,geocoder,share.html'></iframe> | |
<!-- This overlay is used to prevent Mapbox from breaking the scroll of the page on touch-enabled devices. --> | |
<div id="overlay" class="overlay" style="position: relative; width: 100%; height: 511px; margin-top:-511px;"> | |
<img src="" width: 100% height: 500px> | |
</div> | |
*/ | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 1D LED PONG | |
// Copyright (c) 2014 Aral Balkan. Released under the MIT License. | |
// | |
// Inspired by Jason Hotchkiss’s 1D Pong (hat-tip Seb Lee-Delisle) | |
// | |
// Video of working result: https://twitter.com/aral/status/450334281953722369 | |
// | |
// With knowledge gleamed from the Build Brighton Introduction to Arduino Workshop on 29th March, 2014. | |
// http://buildbrighton.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If the error you are getting when you type: | |
go run make.go | |
is along the lines of: | |
camlistore.org/third_party/code.google.com/p/rsc/fuse | |
# camlistore.org/third_party/code.google.com/p/rsc/fuse | |
clang: error: argument unused during compilation: '-fno-eliminate-unused-debug-types' | |
Error building main binaries: exit status 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# e.g. set up nginx task | |
module.exports = (grunt) -> | |
grunt.initConfig | |
nginx: | |
options: | |
config: '/usr/local/etc/nginx/nginx.conf' | |
# … | |
# Make sure we shut down the nginx server in case it’s running. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<svg width="201px" height="380px" viewBox="0 0 201 380" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"> | |
<title>indie-phone</title> | |
<description>Created with Sketch (http://www.bohemiancoding.com/sketch)</description> | |
<defs> | |
<path id="path-1" d="M-0.0291227715,378.94101 L199.872751,378.94101 L199.872751,22.9301112 C199.872751,22.9301112 202.32539,-0.0621634455 177.819211,-0.0621619269 C153.313032,-0.0621604084 18.8468331,-0.0621619269 18.8468331,-0.0621619269 C18.8468331,-0.0621619269 0.105729108,0.487780835 0.105728323,20.1962832 C0.105727868,39.9047856 -0.0291227715,378.94101 -0.0291227715,378.94101 Z"></path> | |
<mask id="mask-2" sketch:name="Path 1" fill="white"> | |
<use xlink:href="#path-1"></use> | |
</mask> | |
</defs> |