Skip to content

Instantly share code, notes, and snippets.

View soheil-zz's full-sized avatar

Soheil soheil-zz

  • Loverino
  • San Francisco, CA
View GitHub Profile
@soheil-zz
soheil-zz / gist:4063639
Created November 13, 2012 02:37
Pinker Might be Right
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
@soheil-zz
soheil-zz / gist:5327922
Created April 6, 2013 22:32
Drones are so easy to make that other countries will also militarize them soon, no reason not talk about it. Instead of anti-CIA rhetoric (btw, no mention of Obama) NYT should've been talking about how US (Obama) set the presidence on militarization of drones.
-
@soheil-zz
soheil-zz / gist:5446167
Created April 23, 2013 18:35
Just run this in your terminal.
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
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?
//
// 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.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)
);
var yolo = React.createClass({
getInitialState: function() {
return {
selectedTab: 1,
notifCount: 0,
presses: 0,
}
},
_renderContentWithNavigation: function(component, rightButtonTitle) {
- (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.intervalID = this.setInterval(function(){
require('NativeModules').Native.statusBarSize();
}, 700)
var subscription = require('RCTDeviceEventEmitter').addListener(
'statusBarSize',
(size) => {
this.setState({statusBarHeight: size.height})
}
);
'use strict';
var React = require('react-native');
var {
AppRegistry,
Image,
ListView,
TouchableHighlight,
NavigatorIOS,
Text,