This an ordered version of the original gist located at https://gist.github.com/marcanuy/06cb00bc36033cd12875
- -aa
- aa-
- -ab
This an ordered version of the original gist located at https://gist.github.com/marcanuy/06cb00bc36033cd12875
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# Install RVM With Ruby | |
\curl -sSL https://get.rvm.io | bash -s stable --ruby | |
# Install Ruby 2.3.0 | |
rvm install 2.3.0 | |
rvm gemset create cpmx |
// YourProject-Bridging-Header.h | |
#import <FacebookSDK/FacebookSDK.h> | |
// AppDelegate.swift | |
import UIKit | |
@UIApplicationMain | |
class AppDelegate: UIResponder, UIApplicationDelegate { | |
. |
import UIKit | |
@UIApplicationMain | |
class AppDelegate: UIResponder, UIApplicationDelegate { | |
. | |
. | |
. | |
func application(application: UIApplication, openURL url: NSURL, sourceApplication: NSString?, annotation: AnyObject) -> Bool { |
module foo | |
( | |
input In, | |
input Reset, | |
input Clock, | |
input Set, | |
output reg D); | |
always @(posedge CLK) | |
begin |