I hereby claim:
- I am bbhoss on github.
- I am bbhoss (https://keybase.io/bbhoss) on keybase.
- I have a public key whose fingerprint is 4D8E F428 F96F A521 7A7D EF5B 01E6 E54A A5A8 67AB
To claim this, I am signing this object:
| require 'rubygems' | |
| require 'rack' | |
| def application(env) | |
| [200, {"Content-Type" => "text/html"}, ["Hello Rack!"]] | |
| end | |
| run method(:application) |
| #!/usr/bin/perl | |
| # | |
| # CDDL HEADER START | |
| # | |
| # The contents of this file are subject to the terms of the | |
| # Common Development and Distribution License (the "License"). | |
| # You may not use this file except in compliance with the License. | |
| # | |
| # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE | |
| # or http://www.opensolaris.org/os/licensing. |
| #!/usr/bin/env python | |
| # This file is part of Ansible | |
| # | |
| # Ansible is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. | |
| # | |
| # Ansible is distributed in the hope that it will be useful, | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| // DivisibleBy Active Pattern special syntax for defining named patterns that can partition data | |
| let (|DivisibleBy|_|) divisor i = | |
| if i % divisor = 0 then Some () else None | |
| // Use the pattern, easy. | |
| for i in 1..100 do | |
| match i with | |
| | DivisibleBy 3 & DivisibleBy 5 -> printfn "FizzBuzz" | |
| | DivisibleBy 3 -> printfn "Fizz" | |
| | DivisibleBy 5 -> printfn "Buzz" | |
| | _ -> printfn "%d" i |
| [Unit] | |
| Description=Mirth Connect Interface Engine | |
| After=network.target | |
| [Service] | |
| Type=forking | |
| User=mirth | |
| Group=mirth | |
| ExecStart=/opt/mirthconnect/mcservice start |
I hereby claim:
To claim this, I am signing this object:
| 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); | |
| } |
| 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') |
| 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) |
| module SidekiqIndexing | |
| module SearchableOverride | |
| extend ActiveSupport::Concern | |
| module InstanceOverrides | |
| def solr_index | |
| SunspotIndexer.perform_async(self.class.to_s, self.id) | |
| end | |
| end |