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
[{ | |
"leader": "00000nim a2200000m 4500", | |
"fields": [{ | |
"001": "" | |
}, { | |
"005": "" | |
}, { | |
"008": "20190516s cau nn o lt n eng d" | |
}, { | |
"007": { |
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
''' | |
Archivesspace and OAC will expect a digital object to be enclosed in a <dao> tag as follows, | |
under the <did> for a <c> tag at the appropriate level (e.g., file or item). | |
<dao xlink:actuate="onRequest" xlink:href="http://test.test" xlink:show="new" xlink:title="test digital object"> | |
<daodesc> | |
<p>test digital object</p> | |
</daodesc> | |
</dao> |
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
################ | |
Transform cells containing a single name in `Fn Mn Ln` format into `Ln, Fn Mn` | |
value.split(/ (?=[^ ]*$)/).reverse().join(", ") | |
the split regex catches the last " " space that occurs and takes the characters after it as the last name, | |
then moves it to the front and joins the values with comma-space. | |
To perform this transformation, at the top of a column, go to Edit Cells> Transform and paste the expression into the box. | |
#################### |
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
$ ffmpeg -i extraordinary-adventures-of-mr-west_03965_PM0010199_R01of04.mov -movflags faststart -threads 1 -vf pad='width=ceil(iw/2)*2:height=ceil(ih/2)*2' -pix_fmt yuv420p -c:v libx264 -f mp4 -crf 18 -maxrate 12000k -c:a aac -ac 2 -b:a 320k -ar 48000 out.mp4 | |
ffmpeg version 4.1-1~16.04.york0 Copyright (c) 2000-2018 the FFmpeg developers | |
built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.11) 20160609 | |
configuration: --prefix=/usr --extra-version='1~16.04.york0' --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-avresample --disable-filter=resample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable |
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
# output of running `mediainfo` (Ubuntu, MediaInfoLib - v18.08.20180908) on a folder | |
# with a dpx subfolder and a sidecar wav file. All the files have the same | |
# prefix "academy-leader_16940_BARCODE_R01of02" and the DPX sequence is numbered | |
# in sequence. :) | |
General | |
Complete name : academy-leader_16940_BARCODE_R01of02/ | |
Format : Directory | |
File size : 4.57 GiB | |
Duration : 7 s 958 ms |
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
# SSH TUNNEL ~ BROWSER REDIRECT WITH SOCKS PROXY | |
ssh -D 8080 -C -N user@1.2.3.4 | |
# FROM `man ssh`: | |
# -D [bind_address:]port | |
# Specifies a local ``dynamic'' application-level port forwarding. | |
# This works by allocating a socket to listen to port on the local | |
# side, optionally bound to the specified bind_address. Whenever a | |
# connection is made to this port, the connection is forwarded over | |
# the secure channel, and the application protocol is then used t |
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
''' | |
This jython expression merges columns that are named sequentially, | |
but only if there is data in the column. | |
Trying to merge columns with GREL that include empty cells results in an error. | |
My data included columns like this: | |
Title 1 | Title 2 .. | .. Title 14 | |
---- | |
My Title | Other Title | etc. |
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
Homebrew build logs for gtk+3 on Ubuntu 16.04.4 LTS | |
Build date: 2018-04-12 16:24:17 |