English manual for the ZUOYA GMK67 Mechanical Keyboard. Made from the printed version (Original).
Returns Turtle:
curl -L -i https://ld.zdb-services.de/data/organisations/DE-1a -H "Accept: text/turtle"
Returns HTML:
curl -L -i https://ld.zdb-services.de/data/organisations/DE-1a -H "Accept: application/rdf+xml;q=0.8,application/n-triples;q=0.9,application/trix;q=0.8,application/ld+json;q=0.8,text/shaclc;q=0.8,application/rdf+thrift,text/turtle;q=0.8,text/rdf+n3;q=0.8,application/rdf+json;q=0.8,application/sparql-results+xml,application/sparql-results+json"
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 Catmandu::Fix::pica_sort; | |
use Catmandu::Sane; | |
use Moo; | |
sub fix { | |
my ( $self, $data ) = @_; | |
return $self->sort_record($data); | |
} | |
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 -w | |
use strict; | |
use warnings; | |
use DDP; | |
use Catmandu::Importer::SRU; | |
# create array to store items | |
my @array = (); |
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 -w | |
use strict; | |
use warnings; | |
use Catmandu::Importer::SRU; | |
# specify I/O layer | |
open( my $fh, '>:encoding(UTF-8)', 'fixed.jsonl' ); |
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 -w | |
use strict; | |
use warnings; | |
use Catmandu::Importer::SRU; | |
# specify I/O layer | |
open( my $fh, '>>:encoding(UTF-8)', 'blabla.txt' ); |
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/env perl | |
use strict; | |
use warnings; | |
use DDP; | |
use Catmandu::Importer::SRU; | |
use Catmandu::PICA; | |
my %attrs = ( | |
base => 'https://services.dnb.de/sru/dnb', |
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/env perl | |
use strict ; | |
use warnings ; | |
use utf8 ; | |
use feature qw{ postderef say signatures state } ; | |
no warnings qw{ experimental::postderef experimental::signatures } ; | |
use Carp ; | |
use Getopt::Long ; |
NewerOlder