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
| ➜ mono git:(master) ✗ make | |
| (CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /Volumes/3TB_OSX/Users/Josh/Projects/mono/missing autoheader) | |
| rm -f stamp-h1 | |
| touch config.h.in | |
| cd . && /bin/sh ./config.status config.h | |
| config.status: creating config.h | |
| config.status: config.h is unchanged | |
| Git submodules updated successfully | |
| /Applications/Xcode.app/Contents/Developer/usr/bin/make all-recursive | |
| Making all in po |
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 five = require("johnny-five"); | |
| var board = new five.Board(); | |
| var stdin = process.stdin; | |
| stdin.setRawMode(true); | |
| stdin.resume(); | |
| board.on("ready", function () { | |
| var wheels = { | |
| frontLeft: new five.Servo({ pin: 4, type: 'continuous' }), |
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
| <% | |
| require 'cgi' | |
| require 'uri' | |
| begin | |
| uri = URI.parse(Rails.configuration.read_db_url) | |
| rescue URI::InvalidURIError | |
| uri = URI.parse(Rails.configuration.master_db_url) | |
| rescue URI::InvalidURIError | |
| raise "Unable to set the read database url" |
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
| 14:06:04 worker_sunspot.1 | 2015-05-11T18:06:04.008Z 56712 TID-oumuuj9is WARN: /Users/Josh/.rbenv/versions/2.1.4/lib/ruby/gems/2.1.0/gems/activerecord-4.1.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `checkout_new_connection' | |
| 14:06:04 worker_sunspot.1 | /Users/Josh/.rbenv/versions/2.1.4/lib/ruby/gems/2.1.0/gems/activerecord-4.1.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:416:in `acquire_connection' | |
| 14:06:04 worker_sunspot.1 | /Users/Josh/.rbenv/versions/2.1.4/lib/ruby/gems/2.1.0/gems/activerecord-4.1.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:351:in `block in checkout' | |
| 14:06:04 worker_sunspot.1 | /Users/Josh/.rbenv/versions/2.1.4/lib/ruby/2.1.0/monitor.rb:211:in `mon_synchronize' | |
| 14:06:04 worker_sunspot.1 | /Users/Josh/.rbenv/versions/2.1.4/lib/ruby/gems/2.1.0/gems/activerecord-4.1.5/lib/active_record/connection_adapters/abstract/connection_pool.rb:350:in `c |
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
| ➜ src git:(master) make -f makefile.osx | |
| /bin/sh ../share/genbuild.sh obj/build.h | |
| llvm-g++ -g -msse2 -Wall -Wextra -Wformat -Wno-ignored-qualifiers -Wformat-security -Wno-unused-parameter -DMAC_OSX -DMSG_NOSIGNAL=0 -DBOOST_SPIRIT_THREADSAFE -DUSE_UPNP=1 -I/Users/Josh/development/Gridcoin-Research/src/leveldb/include -I/Users/Josh/development/Gridcoin-Research/src/leveldb/helpers -DHAVE_BUILD_INFO -I"/Users/Josh/development/Gridcoin-Research/src" -I"/Users/Josh/development/Gridcoin-Research/src"/obj -I"/opt/local/include" -I"/opt/local/include/db48" -o gridcoinresearchd -L"/opt/local/lib" -L"/opt/local/lib/db48" obj/alert.o obj/version.o obj/checkpoints.o obj/netbase.o obj/addrman.o obj/crypter.o obj/key.o obj/db.o obj/init.o obj/irc.o obj/keystore.o obj/main.o obj/miner.o obj/net.o obj/protocol.o obj/bitcoinrpc.o obj/rpcdump.o obj/rpcnet.o obj/rpcmining.o obj/rpcwallet.o obj/rpcblockchain.o obj/rpcrawtransaction.o obj/script.o obj/sync.o obj/util.o obj/wallet.o obj/walletdb.o obj/noui.o obj/pbkdf2.o obj/kern |
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
| /* AMX Mod script. | |
| * | |
| * (c) 2003, [?]Mother | |
| * | |
| * Based on code by Djey, JustinHoMi, and RAV | |
| * | |
| * This file is provided as is (no warranties). | |
| * | |
| * This AMX plugin requires MySQL module. | |
| * |
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
| Process: 7DaysToDie [29993] | |
| Path: /Users/USER/Library/Application Support/Steam/*/7DaysToDie.app/Contents/MacOS/7DaysToDie | |
| Identifier: unity.The Fun Pimps.7 Days To Die | |
| Version: Unity Player version 5.3.3p3 (5.3.3p3) | |
| Code Type: X86-64 (Native) | |
| Parent Process: ??? [1] | |
| Responsible: 7DaysToDie [29993] | |
| User ID: 501 | |
| Date/Time: 2016-04-06 12:04:31.566 -0400 |
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
| class Instrument | |
| class << self | |
| attr_reader :instrumental_agent | |
| def time(metric, *args, &block) | |
| instrumental_agent.time(metric, *args, &block) | |
| end | |
| def increment(metric, *args) | |
| instrumental_agent.increment(metric, *args) |
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
| #!/usr/bin/env ruby | |
| # Configure the below | |
| process_name = 'VTDecoderXPCService' | |
| cpu_percentage = 10 | |
| raise 'Must run as root' unless Process.uid == 0 | |
| restricted_pids = [] | |
| throttle_pids = [] |
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
| [maxscale] | |
| threads=1 | |
| [server1] | |
| type=server | |
| address=ip.address | |
| port=3306 | |
| protocol=MySQLBackend | |
| [MySQL Monitor] |