This file contains 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
# ---------------------------------------------------------------------- | |
# WARNING - do not edit this template unless you know what you are doing | |
# ---------------------------------------------------------------------- | |
# the parent cache | |
cache_peer %PARENTPROXY% parent %PARENTPORT% 7 no-query no-digest no-netdb-exchange default | |
# disk and memory cache settings | |
cache_dir ufs %CACHEDIR% %CACHESIZE% 16 256 |
This file contains 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
<?php | |
$data = array( | |
"name" => $user['name'], | |
"external_id" => $user['id'], | |
"email" => $user['email'] | |
); | |
$api_secret = "your api secret"; | |
$token = JWT::encode($token, $api_secret); |
This file contains 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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by libsndfile configure 1.0.25, which was | |
generated by GNU Autoconf 2.68. Invocation command line was | |
$ ./configure --disable-dependency-tracking --prefix=/usr/local/Cellar/libsndfile/1.0.25 | |
## --------- ## | |
## Platform. ## |
This file contains 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
localhost:~ felixding$ brew doctor | |
Error: "config" scripts exist outside your system or Homebrew directories. | |
`./configure` scripts often look for *-config scripts to determine if | |
software packages are installed, and what additional flags to use when | |
compiling and linking. | |
Having additional scripts in your path can confuse software installed via | |
Homebrew if the config script overrides a system or Homebrew provided | |
script of the same name. We found the following "config" scripts: |
This file contains 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
localhost:~ felixding$ brew --config | |
HOMEBREW_VERSION: 0.9.2 | |
HEAD: 5047c85ced4befbd4fb6468c76d335a9da96079d | |
HOMEBREW_PREFIX: /usr/local | |
HOMEBREW_CELLAR: /usr/local/Cellar | |
CPU: dual-core 64-bit penryn | |
OS X: 10.7.4-x86_64 | |
Xcode: 4.3.3 => /Developer | |
CLT: 1.0.0.9000000000.1.1249367152 | |
GCC-4.0: N/A |
This file contains 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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by libsndfile configure 1.0.25, which was | |
generated by GNU Autoconf 2.68. Invocation command line was | |
$ ./configure --disable-dependency-tracking --prefix=/usr/local/Cellar/libsndfile/1.0.25 | |
## --------- ## | |
## Platform. ## |
This file contains 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
elix-DingmatoMacBook-Pro:~ felixding$ sudo brew install lastfmfpclient | |
Password: | |
/usr/local/Library/Homebrew/brew.h.rb:441: command not found: /usr/bin/xcode-select -print-path | |
Warning: Xcode is not installed! Builds may fail! | |
Warning: It appears you have MacPorts or Fink installed. | |
Software installed with MacPorts and Fink are known to cause problems. | |
If you experience issues try uninstalling these tools. | |
==> Downloading https://github.com/lastfm/Fingerprinter/tarball/9ee83a51ac9058ff | |
######################################################################## 100.0% | |
==> cmake . -DCMAKE_INSTALL_PREFIX='/usr/local/Cellar/lastfmfpclient/1.6' -DCMAK |