I hereby claim:
- I am ultrasaurus on github.
- I am ultrasaurus (https://keybase.io/ultrasaurus) on keybase.
- I have a public key whose fingerprint is 7C15 2667 134B E0D2 2F41 10B4 EFC0 EF27 3C7B 3DE8
To claim this, I am signing this object:
ninja: error: 'MKL_ThreadingLibrary_LINK_LIBRARY-NOTFOUND', needed by 'src/backend/cpu/libafcpu.3.8.0.dylib', missing and no known rule to make it |
Computing installation plan... | |
The following packages will be built and installed: | |
arrayfire[core,cpu,unified]:arm64-osx -> 3.8.0 | |
* boost-algorithm[core]:arm64-osx -> 1.77.0 | |
* boost-align[core]:arm64-osx -> 1.77.0 | |
* boost-any[core]:arm64-osx -> 1.77.0 | |
* boost-array[core]:arm64-osx -> 1.77.0 | |
* boost-assert[core]:arm64-osx -> 1.77.0 | |
* boost-atomic[core]:arm64-osx -> 1.77.0 | |
* boost-bind[core]:arm64-osx -> 1.77.0 |
I hereby claim:
To claim this, I am signing this object:
[alias] | |
st = status | |
ci = commit | |
br = branch | |
co = checkout | |
df = diff | |
lg = log -p | |
branches = for-each-ref --sort='-authordate:iso8601' --format=' %(authordate:relative)%09%(refname:short)' refs/heads | |
[push] |
Make GitHub Labels | |
gem install 'octokit' | |
irb | |
require 'octokit' | |
client = Octokit::Client.new login:'yourname',password:’XXXXXX' |
svn checkout http://tesseract-ocr.googlecode.com/svn/trunk/ tesseract-ocr | |
cd tesseract-ocr | |
sh ./autogen.sh | |
./configure | |
make | |
: | |
: | |
/usr/bin/ranlib: file: .libs/libtesseract.a(quadratc.o) has no symbols | |
libtool: link: ranlib .libs/libtesseract.a | |
ranlib: file: .libs/libtesseract.a(quadratc.o) has no symbols |
<html> | |
<head> | |
<title>PHP Test</title> | |
</head> | |
<body> | |
<?php phpinfo(); ?> | |
</body> | |
</html> |
run("echo gem \\'rake\\', \\'0.8.7\\' >> Gemfile;") | |
run("echo group :test, :development do >> Gemfile;") | |
run("echo gem \\'rspec-rails\\', \\'\\>\\= 2.3.0\\' >> Gemfile;") | |
run("echo gem \\'capybara\\', \\'0.4.0\\' >> Gemfile;") | |
run("echo gem \\'database_cleaner\\' >> Gemfile;") | |
run("echo gem \\'cucumber-rails\\' >> Gemfile;") | |
run("echo gem \\'launchy\\' >> Gemfile;") | |
run("echo end >> Gemfile;") | |
run("bundle install") |
run("echo gem \\'rake\\', \\'0.8.7\\' >> Gemfile;") | |
run("echo group :test, :development do >> Gemfile;") | |
run("echo gem \\'rspec-rails\\', \\'\\>\\= 2.3.0\\' >> Gemfile;") | |
run("echo gem \\'capybara\\', \\'0.4.0\\' >> Gemfile;") | |
run("echo gem \\'database_cleaner\\' >> Gemfile;") | |
run("echo gem \\'cucumber-rails\\' >> Gemfile;") | |
run("echo gem \\'launchy\\' >> Gemfile;") | |
run("echo end >> Gemfile;") | |
run("bundle install") |
class TestMiddleware | |
def initialize(app) | |
@app = app | |
end | |
def call(env) | |
puts "------------------TestMiddleware--------------" | |
#puts env.to_yaml | |
@app.call(env) | |
end |