All Categories
GET http://api.cafe.naver.jp/categories
Popular Cafe
GET http://api.cafe.naver.jp/cafes/osusume?cursor=0&fetchSize=20&languages=Chinese_Traditional
Cafe Members
All Categories
GET http://api.cafe.naver.jp/categories
Popular Cafe
GET http://api.cafe.naver.jp/cafes/osusume?cursor=0&fetchSize=20&languages=Chinese_Traditional
Cafe Members
| #enable | |
| heroku labs:enable user-env-compile --app projectxapp | |
| heroku config:set CLEAN_VIRTUALENV=yes --app projectxapp | |
| heroku config:set BUILDPACK_URL=https://github.com/bobwei/heroku-buildpack-python --app projectxapp | |
| git push projectxapp working:master | |
| #disable | |
| heroku config:unset CLEAN_VIRTUALENV --app projectxapp | |
| heroku labs:disable user-env-compile --app projectxapp |
| { | |
| "color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme", | |
| "font_size": 16, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "tab_size": 4, | |
| "translate_tabs_to_spaces": true, | |
| "word_wrap": false, |
| require.config({ | |
| paths: { | |
| jquery: '../bower_components/jquery/jquery', | |
| underscore: '../bower_components/underscore/underscore-min', | |
| backbone: '../bower_components/backbone/backbone-min', | |
| text: '../bower_components/requirejs-text/text', | |
| bootstrap: 'vendor/bootstrap' | |
| }, | |
| shim: { | |
| bootstrap: { |
| find . -name "*.pyc" -exec rm -rf {} \; |
| import os, sys, codecs | |
| for dirpath, dirnames, filenames in os.walk('./mosorder'): | |
| # print dirpath, dirnames, filenames | |
| print 'dirpath = {}'.format(dirpath) | |
| for filename in filenames: | |
| if not filename.find('.java') > 0: | |
| continue |
| { | |
| "name": "", | |
| "version": "0.0.0", | |
| "dependencies": { | |
| "sass-bootstrap": "~3.0.0", | |
| "requirejs": "~2.1.8", | |
| "jquery": "~1.10.2", | |
| "angular": "~1.2.6", | |
| "angular-route": "~1.2.6", | |
| "requirejs-text": "~2.0.10", |
| require.config({ | |
| paths: { | |
| jquery: '../bower_components/jquery/jquery', | |
| bootstrapAffix: '../bower_components/sass-bootstrap/js/affix', | |
| bootstrapAlert: '../bower_components/sass-bootstrap/js/alert', | |
| bootstrapButton: '../bower_components/sass-bootstrap/js/button', | |
| bootstrapCarousel: '../bower_components/sass-bootstrap/js/carousel', | |
| bootstrapCollapse: '../bower_components/sass-bootstrap/js/collapse', | |
| bootstrapDropdown: '../bower_components/sass-bootstrap/js/dropdown', | |
| bootstrapPopover: '../bower_components/sass-bootstrap/js/popover', |
| window.redirectTo = function(){ | |
| // android redirect | |
| if (window.navigator.userAgent.match(/Android/)){ | |
| setTimeout(function() { | |
| if (!document.webkitHidden){ | |
| window.location = 'https://play.google.com/store/apps/details?id=com.linkwish.onepiece'; | |
| } | |
| }, 1000); | |
| window.location = 'fb1393011827627092://'; |
| (function(){ | |
| var newscript = document.createElement('script'); | |
| newscript.type = 'text/javascript'; | |
| newscript.async = true; | |
| newscript.src = 'https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js'; | |
| (document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(newscript); | |
| })(); |