View Alma.php
This file contains 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
<?php | |
protected function curlMultiRequest($urls) { | |
$ch = array(); | |
$results = array(); | |
$mh = curl_multi_init(); | |
foreach($urls as $key => $val) { | |
$ch[$key] = curl_init(); | |
curl_setopt($ch[$key],CURLOPT_RETURNTRANSFER,1); | |
curl_setopt($ch[$key], CURLOPT_URL, $val); | |
//curl_setopt ($ch[$key], CURLOPT_FAILONERROR,1); |
View Alma.php
This file contains 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
<?php | |
$start_time = MICROTIME(TRUE); | |
//error_reporting(0); | |
function curlMultiRequest($urls, $options = array()) { | |
$ch = array(); | |
$results = array(); | |
$mh = curl_multi_init(); | |
foreach($urls as $key => $val) { | |
$ch[$key] = curl_init(); |
View primoaspire.js
This file contains 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
$(function() { | |
//////////////////////////////////////////// | |
// Aspire Reading Lists | |
// Get reading lists this item appears on. | |
// baseurl - url of Aspire tenancy | |
// outputstringprefix - html to add to front of list items in the Primo links list | |
// outputstringsuffix - html to add to end of list items in the Primo links list |
View display only.xml
This file contains 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
<display> | |
<type>Article</type> | |
<title>Discovery services: next generation of searching scholarly information</title> | |
<creator><span class="searchword">Keene</span>, Chris</creator> | |
<publisher>United Kingdom Serials Group</publisher> | |
<creationdate>2011-07</creationdate> | |
<format>application/pdf</format> | |
<identifier>http://sro.sussex.ac.uk/7014/1/17_Key_Issue.pdf; <span class="searchword">Keene</span>, Chris (2011) Discovery services: next generation of searching scholarly information. Serials, 24 (2). pp. 193-196. ISSN 0953-0460</identifier> | |
<subject>ZA4050 Electronic information resources; ZA4450 Databases</subject> | |
<description>The new breed of resource discovery services is an evolutionary step forward in providing library users with a ‘one-stop shop’ where they can find information sources for their research. They provide a single search box that can search a library’s online and physical content including articles, books, journals, newspaper articles, e-books, specialist collections and more. T |
View pnx record for eprints.xml
This file contains 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
<record xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib" xmlns:sear="http://www.exlibrisgroup.com/xsd/jaguar/search"> | |
<control> | |
<sourcerecordid>7014</sourcerecordid> | |
<sourceid>44SUS_EPR_DS</sourceid> | |
<recordid>44SUS_EPR_DS7014</recordid> | |
<sourceformat>DC</sourceformat> | |
<sourcesystem>Other</sourcesystem> | |
</control> | |
<display> | |
<type>Article</type> |
View dc as export from eprints.xml
This file contains 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
<OAI-PMH xmlns="http://www.openarchives.org/OAI/2.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"> | |
<responseDate>2014-03-20T09:20:17Z</responseDate> | |
<request verb="GetRecord" identifier="oai:sro.sussex.ac.uk:47853" metadataPrefix="oai_dc">http://sro.sussex.ac.uk/cgi/oai2</request> | |
<GetRecord> | |
<record> | |
<header> | |
<identifier>oai:sro.sussex.ac.uk:47853</identifier> | |
<datestamp>2014-03-17T09:19:25Z</datestamp> | |
<setSpec>7374617475733D707562</setSpec> | |
<setSpec>7375626A656374733D4A</setSpec> |
View rules.diff
This file contains 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
11c11 | |
< <conditionCode>21743174</conditionCode> | |
--- | |
> <conditionCode>15451998</conditionCode> | |
18c18 | |
< <sourceTag>dc:type</sourceTag> | |
--- | |
> <sourceTag>dc:format</sourceTag> | |
21,23c21,102 | |
< <conditionCode>21743176</conditionCode> |
View purchase order
This file contains 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
<p>Access the <a href="/library/reports/purchaseform.php">OLD purchase order form here.</a></p> | |
<script> | |
$(document).ready(function(){ | |
// from http://stackoverflow.com/questions/19578111/how-to-add-clone-form-fields-using-jquery-and-increment-ids-and-names | |
// this will add a new row of fields each time user clicks 'add extra line' button | |
//We will be using an unique index number for each new instance of the cloned form | |
var item_number_form_index=0; | |
//When the button is clicked (or Enter is pressed while it's selected) |
View gist:6278409
This file contains 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
SELECT Count(*) as "new items", e.datestamp_month, e.datestamp_year, | |
(select count(*) from eprint | |
where ((e.datestamp_year >= datestamp_year AND e.datestamp_month >= datestamp_month) | |
OR (e.datestamp_year > datestamp_year)) | |
and `eprint_status` = "archive" | |
) AS "all time running total", | |
(select count(*) from eprint | |
where ((e.datestamp_year = 2012 AND e.datestamp_year = datestamp_year AND datestamp_month > 7 AND datestamp_month <= e.datestamp_month ) | |
OR (e.datestamp_year = 2013 AND ((datestamp_year = 2012 AND datestamp_month > 7) | |
OR (datestamp_year = 2013 AND datestamp_month <= e.datestamp_month)) |
View gist:5533427
This file contains 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/sh | |
loadaverage=`uptime | awk -F"," '{print $4;}' | sed 's/^.*: //g' | sed 's/...$//g'` | |
if test $loadaverage -gt 7 | |
then | |
echo "load is " $loadaverage | |
uptime | |
/opt/scratch/proclist.sh >> loadout8.txt | |
top -b -n1 >> /opt/scratch/top.log | |
fi |