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
| @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>. | |
| @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>. | |
| @prefix xsd: <http://www.w3.org/2001/XMLSchema#>. | |
| @prefix xml: <http://www.w3.org/XML/1998/namespace>. | |
| @prefix skos: <http://www.w3.org/2004/02/skos/core#>. | |
| @prefix dcam: <http://purl.org/dc/dcam/>. | |
| @prefix dcterms: <http://purl.org/dc/terms/>. | |
| <http://purl.org/dc/dcmitype/> dcterms:modified "2010-10-11"; | |
| dcterms:publisher <http://purl.org/dc/aboutdcmi#DCMI>; |
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
| [alias] | |
| co = checkout | |
| di = diff | |
| st = status | |
| sh = show | |
| ci = commit | |
| br = branch | |
| cp = cherry-pick | |
| last = show -1 HEAD | |
| unstage = reset HEAD -- |
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/bash | |
| PSQL="/usr/bin/psql" | |
| PGUSER="dpaikkos" | |
| DBNAME="for_import" | |
| DUMP="www-latest.pg" | |
| REMOTE="proxima" | |
| echo "Fetch $DUMP from $REMOTE" | |
| rm -f $DUMP |
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/bash | |
| PSQL="/usr/bin/psql" | |
| PGUSER="dpaikkos" | |
| DBNAME="import" | |
| DUMP="sirius-latest.pg" | |
| REMOTE="proxima" | |
| rm -f $DUMP | |
| /usr/bin/rsync -La --progress sirius:/data/pg_dumps/latest.pg ${DUMP} |
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 MyApp::Schema::Result::Artist; | |
| use warnings; | |
| use strict; | |
| use base qw( DBIx::Class::Core ); | |
| __PACKAGE__->table('artist'); | |
| __PACKAGE__->add_columns( |
OlderNewer