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
calcBMI :: Float -> Float -> Float | |
calcBMI heightIn weightLbs = (weightLbs*703)/heightIn^2 | |
promptFloat :: String -> IO Float | |
promptFloat question = do | |
putStrLn question | |
return =<< readLn | |
main = do | |
weight <- promptFloat "What is your weight in pounds?" | |
height <- promptFloat "What is your height in inches?" | |
putStrLn ("Your weight is " ++ show weight ++ "lbs. and your height is " ++ show height ++ "in.") |
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
bash -c ' | |
if [ ! -f /usr/bin/chef-client ]; then | |
apt-get update | |
apt-get -y upgrade | |
apt-get install -y build-essential wget zlib1g-dev libssl-dev libffi-dev libncurses-dev libreadline-dev libyaml-dev libffi6 libssl0.9.8 | |
wget https://s3.amazonaws.com/dev.ops/ruby-1.9.3-p194-perf_without_psych_no_warnings_amd64.deb | |
dpkg -i ruby-1.9.3-p194-perf_without_psych_no_warnings_amd64.deb | |
wget http://production.cf.rubygems.org/rubygems/rubygems-1.8.23.tgz |
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
#define CONSERVATIVE | |
int ioPin = 3; | |
#define BUFSIZE 200 | |
unsigned char buf[BUFSIZE]; | |
#define pullLow() pinMode(ioPin, OUTPUT) | |
#define pullHigh() pinMode(ioPin, INPUT) | |
unsigned char dbits[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0}; |
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
# MIT License | |
class Interfaxer | |
include HTTParty | |
base_uri "https://rest.interfax.net" | |
headers 'Content-Type' => 'application/pdf' | |
def initialize(username, password) | |
self.class.basic_auth(username, password) | |
end |
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
// ==UserScript== | |
// @name Reddit Enhancement Suite | |
// @namespace http://reddit.honestbleeps.com/ | |
// @description A suite of tools to enhance reddit... | |
// @copyright 2010-2012, Steve Sobel (http://redditenhancementsuite.com/) | |
// @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html/ | |
// @author honestbleeps | |
// @include http://redditenhancementsuite.com/* | |
// @include http://reddit.honestbleeps.com/* | |
// @include http://reddit.com/* |
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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Version: SKS 1.1.0 | |
mQINBFITwD0BEADDnv+kGFTrmZ8Heilnup+zXF/xjpbBMQ4F7QdyQma0MVPHle0IOTB/WzPD | |
0hIjAiQCBWlqECbB8wSs2gFdJqBH9IVj0lQkyc14UB+MwgfGYJ8zjlmj8d9/ajNV6Lm0VOb8 | |
aZWMoqIZ+KwwuRwORcUoy8JYyRnHiD19B9ns//+QvVB9VxowcQtANOMkgjt4Awy71YuXqQho | |
JZlzzQX2RU+P58tZYzkiFniIwqUbjVLZ43dm9HcUImc0KR6cH5Dxd1hV3hFmaleG8LMRsXAF | |
IUdMXWjEIddxniL3iXqLU6scbV+2GKtVEv5HIIKCB/bZJoQ6hijs4TaR18gvnN2CqAoq46A/ | |
jpguuXk5pJvFiotBmnBRbPC3mTcA8mMKX9V61hgM7hsZ2tr7kqmA5H0KmXTNYYG1/Ncd1iRa | |
DrIYTKJTAAb6G+SAQrHs2E3zRjNxgXlgaPvk8J1O0KXR3aY3WRt/qAfQLlrCS6BGP6JML5No |
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
module SidekiqIndexing | |
module SearchableOverride | |
extend ActiveSupport::Concern | |
module InstanceOverrides | |
def solr_index | |
SunspotIndexer.perform_async(self.class.to_s, self.id) | |
end | |
end |
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
diff --git a/tools/gyp/pylib/gyp/xcode_emulation.py b/tools/gyp/pylib/gyp/xcode_emulation.py | |
index 806f92b..5256856 100644 | |
--- a/tools/gyp/pylib/gyp/xcode_emulation.py | |
+++ b/tools/gyp/pylib/gyp/xcode_emulation.py | |
@@ -224,8 +224,7 @@ class XcodeSettings(object): | |
def _GetSdkVersionInfoItem(self, sdk, infoitem): | |
job = subprocess.Popen(['xcodebuild', '-version', '-sdk', sdk, infoitem], | |
- stdout=subprocess.PIPE, | |
- stderr=subprocess.STDOUT) |
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
diff --git a/tools/gyp/pylib/gyp/xcode_emulation.py b/tools/gyp/pylib/gyp/xcode_emulation.py | |
index f9cec33..4b3c035 100644 | |
--- a/tools/gyp/pylib/gyp/xcode_emulation.py | |
+++ b/tools/gyp/pylib/gyp/xcode_emulation.py | |
@@ -285,8 +285,14 @@ class XcodeSettings(object): | |
if sdk_root.startswith('/'): | |
return sdk_root | |
if sdk_root not in XcodeSettings._sdk_path_cache: | |
- XcodeSettings._sdk_path_cache[sdk_root] = self._GetSdkVersionInfoItem( | |
- sdk_root, 'Path') |
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
var autoPokerIndex = null; | |
var autoPoke = function() { | |
// LOL, do you even DOM bro? | |
document.evaluate('//*[text()="Poke Back"]', document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE).snapshotItem(0).click(); | |
} | |
var startAutoPoker = function() { | |
autoPokerIndex = setInterval(autoPoke, 2000); | |
} |