{% flickr_gallery [size] %} [photo id] [photo id] [photo id] ... {% endflickr_gallery %}
{% flickr_photoset [set id] [size] [limit] %}
{% flickr_photostream [size] [limit] %}
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
flickr: | |
enabled: true | |
api_key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | |
shared_secret: "xxxxxxxxxxxxxxxx" | |
auth_token: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | |
secret: "xxxxxxxxxxxxxxxx" | |
user_id: "00000000@N00" | |
cache_dir: /tmp/jekyll/flickr | |
photosets: | |
enable: true |
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
flickr: | |
enabled: true | |
api_key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | |
shared_secret: "xxxxxxxxxxxxxxxx" | |
auth_token: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | |
secret: "xxxxxxxxxxxxxxxx" | |
user_id: "00000000@N00" | |
cache_dir: /tmp/jekyll/flickr | |
photostream: | |
enable: true |
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
$ make clean | |
$ ruby extconf.rb | |
$ make | |
$ otool -L MeCab.bundle | |
MeCab.bundle: | |
/Users/suwa320/.rvm/rubies/ruby-1.9.3-p194/lib/libruby.1.9.1.dylib (compatibility version 1.9.1, current version 1.9.1) | |
/usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 56.0.0) | |
/usr/local/lib/libmecab.2.dylib (compatibility version 3.0.0, current version 3.0.0) | |
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 169.3.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
dir_config('mecab', | |
`mecab-config --inc-dir`.strip, | |
`mecab-config --libs-only-L`.strip) |
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
$ otool -L MeCab.bundle | |
MeCab.bundle: | |
/Users/suwa320/.rvm/rubies/ruby-1.9.3-p194/lib/libruby.1.9.1.dylib (compatibility version 1.9.1, current version 1.9.1) | |
/usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 56.0.0) | |
/usr/lib/libmecab.1.0.0.dylib (compatibility version 1.0.0, current version 1.0.0) | |
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 169.3.0) | |
/usr/lib/libobjc.A.dylib (compatibility version 1.0.0, current version 228.0.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
dyld: lazy symbol binding failed: Symbol not found: __ZN5MeCab12getLastErrorEv | |
Referenced from: /Users/suwa320/Project/mecab-ruby-0.994/MeCab.bundle | |
Expected in: flat namespace | |
dyld: Symbol not found: __ZN5MeCab12getLastErrorEv | |
Referenced from: /Users/suwa320/Project/mecab-ruby-0.994/MeCab.bundle | |
Expected in: flat namespace |
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
$ wget 'https://code.google.com/p/mecab/downloads/detail?name=mecab-ruby-0.994.tar.gz&can=2&q=' -O mecab-ruby-0.994.tar.gz | |
$ tar xvfz mecab-ruby-0.944.tar.gz | |
$ cd mecab-ruby-0.944 | |
$ ruby extconf.rb | |
$ make | |
$ sudo make install |