#Create bitbucket branch
##Create local branch
$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
master
* sync
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Three.js : WebGL Canvas Texture Text Example</title> | |
| <style type="text/css"> | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| } | |
| body { |
#Create bitbucket branch
##Create local branch
$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
master
* sync
| // | |
| // UIImage+Network.h | |
| // Fireside | |
| // | |
| // Created by Soroush Khanlou on 8/25/12. | |
| // | |
| // | |
| #import <UIKit/UIKit.h> |
| # (File moved to https://github.com/ole/Storyboard-Strings-Extraction) |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
| from flask import Flask | |
| from multiprocessing.pool import ThreadPool | |
| from time import sleep | |
| app = Flask(__name__) | |
| @app.before_first_request | |
| def initialize(): | |
| app.pool = ThreadPool(10) |
| public class ArrayDataSource<CellType: UIView, ItemType> { | |
| private var items: [ItemType] | |
| private var cellReuseIdentifier: String | |
| private var configureClosure: (CellType, ItemType) -> Void | |
| private var proxy: DataSourceProxy! | |
| private unowned var view: UIView | |
| public init(view: UIView, items: [ItemType], cellReuseIdentifier: String, configureClosure: (CellType, ItemType) -> Void) { | |
| self.items = items | |
| self.cellReuseIdentifier = cellReuseIdentifier |
| func unwrap<T1, T2>(optional1: T1?, optional2: T2?) -> (T1, T2)? { | |
| switch (optional1, optional2) { | |
| case let (.Some(value1), .Some(value2)): | |
| return (value1, value2) | |
| default: | |
| return nil | |
| } | |
| } | |
| func unwrap<T1, T2, T3>(optional1: T1?, optional2: T2?, optional3: T3?) -> (T1, T2, T3)? { |