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
The hydraulic model of Freud, in which psychic pressure builds up in the mind and can burst out unless | |
it's channeled into appropriate pathways is just false. The mind doesn't work by fluid under pressure | |
or by flows of energy; it works by information. | |
-- Steven Pinker - http://www.edge.org/3rd_culture/pinker/pinker_p2.html |
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
- |
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
sudo mv /Applications/iTunes.app/Contents/MacOS/iTunes /Applications/iTunes.app/Contents/MacOS/iTunesX | |
sudo touch iTunes | |
sudo chmod 777 iTunes | |
sudo echo "open /Applications/Rdio.app" > /Applications/iTunes.app/Contents/MacOS/iTunes |
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
class Player | |
def play_turn(warrior) | |
@health = 0 if warrior.feel.empty? && @health == -1 | |
shootableEnemy = false | |
@pivoted = false | |
warrior.look.each do |space| | |
shootableEnemy |= space.enemy? | |
end | |
if !warrior.feel.enemy? && warrior.look.last.enemy? |
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
// | |
// native.m | |
// yolo | |
// | |
// Created by Soheil Yasrebi on 4/1/15. | |
// Copyright (c) 2015 Facebook. All rights reserved. | |
// | |
#import "RCTBridge.h" | |
#import "RCTBridgeModule.h" |
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
this.watchID = navigator.geolocation.watchPosition((lastPosition) => { | |
var native = require('NativeModules').Native; | |
native.locationFromLatitude(lastPosition.coords.latitude, lastPosition.coords.longitude) | |
}); | |
var subscription = require('RCTDeviceEventEmitter').addListener( | |
'LocationInfo', | |
(location) => console.log(location.cityName) | |
); |
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
var yolo = React.createClass({ | |
getInitialState: function() { | |
return { | |
selectedTab: 1, | |
notifCount: 0, | |
presses: 0, | |
} | |
}, | |
_renderContentWithNavigation: function(component, rightButtonTitle) { |
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
- (void)statusBarSize | |
{ | |
RCT_EXPORT(); | |
CGRect statusBarFrame = [[UIApplication sharedApplication] statusBarFrame]; | |
[self.bridge.eventDispatcher sendDeviceEventWithName:@"statusBarSize" | |
body:@{@"width": [NSString stringWithFormat:@"%f",statusBarFrame.size.width], | |
@"height": [NSString stringWithFormat:@"%f",statusBarFrame.size.height]}]; | |
} |
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
this.intervalID = this.setInterval(function(){ | |
require('NativeModules').Native.statusBarSize(); | |
}, 700) | |
var subscription = require('RCTDeviceEventEmitter').addListener( | |
'statusBarSize', | |
(size) => { | |
this.setState({statusBarHeight: size.height}) | |
} | |
); |
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
'use strict'; | |
var React = require('react-native'); | |
var { | |
AppRegistry, | |
Image, | |
ListView, | |
TouchableHighlight, | |
NavigatorIOS, | |
Text, |
OlderNewer