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
| 11:24:52:200 [Info] - LOG_PLUGIN: store_object_meta_data : mediafusion-integration-service:452051: Adding object: | |
| title: MaxFm - a SHOUTcast.com member station | |
| mime-type: audio/mpeg | |
| url: http://yp.shoutcast.com/sbin/tunein-station.pls?id=29777 | |
| 11:24:52:200 [Info] - LOG_PLUGIN: store_object_meta_data : mediafusion-integration-service:452051: Adding object: | |
| title: 100% GENERATION DISCO FUNK )) GENERATION DISCO FUNK - Hot summer Soul, Disco, Funk Radio !!! - a SHOUTcast.com member station | |
| mime-type: audio/mpeg | |
| url: http://yp.shoutcast.com/sbin/tunein-station.pls?id=903206 | |
| 11:24:52:200 [Info] - LOG_PLUGIN: store_object_meta_data : mediafusion-integration-service:452051: Adding object: | |
| title: Loudcaster: Hittin Lick Radio - a SHOUTcast.com member station |
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
| def diff(si="-GGAAT", sj="-GGACAT"): | |
| m = len(si);n = len(sj) | |
| matrix = Matrix(m, n) | |
| # init | |
| matrix[0,0] = 0 | |
| for i in range(1, m): | |
| matrix[i,0] = matrix[i-1, 0] + similarity(si[i], '-') | |
| for j in range(1, n): |
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
| def smithwaterman(str1='-TSASAKARA', str2='-TASASRAR'): | |
| def trace(i,j, u): | |
| if u == 0: | |
| return '' | |
| else: | |
| if matrix[i-1][j-1] + similarity(str1[i], str2[j]) == u: | |
| return trace(i-1,j-1, matrix[i-1][j-1]) + str1[i] + str2[j] | |
| if matrix[i-1][j] + similarity(str1[i], '-') == u: | |
| return trace(i-1, j, matrix[i-1][j]) + str1[i] + '-' |
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
| /************* CodeRay styles **pimped** *************/ | |
| .syntaxhl .hll { background-color: #ffffcc } | |
| .syntaxhl .c { color: #999988; font-style: italic } /* Comment */ | |
| .syntaxhl .er { color: #a61717; background-color: #e3d2d2 } /* Error */ | |
| .syntaxhl .kw { font-weight: bold } /* Keyword */ | |
| .syntaxhl .o { font-weight: bold } /* Operator */ | |
| .syntaxhl .c { color: #999988; font-style: italic } /* Comment.Multiline */ | |
| .syntaxhl .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ | |
| .syntaxhl .c1 { color: #999988; font-style: italic } /* Comment.Single */ | |
| .syntaxhl .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ |
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
| $(document).ready(function() { | |
| oldhtml = null; | |
| entries = null; | |
| $('#page a img').not('.nowrap').wrap('<div class="divImg">'); | |
| $('#page img').not('#page a img').not('.nowrap').wrap('<div class="divImg"><a href="#" onclick="openImage(this); return false;">'); | |
| entries = null; | |
| oldhtml = null; | |
| function htmlEscape(str) { | |
| return str.replace(/&/g,'&'). |
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
| diff --git a/config.sh b/config.sh | |
| index 7867fcd..716915c 100755 | |
| --- a/config.sh | |
| +++ b/config.sh | |
| @@ -100,6 +100,7 @@ check_pkg "libcurl" || check_custom "libcurl" "curl-config" || fail "libcurl" | |
| check_pkg "libxml-2.0" || check_custom "libxml2" "xml2-config" || fail "libxml2" | |
| check_pkg "stfl" || fail "stfl" | |
| check_pkg "json" || fail "json" | |
| -check_custom "ncursesw5" "ncursesw5-config" || fail "ncursesw5" | |
| check_ssl_implementation |
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
| --- a/syncstorage/tests/functional/test_storage.py Mon Sep 03 12:52:24 2012 +1000 | |
| +++ b/syncstorage/tests/functional/test_storage.py Tue Sep 04 18:09:51 2012 +0200 | |
| @@ -583,7 +583,7 @@ | |
| self.assertEquals(res.json["payload"], _PLD) | |
| # deleting all with no confirmation | |
| - self.app.delete(self.root + '/storage', status=400) | |
| + self.app.delete(self.root + '/storage', status=412) | |
| # deleting all for real now |
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
| require 'formula' | |
| class Libtorrent < Formula | |
| homepage 'http://libtorrent.rakshasa.no/' | |
| url 'http://libtorrent.rakshasa.no/downloads/libtorrent-0.13.2.tar.gz' | |
| sha1 '4f34a744fbe10c54aaf53d34681fabc1a49d7257' | |
| depends_on 'pkg-config' => :build | |
| depends_on 'libsigc++' |
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
| ~/dev/bench/pelican$ find content/ | wc -l | |
| 1029 | |
| ~/dev/bench/pelican$ time make html | |
| find /Users/ich/dev/bench/pelican/output -mindepth 1 -delete | |
| pelican /Users/ich/dev/bench/pelican/content -o /Users/ich/dev/bench/pelican/output -s /Users/ich/dev/bench/pelican/pelicanconf.py | |
| WARNING: Feeds generated without SITEURL set properly may not be valid | |
| Done | |
| real 0m25.691s |
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
| require 'formula' | |
| class Transmission < Formula | |
| homepage 'http://www.transmissionbt.com/' | |
| url 'http://download.transmissionbt.com/files/transmission-2.73.tar.bz2' | |
| sha1 '49f886ecb391c8901cd40f42b2f4a0df1ea4dcab' | |
| depends_on 'pkg-config' => :build # So it will find system libcurl | |
| depends_on 'libevent' | |
| depends_on 'intltool' => :optional |
OlderNewer