I hereby claim:
- I am nagelflorian on github.
- I am floriannagel (https://keybase.io/floriannagel) on keybase.
- I have a public key ASAoYXjd0alXuujiaSse4qJAaUH0gd9U-THLKHqgcfrzQAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# Note – this is not a bash script (some of the steps require reboot) | |
# I named it .sh just so Github does correct syntax highlighting. | |
# | |
# This is also available as an AMI in us-east-1 (virginia): ami-cf5028a5 | |
# | |
# The CUDA part is mostly based on this excellent blog post: | |
# http://tleyden.github.io/blog/2014/10/25/cuda-6-dot-5-on-aws-gpu-instance-running-ubuntu-14-dot-04/ | |
# Install various packages | |
sudo apt-get update |
# AWS S3 bucket for static hosting | |
resource "aws_s3_bucket" "website" { | |
bucket = "${var.website_bucket_name}" | |
acl = "public-read" | |
tags { | |
Name = "Website" | |
Environment = "production" | |
} |
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 16, | |
// font family with optional fallbacks | |
fontFamily: '"Inconsolata for Powerline", Menlo, "DejaVu Sans Mono", "Lucida Console", monospace', | |
// terminal cursor background color (hex) | |
cursorColor: '#fff', |
machine: | |
node: | |
version: 0.10.40 | |
pre: | |
# download if meteor isn't already installed in the cache | |
- meteor || curl https://install.meteor.com | /bin/sh | |
post: | |
- meteor --version | |
checkout: |
=media-query($min, $max: "") | |
@if ($max == "") | |
@media (min-width: $min) | |
@content | |
@else | |
@media (min-width: $min) and (max-width: ($max - 1px)) | |
@content |
// Happy Numbers | |
// info: http://en.wikipedia.org/wiki/Happy_number | |
// by Florian Nagel | |
// floriannagel.net | |
import Foundation | |
func isHappyNumber(var number: Int) -> Bool { | |
var history = [Int]() | |
func strongestContrast(color: UIColor) -> UIColor { | |
let colorRef: CGColorRef = color.CGColor | |
let components = CGColorGetComponents(colorRef) | |
let relativeLuminance = 1 - (0.2126 * components[0] + 0.7152 * components[1] + 0.0722 * components[2]) | |
if (relativeLuminance >= 0.5) { | |
return UIColor.whiteColor() | |
} else { | |
return UIColor.blackColor() |