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
| ~ ➔ sudo dtrace -l -n "ruby*:::" | |
| Password: | |
| ID PROVIDER MODULE FUNCTION NAME | |
| 179470 ruby16991 mymod myfn probe | |
| ~ ➔ sudo dtrace -l -n "ruby*:::" | |
| ID PROVIDER MODULE FUNCTION NAME | |
| dtrace: failed to match ruby*:::: No probe matches description | |
| ~ ➔ sudo dtrace -l -n "ruby*:::" | |
| ID PROVIDER MODULE FUNCTION NAME | |
| 1074 ruby16991 mymod myfn probe |
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
| package 'rubygem19-gpgme' do | |
| action :nothing | |
| end.run_action(:upgrade) | |
| Gem.clear_paths | |
| require 'gpgme' |
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
| ~ ➔ ruby -v | |
| ruby 1.8.7 (2010-01-10 patchlevel 249) [universal-darwin11.0] | |
| ~ ➔ sudo gem install twitter | |
| Password: | |
| Successfully installed faraday-0.8.0 | |
| Successfully installed multi_json-1.3.4 | |
| Successfully installed simple_oauth-0.1.7 | |
| Successfully installed twitter-2.2.6 | |
| 4 gems installed | |
| Installing ri documentation for faraday-0.8.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
| ~/Beeb/mmb_utils ➔ ./beeb dinfo 300 | |
| Catalogue for Disk 300: UTILS | |
| Disk title: UTILS (92) Disk size: &320 - 200K | |
| Boot Option: 0 (None) File count: 15 | |
| Filename: Lck Lo.add Ex.add Length Sct | |
| $.COP114 002000 002000 001200 18E | |
| $.FFIND FF1900 FF80E7 0008B1 185 | |
| $.COP113 002000 002000 001200 173 | |
| $.COP112 002000 002000 000F00 164 |
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
| [core] | |
| repositoryformatversion = 0 | |
| filemode = true | |
| bare = false | |
| logallrefupdates = true | |
| ignorecase = true | |
| [remote "origin"] | |
| fetch = +refs/heads/*:refs/remotes/origin/* | |
| url = https://github.com/peterson/zeus-api.git | |
| [branch "master"] |
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
| *default host=ftp3.uk.freebsd.org | |
| *default base=/var/db | |
| *default prefix=/usr | |
| *default release=cvs tag=RELENG_9_0 | |
| *default delete use-rel-suffix | |
| *default compress | |
| src-all |
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
| commit 679d6bbabea9c47cdaad0796b3b2d501a56463bf | |
| Author: Chris Andrews <chris@nodnol.org> | |
| Date: Mon Jan 23 18:33:06 2012 +0000 | |
| Specs for APR and Ganglia. | |
| This is ridiculous. Ganglia actually depends on APR 1.4, for | |
| the threadsafe poll routines on Linux 2.6, but only expresses | |
| a dependency on 1.x - Centos 5 ships 1.2, which doesn't work. | |
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
| int strerror_r(int errnum, char *buf, size_t buflen); | |
| /* XSI-compliant */ | |
| char *strerror_r(int errnum, char *buf, size_t buflen); | |
| /* GNU-specific */ | |
| Feature Test Macro Requirements for glibc (see feature_test_macros(7)): | |
| The XSI-compliant version of strerror_r() is provided if: |
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 -urN carbon-0.9.9/lib/carbon/protocols.py carbon-0.9.9-logpatch/lib/carbon/protocols.py | |
| --- carbon-0.9.9/lib/carbon/protocols.py 2011-10-05 10:28:41.000000000 +0100 | |
| +++ carbon-0.9.9-logpatch/lib/carbon/protocols.py 2012-02-20 09:40:37.058970858 +0000 | |
| @@ -13,7 +13,6 @@ | |
| """ | |
| def connectionMade(self): | |
| self.peerName = self.getPeerName() | |
| - log.listener("%s connection with %s established" % (self.__class__.__name__, self.peerName)) | |
| if state.metricReceiversPaused: |
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
| ~ ➔ sudo dtrace -Z -n 'TestApp*:::' | |
| dtrace: description 'TestApp*:::' matched 12 probes | |
| CPU ID FUNCTION:NAME | |
| 1 152110 func:getechoname100-start | |
| 1 152112 func:getechoname100-parseAccept-start | |
| 1 152113 func:getechoname100-parseAccept-done | |
| 1 152114 func:getechoname100-parseAuthorization-start | |
| 1 152115 func:getechoname100-parseAuthorization-done | |
| 1 152116 func:getechoname100-parseQueryString-start | |
| 1 152117 func:getechoname100-parseQueryString-done |