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
| ;;; ------------------------------------------------------------------------ | |
| ;;; Copyright © 2020, 2023 Jason Stephenson <jason@sigio.com> | |
| ;;; | |
| ;;; Permission to use, copy, modify, and distribute this software for any | |
| ;;; purpose with or without fee is hereby granted, provided that the above | |
| ;;; copyright notice and this permission notice appear in all copies. | |
| ;;; | |
| ;;; THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
| ;;; WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | |
| ;;; MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
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
| /* | |
| * real_bib_delete.sql | |
| * Copyright (c) 2014 Bibliomation, Inc. | |
| * Copyright (c) 2014 Jason Stephenson <jason@sigio.com> | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 2 of the License, or | |
| * (at your option) any later version. | |
| * |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <NCIPMessage version="http://www.niso.org/schemas/ncip/v2_02/ncip_v2_02.xsd" xmlns="http://www.niso.org/2008/ncip"> | |
| <AcceptItem> | |
| <InitiationHeader> | |
| <FromAgencyId> | |
| <AgencyId></AgencyId> | |
| </FromAgencyId> | |
| <ToAgencyId> | |
| <AgencyId></AgencyId> | |
| </ToAgencyId> |
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 python3 | |
| # -*- Mode: python; coding: utf-8 -*- | |
| # --------------------------------------------------------------- | |
| # Copyright © 2015 Jason J.A. Stephenson <jason@sigio.com> | |
| # | |
| # This program is free software; you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation; either version 3 of the License, or | |
| # (at your option) any later version. | |
| # |
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 python3 | |
| # -*- Mode: python; coding: utf-8 -*- | |
| # --------------------------------------------------------------- | |
| # Copyright © 2015 Jason J.A. Stephenson <jason@sigio.com> | |
| # | |
| # This program is free software; you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation; either version 3 of the License, or | |
| # (at your option) any later version. | |
| # |
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 | |
| # --------------------------------------------------------------- | |
| # Copyright © 2015 Merrimack Valley Library Consortium | |
| # Jason Stephenson <jstephenson@mvlc.org> | |
| # | |
| # This program is free software; you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation; either version 2 of the License, or | |
| # (at your option) any later version. | |
| # |
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 | |
| # Copyright © 2013 Jason J.A. Stephenson <jason@sigio.com> | |
| # | |
| # disbatcher.pl is free software: you can redistribute it and/or | |
| # modify it under the terms of the GNU General Public License as | |
| # published by the Free Software Foundation, either version 3 of the | |
| # License, or (at your option) any later version. | |
| # | |
| # disbatcher.pl is distributed in the hope that it will be useful, but | |
| # WITHOUT ANY WARRANTY; without even the implied warranty of |
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 | |
| # Author: Thomas Berezansky <tsbere@mvlc.org> | |
| # Author: Jason Stephenson <jason@sigio.com> | |
| # | |
| # Feel free to use and to share this script in anyway you like. | |
| # This script is intended as a shortcut for the git cherry-pick | |
| # command when you have several commits that you want to cherry-pick | |
| # into your local branch from another branch. It often results in a |
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 | |
| # Like all art, the interpretation is up to the viewer. | |
| # Written 2012 by Jason Stephenson and Thomas Berezansky. | |
| use strict; | |
| use Data::Dumper; |
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
| ;; Use cperl-mode by default | |
| (defalias 'perl-mode 'cperl-mode) | |
| ;; cperl-mode doesn't have an add-style command, so we create our | |
| ;; style in a defun. | |
| (defun evergreen-perl-style () | |
| "Set cperl-mode for Evergreen coding guidelines." | |
| (setq cperl-indent-level 4 | |
| cperl-brace-offset 0 | |
| cperl-continued-brace-offset 0 |