Finish updating to Hull Harvard 2025. Please see the notes at the top of the .bib files and below the commented bits for further information if you are migrating.

Ref <https://www.youtube.com/watch?v=uB8K5hFdEu4>.
This commit is contained in:
Starbeamrainbowlabs 2025-03-11 17:02:55 +00:00
parent 7b8de6e697
commit f8acbee1f0
Signed by: sbrl
GPG key ID: 1BE5172E637709C2
8 changed files with 139 additions and 80 deletions

Binary file not shown.

View file

@ -2,7 +2,7 @@
\label{section:aims-and-objectives}
\section{Section}
Example
Example \citep{DickGrune2008,Cole1988}
\subsection{Subsection}

View file

@ -1,7 +1,7 @@
\begin{appendices}
\chapter{Appendix A: Example Appendix}
\chapter{Example Appendix}
\label{chapter:appendix-a}
\begin{lstlisting}

View file

@ -74,6 +74,7 @@ ENTRY
title
type
url
doi
volume
year
}
@ -940,16 +941,18 @@ FUNCTION {format.org.or.pub}
address empty$ t empty$ and
'skip$
{
address "address" bibinfo.check *
t empty$
'skip$
{ address empty$
'skip$
{ ": " * }
if$
t *
}
if$
t *
% Hull Harvard 2025+ does not require the publisher's address --@sbrl 2025-03-11
% address "address" bibinfo.check *
% t empty$
% 'skip$
% { address empty$
% 'skip$
% { ": " * }
% if$
% t *
% }
% if$
}
if$
}
@ -961,6 +964,20 @@ FUNCTION {format.organization.address}
{ organization "organization" bibinfo.check format.org.or.pub
}
FUNCTION {format.doi}
{
't :=
""
t empty$
'skip$
{
"\url{https://doi.org/" *
t *
"}" *
}
if$
}
FUNCTION {article}
{ output.bibitem
format.authors "author" output.check
@ -981,6 +998,13 @@ FUNCTION {article}
format.pages output
}
if$
doi empty$ doi missing$ or
'skip$
{
new.sentence
doi "doi" bibinfo.check format.doi output
}
if$
format.note output
fin.entry
}
@ -1143,6 +1167,13 @@ FUNCTION {mastersthesis}
bbl.mthesis format.thesis.type output.nonnull
school "school" bibinfo.warn output
address "address" bibinfo.check output
howpublished empty$ howpublished missing$ or
'skip$
{
new.sentence
howpublished "howpublished" bibinfo.check output
}
if$
format.note output
fin.entry
}
@ -1159,6 +1190,13 @@ FUNCTION {dissertation}
bbl.dissertation format.thesis.type output.nonnull
school "school" bibinfo.warn output
address "address" bibinfo.check output
howpublished empty$ howpublished missing$ or
'skip$
{
new.sentence
howpublished "howpublished" bibinfo.check output
}
if$
format.note output
fin.entry
}

View file

