These are the Kickstarter Engineering and Data role definitions for both teams.
This file contains hidden or 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
| import CoreGraphics | |
| import Foundation | |
| import UIKit | |
| class GradientLabel : UILabel { | |
| let gradient: CGGradient! | |
| let alignedToSuperview: Bool! |
This file contains hidden or 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
| UIFont: family Thonburi | |
| UIFont: font Thonburi-Bold | |
| UIFont: font Thonburi | |
| UIFont: font Thonburi-Light | |
| UIFont: family Khmer Sangam MN | |
| UIFont: font KhmerSangamMN | |
| UIFont: family Snell Roundhand | |
| UIFont: font SnellRoundhand-Black | |
| UIFont: font SnellRoundhand-Bold | |
| UIFont: font SnellRoundhand |
This file contains hidden or 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
| // | |
| // UITextViewPlaceholder.swift | |
| // TextViewPlaceholder | |
| // | |
| // Copyright (c) 2017 Tijme Gommers <tijme@finnwea.com> | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights | |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
This file contains hidden or 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
| import Foundation | |
| // Compressing and decompressing a UUID to 22 characters via base64. | |
| // Works great as a Swift playground. These articles were helpful: | |
| // http://blog.codinghorror.com/equipping-our-ascii-armor/ | |
| // http://69.195.124.60/~jasondoh/2013/08/14/creating-a-short-guid-in-objective-c/ | |
| let identifier = NSUUID().uuidString | |
| let base64TailBuffer = "=" |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
| d,rank,ip,country | |
| idealmilf.com,108296,78.140.130.6,Netherlands | |
| skygals.com,415859,173.244.206.50,United States | |
| guardomogli.com,658261,104.28.30.26, | |
| sexy-streaming.com,117104,5.39.117.50,France | |
| beach-porn.net,576671,173.214.250.167,United States | |
| blackredtube.com,598818,88.208.0.196,United States | |
| pornotom.com,449107,104.27.129.76, | |
| pornflip.com,79500,199.101.134.20,United States | |
| sexynakeds.com,116152,159.122.99.163,Switzerland |
This file contains hidden or 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
| // | |
| // Storage.swift | |
| // | |
| // Created by Grigory Avdyushin on 30.06.16. | |
| // Copyright © 2016 Grigory Avdyushin. All rights reserved. | |
| // | |
| import UIKit | |
| import CoreData |
This file contains hidden or 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
| // | |
| // Storage.swift | |
| // | |
| // Created by Grigory Avdyushin on 30.06.16. | |
| // Copyright © 2016 Grigory Avdyushin. All rights reserved. | |
| // | |
| import UIKit | |
| import CoreData |
This file contains hidden or 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
| extension UIView{ | |
| func boundInside(superView: UIView){ | |
| self.translatesAutoresizingMaskIntoConstraints = false | |
| superView.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("H:|-0-[subview]-0-|", options: NSLayoutFormatOptions.DirectionLeadingToTrailing, metrics:nil, views:["subview":self])) | |
| superView.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("V:|-0-[subview]-0-|", options: NSLayoutFormatOptions.DirectionLeadingToTrailing, metrics:nil, views:["subview":self])) | |
| } |
This file contains hidden or 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
| console.log('Loading event'); | |
| var AWS = require('aws-sdk'); | |
| var dynamodb = new AWS.DynamoDB(); | |
| exports.handler = function(event, context) { | |
| console.log("Request received:\n", JSON.stringify(event)); | |
| console.log("Context received:\n", JSON.stringify(context)); | |
| var tableName = "OurBlogDemo"; | |
| var datetime = new Date().getTime().toString(); |