Skip to content

Instantly share code, notes, and snippets.

View hbuschme's full-sized avatar
👋

Hendrik Buschmeier hbuschme

👋
View GitHub Profile
@hbuschme
hbuschme / apalike-doi.bst
Last active May 21, 2022 15:13
Modified apalike.bst (from https://ctan.org/tex-archive/biblio/bibtex/base) to include DOIs
% BibTeX `apalike' bibliography style (version 0.99a, 8-Dec-10), adapted from
% the `alpha' style, version 0.99a; for BibTeX version 0.99a.
%
% Copyright (C) 1988, 2010 Oren Patashnik.
% Unlimited copying and redistribution of this file are permitted as long as
% it is unmodified. Modifications (and redistribution of modified versions)
% are also permitted, but only if the resulting file is renamed.
%
% Differences between this style and `alpha' are generally heralded by a `%'.
% The file btxbst.doc has the documentation for alpha.bst.

Keybase proof

I hereby claim:

  • I am hbuschme on github.
  • I am hbuschme (https://keybase.io/hbuschme) on keybase.
  • I have a public key ASCoUHSElzqJ4UrX-QuNCfHL4_XJTDtnmHpPOlETIB9o6Qo

To claim this, I am signing this object:

@hbuschme
hbuschme / tacos2008-programm.md
Created February 2, 2014 19:53
Programm der 18. Tagung der Computerlinguistik-Studierenden (TaCoS 2008, Potsdam, Germany)

Programm der 18. Tagung der Computerlinguistik-Studierenden (TaCoS 2008, Potsdam, Germany)

27.–29. Juni 2008

Freitag, 27. Juni 2008

10:00 Begrüßung, Prof. Jonas Kuhn

10:20 Ankündigungen

@hbuschme
hbuschme / isca-open-access-opinion.md
Created January 21, 2014 21:23
Email to the International Speech Communication Association on making the ISCA archive Open Access.

Dear Martin Cooke,

thanks for bringing up the issue of open access for ISCA archive (http://www.isca-speech.org/iscapad/iscapad.php?module=article&id=6070), something I have heard people – myself included – complaining about regularly.

From an author’s and reader’s perspective, I do not see a single reason for having a closed members-only ISCA archive. Here are some arguments for an ISCA archive that is open to everyone (there are of course many more):

  • Currently ISCA archive is only accessible for ISCA members. Working in an interdisciplinary field (artificial intelligence, human-computer interaction, speech science, linguistics) many of my colleagues who are potentially interested in my work have no interest in becoming an ISCA member because speech science and speech technology is not their field of research. Accessing my ISCA papers is not possible at all for them.

  • Is the right to self-archive the preprint – or even the official version – of Interspeech papers granted by ISCA (on personal websites

@hbuschme
hbuschme / incrementalstats.py
Last active December 24, 2015 11:19
Incrementally calculate sample mean, std, and var.
from __future__ import division
import numbers
import numpy as np
class IncrementalMeanStd(object):
'''Incremental calculation of sample mean, std, and var.
Based on http://www.johndcook.com/standard_deviation.html
'''
@hbuschme
hbuschme / buildWithPortAudioMacHomebrew.sh
Created September 5, 2013 21:12
Build script for openSMILE 2.0rc1 on Mac OS X 10.8, with homebrewed PortAudio. This script is derived from the script "buildWithPortAudio.sh" included in the source package of openSMILE 2.0rc1 (released 2013-05-17, URL: http://sourceforge.net/projects/opensmile/files/opensmile-2.0-rc1.tar.gz/download). It links to a system-wide PortAudio version…
#!/bin/sh
# License: GPLv3
#Usage buildWithPortAudio.sh -p [install-prefix] -o [opencv path]
# Default install prefix is $Pwd/inst
OPENCV_INST=""
INSTPREFIX=""