I hereby claim:
- I am mistydemeo on github.
- I am mistydemeo (https://keybase.io/mistydemeo) on keybase.
- I have a public key whose fingerprint is F70B 0F7A 15D5 8EEF 9073 9402 BAA5 86B0 9CCD 7744
To claim this, I am signing this object:
| require 'formula' | |
| class Transfig < Formula | |
| homepage 'http://www.xfig.org' | |
| url 'http://downloads.sourceforge.net/mcj/transfig.3.2.5e.tar.gz' | |
| version '3.2.5e' | |
| sha1 '27aa9691bf84f8775db9be39c453a8132148bad1' | |
| depends_on 'imake' => :build | |
| depends_on 'jpeg' |
| /usr/local/bin/gfortran -fPIC -O -DALLOW_NON_INIT -I/usr/local/Cellar/open-mpi/1.7.3/include -I/usr/local/Cellar/scotch5/5.1.12b/include -Dpord -Dptscotch -I. -I../include -c mumps_ooc_common.F -o mumps_ooc_common.o | |
| Fatal Error: Reading module mumps_ooc_common at line 79 column 5: Unexpected EOF | |
| Fatal Error: Can't delete temporary module file 'mumps_ooc_common.mod0': No such file or directory |
| #!/bin/sh | |
| formulae=$(brew ls) | |
| for formula in $formulae; do | |
| receipt="$(brew --prefix)/opt/$formula/INSTALL_RECEIPT.json" | |
| options=$(jq < $receipt '.used_options[]' -r | tr "\n" " ") | |
| echo "$formula $options" | |
| done |
| diff --git a/autom4te.cache/requests b/autom4te.cache/requests | |
| index e906071..12f56d3 100644 | |
| --- a/autom4te.cache/requests | |
| +++ b/autom4te.cache/requests | |
| @@ -1,4 +1,4 @@ | |
| -# This file was generated by Autom4te Wed Aug 21 09:31:00 UTC 2013. | |
| +# This file was generated. | |
| # It contains the lists of macros which have been traced. | |
| # It can be safely removed. | |
| <mets xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.loc.gov/METS/" xsi:schemaLocation="http://www.loc.gov/METS/ http://www.loc.gov/standards/mets/version18/mets.xsd"> | |
| <metsHdr CREATEDATE="2013-09-30T16:55:09"/> | |
| <amdSec ID="amdSec_1"> | |
| <techMD ID="techMD_1"> | |
| <mdWrap MDTYPE="PREMIS:OBJECT"> | |
| <xmlData> | |
| <object xmlns="info:lc/xmlns/premis-v2" version="2.2" xsi:type="file" xsi:schemaLocation="info:lc/xmlns/premis-v2 http://www.loc.gov/standards/premis/v2/premis-v2-2.xsd"> | |
| <objectIdentifier> | |
| <objectIdentifierType>UUID</objectIdentifierType> | |
| <objectIdentifierValue>a5c7caf5-27fc-4e0c-9be8-4a2c4835886b</objectIdentifierValue> |
| def 🐈() | |
| puts '✨' | |
| end |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| from __future__ import print_function | |
| import sys | |
| import upsidedown | |
| if len(sys.argv) < 2: | |
| table = u'┻━┻' |
I hereby claim:
To claim this, I am signing this object:
| #include <mach/mach_time.h> | |
| #include <stdio.h> | |
| int main() | |
| { | |
| mach_timebase_info_data_t s_timebase_info; | |
| mach_timebase_info(&s_timebase_info); | |
| printf("Timebase numer: %i\n", s_timebase_info.numer); | |
| printf("Timebase denom: %i\n", s_timebase_info.denom); |