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
| 22:25 < mugwump> dbugger: here's an example of how SQLAlchemy does it, for | |
| inspiration: | |
| http://readthedocs.org/docs/sqlalchemy-migrate/en/latest/#user-guide | |
| 22:28 < Harzilein> dbugger: here is a thread that mentions plans for schema | |
| migration for typo3: | |
| http://lists.typo3.org/pipermail/typo3-team-core-v5/2009-July/000349.html |
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
| interzone:~/src/gerrit$ git log --all --since="8 days ago" | git shortlog | cat | |
| Augie Fackler (1): | |
| documentation: update links from kernel.org to code.google.com | |
| Brad Larson (1): | |
| Show latest patchset with cherry-picked merge | |
| Edwin Kempin (17): | |
| Fix NPE in set-project-parent command if parent is not specified | |
| stream-events: fix change subject in patchset-created event |
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
| # ~/bin/start-ssh-agent.sh | |
| # make sure your .bashrc sources this file, I use: | |
| # | |
| # if [ -t ] | |
| # then | |
| # . ~/bin/start-ssh-agent.sh | |
| # fi | |
| # | |
| # Old versions of SSH used to call the variable | |
| # SSH_AUTHORIZATION_SOCKET; this is no longer supported. |
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
| Note: quite a few of the marks available via option+key are combining diacritics; eg option+u, u => ü | |
| ~ ⁄! €@ ‹# ›$ fi% fl^ ‡& °* ·( ‚) —_ ±+ | |
| `` ¡1 ™2 £3 ¢4 ∞5 §6 ¶7 •8 ª9 º0 –- ≠= | |
| ŒQ „W ´E ‰R ˇT ÁY ¨U ˆI ØO ∏P ”{ ’} »| | |
| œq ∑w ´e ®r †t ¥y ¨u ˆi øo πp “[ ‘] «\ | |
| ÅA ÍS ÎD ÏF ˝G ÓH ÔJ K ÒL Ú: Æ" | |
| åa ßs ∂d ƒf ©g ˙h ∆j ˚k ¬l …; æ' |
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
| From: [email protected] | |
| Subject: Notification of Credit Card Activity | |
| To: [email protected] | |
| *** WARNING: THIS E-MAIL SERVES ONLY AS NOTIFICATION OF CREDIT CARD | |
| ACTIVITY. THIS IS NOT AN APPOINTMENT LETTER OR A MACHINE READABLE VISA | |
| RECEIPT *** | |
| *** IF YOU APPEAR AT THE U.S. EMBASSY WITH ONLY THIS E-MAIL, YOU WILL BE |
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
| NAME | |
| threads::tbb::refcounter - inside-out refcounts for XS types | |
| SYNOPSIS | |
| use threads::tbb::refcounter qw(Image::Magick); | |
| DESCRIPTION | |
| This module allows XS modules which were not written with | |
| "threads::tbb" in mind (but are thread-safe) to be explicitly marked as | |
| passable between threads, without requiring the XS type to explicitly |
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
| #!/usr/bin/perl -nl | |
| push @$a, $_ unless !@$a and !m{\S}; | |
| m{(\d+) insertions.*? (\d+) deletions} | |
| && do { push @{$x{$2-$1}},$a; $a=[] }; | |
| END { | |
| @by_dels = sort {$a<=>$b} keys %x; | |
| my $h2 = sub { print "$_[0]"; print "-" x length($_[0]); print "\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
| DONE Challenge - 45 Halswell Road, Halswell | |
| DONE Challenge - corner Milton and Selwyn Street, Christchurch | |
| DONE Challenge Waimak - Main North Road, Kaiapoi | |
| DONE Caltex - Blenheim Road, Riccarton | |
| DONE Caltex - Lincoln Road, Addington |
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
| Received: from 178.103.20.196 by rms-eu004.v300.gmx.net with HTTP | |
| Date: Mon, 07 Feb 2011 21:54:15 +0000 | |
| From: "Erik Young" <[email protected]> | |
| Subject: Protocol Protocol Protocol | |
| To: [email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]. |
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
| package main | |
| import "tour/pic" | |
| func Pic(dx, dy int) [][]uint8 { | |
| var rv = make([][]uint8, dy) | |
| for y := 0; y < dy; y++ { | |
| rv[y] = make([]uint8, dx); | |
| for x := 0; x < dx; x++ { |