@ -30,43 +30,47 @@ inproceedings{Kazhdan2006,
Misc{Vulkan2016,
author = {{The Khronos Vulkan Working Group}},
title = {Vulkan 1.0.31 - A Specification},
howpublished = {Available online: \url{https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html}} [Accessed 15/10/2016]},
howpublished = {\url{https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html}} [Accessed 15/10/2016]},
year = {2016},
}
Misc{Hull2016HarvardRef,
author = {{University of Hull}},
title = {Harvard Referencing},
howpublished = {Available online: \url{http://www2.hull.ac.uk/lli/referencing/harvard.html}} [Accessed 15/10/2016]},
howpublished = {\url{http://www2.hull.ac.uk/lli/referencing/harvard.html}} [Accessed 15/10/2016]},
year = {2016},
}
% NOTE: The OLD format for [Accessed] was [Accessed DD/MM/YYYY], as in [Accessed 04/05/2025]. The NEW format is [Accessed D MMM YYYY], as in [Accessed 4 Mar 2025]. Sorry.... but you'll hafta update all these yourself :-/ Consider using AI to do it, or find-and-replace?
% NOTE: The other change is the removal of "Available online: " - don't forget to remove that too
% NOTE: Don't forget to do the `howpublished = "\url{...} [Accessed ...]"` on ALL sources where possible now, not just (at sign here)Misc for websites! This is also new.
@Misc{Atom2018,
author = {{Github, Inc.}},
year = {2018},
title = {Atom},
howpublished = {Available online; \url{https://atom.io/} [Accessed 2/05/2018]}
howpublished = {\url{https://atom.io/} [Accessed 02 May 2018]}
}
@Misc{Bison2015,
author = {{Free Software Foundation, Inc.}},
year = {2015},
title = {GNU Bison Manual},
howpublished = {Available online: \url{https://www.gnu.org/software/bison/manual/} [Accessed 19/04/2018]}
howpublished = {\url{https://www.gnu.org/software/bison/manual/} [Accessed 19 Apr 2018]}
}
@Misc{BroMonitor2018,
author = {{Bro Project Team}},
year = {2018},
title = {The Bro Network Security Monitor},
howpublished = {Available online: \url{https://www.bro.org/} [Accessed 17/01/2018]}
howpublished = {\url{https://www.bro.org/} [Accessed 17 Jan 2018]}
}
@Misc{ByronJ2017,
author = {{Byron, J.}},
year = {2017},
title = {MIDI Tutorial - learn.sparkfun.com},
howpublished = {Available online: \url{https://learn.sparkfun.com/tutorials/midi-tutorial/all} [Accessed 18/01/2018]}
howpublished = {\url{https://learn.sparkfun.com/tutorials/midi-tutorial/all} [Accessed 18 Jan 2018]}
}
@article{Cole1988,
@ -79,16 +83,17 @@ Misc{Hull2016HarvardRef,
year = {1988},
publisher = {Taylor & Francis},
doi = {10.1080/00140138808966646},
note ={PMID: 3359985},
URL = {https://doi.org/10.1080/00140138808966646},
eprint = {https://doi.org/10.1080/00140138808966646}
}
note = {PMID: 3359985},
% NOTE: Do NOT have a `url` field AND a `doi` field at the same time if your `url` is a DOI! The DOI field will sort it out for you!
URL = {https://doi.org/10.1080/00140138808966646},
@Misc{DaveMarshall2001,
author = {Dave Marshall},
title = {MIDI Messages},
year = {2001},
howpublished = {Available online: \url{https://users.cs.cf.ac.uk/Dave.Marshall/Multimedia/node158.html} [Accessed 18/01/2018]}
howpublished = {\url{https://users.cs.cf.ac.uk/Dave.Marshall/Multimedia/node158.html} [Accessed 18 Jan 2018]}
}
@Book{DickGrune2008,
@ -105,7 +110,7 @@ Misc{Hull2016HarvardRef,
title = {Sound Based Network Analysis Tool},
school = {University of Hull},
year = {2012},
howpublished = {Available online: \url{https://hydra.hull.ac.uk/assets/hull:6391a/content} [Accessed 10/13/2017]}
howpublished = {\url{https://hydra.hull.ac.uk/assets/hull:6391a/content} [Accessed 13 Oct 2017]}
}
@Book{DragonBook2006,
@ -121,7 +126,7 @@ Misc{Hull2016HarvardRef,
author = "Tom Moebert and Contributors",
title = {FluidSynth | Software synthesizer based on the SoundFont 2 specifications},
year = {2017},
howpublished = {Available online: \url{http://www.fluidsynth.org/} [Accessed 13/10/2017]}
howpublished = {\url{http://www.fluidsynth.org/} [Accessed 13 Oct 2017]}
}
@manual{grep,
@ -142,21 +147,21 @@ Misc{Hull2016HarvardRef,
author = {Eddie Kohler},
year = {2017},
title = {Ipsumdump and Ipaggcreate},
howpublished = {Available online: \url{https://web.archive.org/web/20170909151053/http://www.read.seas.harvard.edu/~kohler/ipsumdump/} [Accessed 17/01/2018]}
howpublished = {\url{https://web.archive.org/web/20170909151053/http://www.read.seas.harvard.edu/~kohler/ipsumdump/} [Accessed 17 Jan 2018]}
}
@Misc{Naudio2018,
author = "Mark Heath and Contributors",
year = {2018},
title = {naudio/NAudio: Audio and MIDI library for .NET},
howpublished = {Available online: \url{https://github.com/naudio/NAudio} [Accessed 17/01/2018]}
howpublished = {\url{https://github.com/naudio/NAudio} [Accessed 17 Jan 2018]}
}
@Misc{Kampe2012,
author = {{Mark Kampe}},
year = {2012},
title = {Guidelines for Command Line Interface Design},
howpublished = {Available online: \url{http://www.cs.pomona.edu/classes/cs181f/supp/cli.html} [Accessed 27/04/2018]}
howpublished = {\url{http://www.cs.pomona.edu/classes/cs181f/supp/cli.html} [Accessed 27 Apr 2018]}
}
@manual{man,
@ -170,35 +175,35 @@ Misc{Hull2016HarvardRef,
author = {{Atsushi Eno}},
title = {atsushieno/managed-midi: Cross-platform MIDI processing library for mono and .NET},
year = {2018},
howpublished = {Available online: \url{https://github.com/atsushieno/managed-midi/} [Accessed 17/01/2018]}
howpublished = {\url{https://github.com/atsushieno/managed-midi/} [Accessed 17 Jan 2018]}
}
@Misc{McGooganEtAl2017,
author = "McGoogan, Cara and Titcomb, J. and Krol, C.",
year = {2017},
title = {What is WannaCry and how does ransomware work?},
howpublished = {Available online: \url{http://www.telegraph.co.uk/technology/0/ransomware-does-work/} [Accessed 13/10/2017]}
howpublished = {\url{http://www.telegraph.co.uk/technology/0/ransomware-does-work/} [Accessed 13 Oct 2017]}
}
@Misc{MidiAssociation2017,
author = {{The MIDI Association}},
year = {2017},
title = {About MIDI-Part 3:MIDI Messages},
howpublished = {Available online: \url{https://www.midi.org/articles/about-midi-part-3-midi-messages} [Accessed 07/05/2018]}
howpublished = {\url{https://www.midi.org/articles/about-midi-part-3-midi-messages} [Accessed 07 May 2018]}
}
@Misc{MidiAssociationSummary2017,
author = {{The MIDI Association}},
year = {2017},
title = {Summary of MIDI Messages},
howpublished = {Available online: \url{https://www.midi.org/specifications/item/table-1-summary-of-midi-message} [Accessed 07/05/2018]}
howpublished = {\url{https://www.midi.org/specifications/item/table-1-summary-of-midi-message} [Accessed 07 May 2018]}
}
@Misc{MidiToolkit2007,
author = {{Leslie Sanford}},
year = {2007},
title = {C\# MIDI Toolkit - CodeProject},
howpublished = {Available online: \url{https://www.codeproject.com/Articles/6228/C-MIDI-Toolkit} [Accessed 17/01/2018]}
howpublished = {\url{https://www.codeproject.com/Articles/6228/C-MIDI-Toolkit} [Accessed 17 Jan 2018]}
}
@dissertation{Mulholland2013,
@ -206,42 +211,42 @@ Misc{Hull2016HarvardRef,
year = {2013},
title = {Sound Based Network Intrusion Detection.},
school = {The University of Hull},
howpublished = {Available online: \url{https://hydra.hull.ac.uk/assets/hull:7736a/content} [Accessed 13/10/2017]}
howpublished = {\url{https://hydra.hull.ac.uk/assets/hull:7736a/content} [Accessed 13 Oct 2017]}
}
@Misc{PacketNet2018,
author = "Chris Morgan and Contributors",
year = {2017},
title = {antmicro/Packet.Net: Forked from \url{http://sourceforge.net/projects/packetnet/}},
howpublished = {Available online: \url{https://github.com/antmicro/Packet.Net} [Accessed 17/01/2018]}
howpublished = {\url{https://github.com/antmicro/Packet.Net} [Accessed 17 Jan 2018]}
}
@Misc{Pygame2018,
author = {{Pygame contributors}},
year = {2018},
title = {{Pygame Front Page — Pygame v1.9.2 documentation}},
howpublished = {Available online: \url{http://www.pygame.org/docs/} [Accessed 14/01/2018]}
howpublished = {\url{http://www.pygame.org/docs/} [Accessed 14 Jan 2018]}
}
@Misc{Roos2008,
author = {{Roos, D.}},
year = {2008},
title = {How MIDI Works},
howpublished = {Available online: \url{http://entertainment.howstuffworks.com/midi1.htm} [Accessed 13/10/2017]}
howpublished = {\url{http://entertainment.howstuffworks.com/midi1.htm} [Accessed 13 Oct 2017]}
}
@Misc{SharpPcap2018,
author = "Chris Morgan and Contributors",
year = {2017},
title = {chmorgan/sharppcap: Official repository - Fully managed, cross platform (Windows, Mac, Linux) .NET library for capturing packets},
howpublished = {Available online: \url{https://github.com/chmorgan/sharppcap} [Accessed 17/01/2018]}
howpublished = {\url{https://github.com/chmorgan/sharppcap} [Accessed 17 Jan 2018]}
}
@Misc{Snort2018,
author = {{The Snort Project}},
year = {2018},
title = {{Snort - Network Intrusion Detection \& Prevention System}},
howpublished = {Available online: \url{https://www.snort.org/} [Accessed 17/01/2018]}
howpublished = {\url{https://www.snort.org/} [Accessed 17 Jan 2018]}
}
@manual{tcpdump,
@ -257,28 +262,28 @@ Misc{Hull2016HarvardRef,
author = {Theodore Norvell},
year = {1999},
title = {Parsing Expressions by Recursive Descent},
howpublished = {Available online: \url{https://www.engr.mun.ca/~theo/Misc/exp_parsing.htm} [Accessed 19/04/2018]}
howpublished = {\url{https://www.engr.mun.ca/~theo/Misc/exp_parsing.htm} [Accessed 19 Apr 2018]}
}
@Misc{TiMidity2004,
author = {{Masanao Izumo et al.}},
year = {2004},
title = {TiMidity++},
howpublished = {Available online: \url{http://timidity.sourceforge.net/} [Accessed 17/01/2018]}
howpublished = {\url{http://timidity.sourceforge.net/} [Accessed 17 Jan 2018]}
}
@Misc{TonalSoft2005,
author = {{Tonalsoft Inc.}},
year = {2005},
title = {Midi Note-on Message, Midi Note-off Message},
howpublished = {Available online: \url{http://www.tonalsoft.com/pub/pitch-bend/pitch.2005-08-31.17-00.aspx} [Accessed 18/01/2018]}
howpublished = {\url{http://www.tonalsoft.com/pub/pitch-bend/pitch.2005-08-31.17-00.aspx} [Accessed 18 Jan 2018]}
}
@Misc{USCERT2016,
author = {{US-CERT}},
year = {2016},
title = {OpenSSL 'Heartbleed' vulnerability (CVE-2014-0160)},
howpublished = {Available online: \url{https://www.us-cert.gov/ncas/alerts/TA14-098A} [Accessed 13/10/2017]}
howpublished = {\url{https://www.us-cert.gov/ncas/alerts/TA14-098A} [Accessed 13 Oct 2017]}
}
@dissertation{VictorvanderHelm2016,
@ -292,7 +297,7 @@ Misc{Hull2016HarvardRef,
author = {{Microsoft Corporation}},
year = {2018},
title = {Visual Studio Code - Code Editing. Redefined},
howpublished = {Available online: \url{https://code.visualstudio.com/} [Accessed 02/05/2018]}
howpublished = {\url{https://code.visualstudio.com/} [Accessed 02 May 2018]}
}
@dissertation{Walsh2010,
@ -300,20 +305,19 @@ Misc{Hull2016HarvardRef,
year = {2010},
title = {Sound Based Network Intrusion Detection},
school = {The University of Hull},
howpublished = {Available online: \url{https://hydra.hull.ac.uk/assets/hull:2817a/content} [Accessed
13/10/2017]}
howpublished = {\url{https://hydra.hull.ac.uk/assets/hull:2817a/content} [Accessed 13 Oct 2017]}
}
@Misc{Wireshark2018,
author = {{Wireshark Foundation}},
year = {2018},
title = {Wireshark · Go Deep.},
howpublished = {Available online: \url{https://www.wireshark.org/} [Accessed 18/01/2018]}
howpublished = {\url{https://www.wireshark.org/} [Accessed 18 Jan 2018]}
}
@Misc{WiresharkUsersGuide2014,
author = {{Wireshark Foundation}},
year = {2014},
title = {Wireshark Users Guide},
howpublished = {Available online: \url{https://www.wireshark.org/download/docs/user-guide-a4.pdf} [Accessed 18/01/2018]}
title = {Wireshark User's Guide},
howpublished = {\url{https://www.wireshark.org/download/docs/user-guide-a4.pdf} [Accessed 18 Jan 2018]}
}

Binary file not shown.

View file

@ -1167,6 +1167,13 @@ FUNCTION {mastersthesis}
bbl.mthesis format.thesis.type output.nonnull
school "school" bibinfo.warn output
address "address" bibinfo.check output
howpublished empty$ howpublished missing$ or
'skip$
{
new.sentence
howpublished "howpublished" bibinfo.check output
}
if$
format.note output
fin.entry
}
@ -1183,6 +1190,13 @@ FUNCTION {dissertation}
bbl.dissertation format.thesis.type output.nonnull
school "school" bibinfo.warn output
address "address" bibinfo.check output
howpublished empty$ howpublished missing$ or
'skip$
{
new.sentence
howpublished "howpublished" bibinfo.check output
}
if$
format.note output
fin.entry
}

View file

@ -30,43 +30,47 @@ inproceedings{Kazhdan2006,
Misc{Vulkan2016,
author = {{The Khronos Vulkan Working Group}},
title = {Vulkan 1.0.31 - A Specification},
howpublished = {Available online: \url{https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html}} [Accessed 15/10/2016]},
howpublished = {\url{https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html}} [Accessed 15/10/2016]},
year = {2016},
}
Misc{Hull2016HarvardRef,
author = {{University of Hull}},
title = {Harvard Referencing},
howpublished = {Available online: \url{http://www2.hull.ac.uk/lli/referencing/harvard.html}} [Accessed 15/10/2016]},
howpublished = {\url{http://www2.hull.ac.uk/lli/referencing/harvard.html}} [Accessed 15/10/2016]},
year = {2016},
}
% NOTE: The OLD format for [Accessed] was [Accessed DD/MM/YYYY], as in [Accessed 04/05/2025]. The NEW format is [Accessed D MMM YYYY], as in [Accessed 4 Mar 2025]. Sorry.... but you'll hafta update all these yourself :-/ Consider using AI to do it, or find-and-replace?
% NOTE: The other change is the removal of "Available online: " - don't forget to remove that too
% NOTE: Don't forget to do the `howpublished = "\url{...} [Accessed ...]"` on ALL sources where possible now, not just (at sign here)Misc for websites! This is also new.
@Misc{Atom2018,
author = {{Github, Inc.}},
year = {2018},
title = {Atom},
howpublished = {Available online; \url{https://atom.io/} [Accessed 2/05/2018]}
howpublished = {\url{https://atom.io/} [Accessed 02 May 2018]}
}
@Misc{Bison2015,
author = {{Free Software Foundation, Inc.}},
year = {2015},
title = {GNU Bison Manual},
howpublished = {Available online: \url{https://www.gnu.org/software/bison/manual/} [Accessed 19/04/2018]}
howpublished = {\url{https://www.gnu.org/software/bison/manual/} [Accessed 19 Apr 2018]}
}
@Misc{BroMonitor2018,
author = {{Bro Project Team}},
year = {2018},
title = {The Bro Network Security Monitor},
howpublished = {Available online: \url{https://www.bro.org/} [Accessed 17/01/2018]}
howpublished = {\url{https://www.bro.org/} [Accessed 17 Jan 2018]}
}
@Misc{ByronJ2017,
author = {{Byron, J.}},
year = {2017},
title = {MIDI Tutorial - learn.sparkfun.com},
howpublished = {Available online: \url{https://learn.sparkfun.com/tutorials/midi-tutorial/all} [Accessed 18/01/2018]}
howpublished = {\url{https://learn.sparkfun.com/tutorials/midi-tutorial/all} [Accessed 18 Jan 2018]}
}
@article{Cole1988,
@ -89,7 +93,7 @@ URL = {https://doi.org/10.1080/00140138808966646},
author = {Dave Marshall},
title = {MIDI Messages},
year = {2001},
howpublished = {Available online: \url{https://users.cs.cf.ac.uk/Dave.Marshall/Multimedia/node158.html} [Accessed 18/01/2018]}
howpublished = {\url{https://users.cs.cf.ac.uk/Dave.Marshall/Multimedia/node158.html} [Accessed 18 Jan 2018]}
}
@Book{DickGrune2008,
@ -106,7 +110,7 @@ URL = {https://doi.org/10.1080/00140138808966646},
title = {Sound Based Network Analysis Tool},
school = {University of Hull},
year = {2012},
howpublished = {Available online: \url{https://hydra.hull.ac.uk/assets/hull:6391a/content} [Accessed 10/13/2017]}
howpublished = {\url{https://hydra.hull.ac.uk/assets/hull:6391a/content} [Accessed 13 Oct 2017]}
}
@Book{DragonBook2006,
@ -122,7 +126,7 @@ URL = {https://doi.org/10.1080/00140138808966646},
author = "Tom Moebert and Contributors",
title = {FluidSynth | Software synthesizer based on the SoundFont 2 specifications},
year = {2017},
howpublished = {Available online: \url{http://www.fluidsynth.org/} [Accessed 13/10/2017]}
howpublished = {\url{http://www.fluidsynth.org/} [Accessed 13 Oct 2017]}
}
@manual{grep,
@ -143,21 +147,21 @@ URL = {https://doi.org/10.1080/00140138808966646},
author = {Eddie Kohler},
year = {2017},
title = {Ipsumdump and Ipaggcreate},
howpublished = {Available online: \url{https://web.archive.org/web/20170909151053/http://www.read.seas.harvard.edu/~kohler/ipsumdump/} [Accessed 17/01/2018]}
howpublished = {\url{https://web.archive.org/web/20170909151053/http://www.read.seas.harvard.edu/~kohler/ipsumdump/} [Accessed 17 Jan 2018]}
}
@Misc{Naudio2018,
author = "Mark Heath and Contributors",
year = {2018},
title = {naudio/NAudio: Audio and MIDI library for .NET},
howpublished = {Available online: \url{https://github.com/naudio/NAudio} [Accessed 17/01/2018]}
howpublished = {\url{https://github.com/naudio/NAudio} [Accessed 17 Jan 2018]}
}
@Misc{Kampe2012,
author = {{Mark Kampe}},
year = {2012},
title = {Guidelines for Command Line Interface Design},
howpublished = {Available online: \url{http://www.cs.pomona.edu/classes/cs181f/supp/cli.html} [Accessed 27/04/2018]}
howpublished = {\url{http://www.cs.pomona.edu/classes/cs181f/supp/cli.html} [Accessed 27 Apr 2018]}
}
@manual{man,
@ -171,35 +175,35 @@ URL = {https://doi.org/10.1080/00140138808966646},
author = {{Atsushi Eno}},
title = {atsushieno/managed-midi: Cross-platform MIDI processing library for mono and .NET},
year = {2018},
howpublished = {Available online: \url{https://github.com/atsushieno/managed-midi/} [Accessed 17/01/2018]}
howpublished = {\url{https://github.com/atsushieno/managed-midi/} [Accessed 17 Jan 2018]}
}
@Misc{McGooganEtAl2017,
author = "McGoogan, Cara and Titcomb, J. and Krol, C.",
year = {2017},
title = {What is WannaCry and how does ransomware work?},
howpublished = {Available online: \url{http://www.telegraph.co.uk/technology/0/ransomware-does-work/} [Accessed 13/10/2017]}
howpublished = {\url{http://www.telegraph.co.uk/technology/0/ransomware-does-work/} [Accessed 13 Oct 2017]}
}
@Misc{MidiAssociation2017,
author = {{The MIDI Association}},
year = {2017},
title = {About MIDI-Part 3:MIDI Messages},
howpublished = {Available online: \url{https://www.midi.org/articles/about-midi-part-3-midi-messages} [Accessed 07/05/2018]}
howpublished = {\url{https://www.midi.org/articles/about-midi-part-3-midi-messages} [Accessed 07 May 2018]}
}
@Misc{MidiAssociationSummary2017,
author = {{The MIDI Association}},
year = {2017},
title = {Summary of MIDI Messages},
howpublished = {Available online: \url{https://www.midi.org/specifications/item/table-1-summary-of-midi-message} [Accessed 07/05/2018]}
howpublished = {\url{https://www.midi.org/specifications/item/table-1-summary-of-midi-message} [Accessed 07 May 2018]}
}
@Misc{MidiToolkit2007,
author = {{Leslie Sanford}},
year = {2007},
title = {C\# MIDI Toolkit - CodeProject},
howpublished = {Available online: \url{https://www.codeproject.com/Articles/6228/C-MIDI-Toolkit} [Accessed 17/01/2018]}
howpublished = {\url{https://www.codeproject.com/Articles/6228/C-MIDI-Toolkit} [Accessed 17 Jan 2018]}
}
@dissertation{Mulholland2013,
@ -207,42 +211,42 @@ URL = {https://doi.org/10.1080/00140138808966646},
year = {2013},
title = {Sound Based Network Intrusion Detection.},
school = {The University of Hull},
howpublished = {Available online: \url{https://hydra.hull.ac.uk/assets/hull:7736a/content} [Accessed 13/10/2017]}
howpublished = {\url{https://hydra.hull.ac.uk/assets/hull:7736a/content} [Accessed 13 Oct 2017]}
}
@Misc{PacketNet2018,
author = "Chris Morgan and Contributors",
year = {2017},
title = {antmicro/Packet.Net: Forked from \url{http://sourceforge.net/projects/packetnet/}},
howpublished = {Available online: \url{https://github.com/antmicro/Packet.Net} [Accessed 17/01/2018]}
howpublished = {\url{https://github.com/antmicro/Packet.Net} [Accessed 17 Jan 2018]}
}
@Misc{Pygame2018,
author = {{Pygame contributors}},
year = {2018},
title = {{Pygame Front Page — Pygame v1.9.2 documentation}},
howpublished = {Available online: \url{http://www.pygame.org/docs/} [Accessed 14/01/2018]}
howpublished = {\url{http://www.pygame.org/docs/} [Accessed 14 Jan 2018]}
}
@Misc{Roos2008,
author = {{Roos, D.}},
year = {2008},
title = {How MIDI Works},
howpublished = {Available online: \url{http://entertainment.howstuffworks.com/midi1.htm} [Accessed 13/10/2017]}
howpublished = {\url{http://entertainment.howstuffworks.com/midi1.htm} [Accessed 13 Oct 2017]}
}
@Misc{SharpPcap2018,
author = "Chris Morgan and Contributors",
year = {2017},
title = {chmorgan/sharppcap: Official repository - Fully managed, cross platform (Windows, Mac, Linux) .NET library for capturing packets},
howpublished = {Available online: \url{https://github.com/chmorgan/sharppcap} [Accessed 17/01/2018]}
howpublished = {\url{https://github.com/chmorgan/sharppcap} [Accessed 17 Jan 2018]}
}
@Misc{Snort2018,
author = {{The Snort Project}},
year = {2018},
title = {{Snort - Network Intrusion Detection \& Prevention System}},
howpublished = {Available online: \url{https://www.snort.org/} [Accessed 17/01/2018]}
howpublished = {\url{https://www.snort.org/} [Accessed 17 Jan 2018]}
}
@manual{tcpdump,
@ -258,28 +262,28 @@ URL = {https://doi.org/10.1080/00140138808966646},
author = {Theodore Norvell},
year = {1999},
title = {Parsing Expressions by Recursive Descent},
howpublished = {Available online: \url{https://www.engr.mun.ca/~theo/Misc/exp_parsing.htm} [Accessed 19/04/2018]}
howpublished = {\url{https://www.engr.mun.ca/~theo/Misc/exp_parsing.htm} [Accessed 19 Apr 2018]}
}
@Misc{TiMidity2004,
author = {{Masanao Izumo et al.}},
year = {2004},
title = {TiMidity++},
howpublished = {Available online: \url{http://timidity.sourceforge.net/} [Accessed 17/01/2018]}
howpublished = {\url{http://timidity.sourceforge.net/} [Accessed 17 Jan 2018]}
}
@Misc{TonalSoft2005,
author = {{Tonalsoft Inc.}},
year = {2005},
title = {Midi Note-on Message, Midi Note-off Message},
howpublished = {Available online: \url{http://www.tonalsoft.com/pub/pitch-bend/pitch.2005-08-31.17-00.aspx} [Accessed 18/01/2018]}
howpublished = {\url{http://www.tonalsoft.com/pub/pitch-bend/pitch.2005-08-31.17-00.aspx} [Accessed 18 Jan 2018]}
}
@Misc{USCERT2016,
author = {{US-CERT}},
year = {2016},
title = {OpenSSL 'Heartbleed' vulnerability (CVE-2014-0160)},
howpublished = {Available online: \url{https://www.us-cert.gov/ncas/alerts/TA14-098A} [Accessed 13/10/2017]}
howpublished = {\url{https://www.us-cert.gov/ncas/alerts/TA14-098A} [Accessed 13 Oct 2017]}
}
@dissertation{VictorvanderHelm2016,
@ -293,7 +297,7 @@ URL = {https://doi.org/10.1080/00140138808966646},
author = {{Microsoft Corporation}},
year = {2018},
title = {Visual Studio Code - Code Editing. Redefined},
howpublished = {Available online: \url{https://code.visualstudio.com/} [Accessed 02/05/2018]}
howpublished = {\url{https://code.visualstudio.com/} [Accessed 02 May 2018]}
}
@dissertation{Walsh2010,
@ -301,20 +305,19 @@ URL = {https://doi.org/10.1080/00140138808966646},
year = {2010},
title = {Sound Based Network Intrusion Detection},
school = {The University of Hull},
howpublished = {Available online: \url{https://hydra.hull.ac.uk/assets/hull:2817a/content} [Accessed
13/10/2017]}
howpublished = {\url{https://hydra.hull.ac.uk/assets/hull:2817a/content} [Accessed 13 Oct 2017]}
}
@Misc{Wireshark2018,
author = {{Wireshark Foundation}},
year = {2018},
title = {Wireshark · Go Deep.},
howpublished = {Available online: \url{https://www.wireshark.org/} [Accessed 18/01/2018]}
howpublished = {\url{https://www.wireshark.org/} [Accessed 18 Jan 2018]}
}
@Misc{WiresharkUsersGuide2014,
author = {{Wireshark Foundation}},
year = {2014},
title = {Wireshark Users Guide},
howpublished = {Available online: \url{https://www.wireshark.org/download/docs/user-guide-a4.pdf} [Accessed 18/01/2018]}
title = {Wireshark User's Guide},
howpublished = {\url{https://www.wireshark.org/download/docs/user-guide-a4.pdf} [Accessed 18 Jan 2018]}
}