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
| ASIO-OTUS:tmp$ brew edit gifsicle | |
| ASIO-OTUS:tmp$ brew -v upgrade gifsicle | |
| Homebrew 0.8.1 | |
| ==> Upgrading gifsicle | |
| ==> Downloading http://www.lcdf.org/gifsicle/gifsicle-1.64.tar.gz | |
| /usr/bin/curl -qf#LA Homebrew 0.8.1 (Ruby 1.8.7-249; Mac OS X 10.7.3) http://www.lcdf.org/gifsicle/gifsicle-1.64.tar.gz -o /Users/fish/Library/Caches/Homebrew/gifsicle-1.64.tar.gz | |
| ######################################################################## 100.0% | |
| /usr/bin/tar xf /Users/fish/Library/Caches/Homebrew/gifsicle-1.64.tar.gz | |
| ==> ./configure --disable-dependency-tracking --prefix=/usr/local/Cellar/gifsicle/1.64 --enable-all | |
| ./configure --disable-dependency-tracking --prefix=/usr/local/Cellar/gifsicle/1.64 --enable-all |
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
| os.environ['DJANGO_SETTINGS_MODULE'] = os.environ.get( | |
| 'DJANGO_SETTINGS_MODULE', | |
| 'distributors.settings') or 'distributors.settings' |
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
| ## ItemView.coffee in the specs/coffee folder ## | |
| define ["ItemView"], (ItemView) -> | |
| ### | |
| Specs for ItemView | |
| ### | |
| describe "Item View", -> | |
| ### | |
| Common setup and teardown |
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
| # `catty_files` contain | |
| # They are a simple intermediate used by `uglify` -- at this point in the program, | |
| # this list contains non-existant filenames constructed from the original CoffeeScript | |
| # source filenames. | |
| self.catty_files = [basename(cs_file).replace('.coffee', '.libs.js') for cs_file in self.distribution.cs_files] | |
| # They are a simple intermediate used by `uglify` -- at this point in the program, | |
| # this list contains non-existant filenames constructed from the original CoffeeScript |
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
| DEBUG = True | |
| TM_SELECTED_FILE = $TM_SELECTED_FILE | |
| COMMAND_MODE = $COMMAND_MODE | |
| TM_PROJECT_FILEPATH = $TM_PROJECT_FILEPATH | |
| DJANGO_SETTINGS_MODULE = $DJANGO_SETTINGS_MODULE | |
| $ |
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
| import sys | |
| import os | |
| import pybindgen | |
| from pybindgen import FileCodeSink | |
| from pybindgen.gccxmlparser import ModuleParser | |
| module_parser = ModuleParser('CImg', 'cimg_library') | |
| module = module_parser.parse(['/Users/fish/Dropbox/cython-imaging/CIL/ext/include/CImg.h']) | |
| module.add_include('<CImg.h>') | |
| module.generate(FileCodeSink(sys.stdout)) |
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
| ASIO-OTUS:ost2[ost5-writers-block •]$ ost | |
| + Switching to /Users/fish/Dropbox/ost2 | |
| ASIO-OTUS:ost2[ost5-writers-block •]$ cd /tmp | |
| ASIO-OTUS:tmp$ /usr/local/share/python/watchmedo shell-command --patterns="*.py;*.txt;*.html;*.css;*.js" --recursive --command='kill -HUP $(cat /usr/local/gunicorn/gunicorn.pid)' /Users/fish/Dropbox/ost2/ost2/ | |
| ^C^C | |
| ASIO-OTUS:tmp$ /usr/local/share/python/watchmedo shell-command --patterns="*.py;*.txt;*.html;*.css;*.js" --recursive --command='echo ${watch_src_path}' /Users/fish/Dropbox/ost2/ost2/ | |
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
| var Dajaxice = { | |
| {% for module in dajaxice_js_functions %} | |
| {% include "dajaxice/dajaxice_core_loop.js" %} | |
| {% endfor %}{% ifnotequal dajaxice_js_functions|length 0 %},{% endifnotequal %} | |
| get_cookie: function(name) | |
| { | |
| var cookieValue = null; | |
| if (document.cookie && document.cookie != '') { |
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
| ^ url\(r'\^(\w+)\/(.+)', '(.+)'\)\, | |
| url(r'$1/$2', | |
| '$3', name='$1'), |
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
| /* Lear's GIST implementation, version 1.0, (c) INRIA 2009, Licence: GPL */ | |
| /*--------------------------------------------------------------------------*/ | |
| #ifdef USE_GIST | |
| /*--------------------------------------------------------------------------*/ | |
| #include <math.h> | |
| #include <stdio.h> | |
| #include <string.h> |