Skip to content

Instantly share code, notes, and snippets.

View WolfgangDrescher's full-sized avatar

Wolfgang Drescher WolfgangDrescher

View GitHub Profile
!!!COM: Lassus, Orlandus
!!!OPR: Geistliche Psalmen mit dreyen Stimmen
!!!OTL@@LA: Beatus vir
**kern **text
*staff1 *staff1
*Ivox *
*I"Cantus *
*clefG2 *
*k[] *
*C:ion *
!!!COM: Lassus, Orlandus
!!!OPR: Geistliche Psalmen mit dreyen Stimmen
!!!OTL@@LA: Beatus vir
**kern **text
*staff1 *staff1
*Ivox *
*I"Cantus *
*clefG2 *
*k[] *
*C:ion *
@WolfgangDrescher
WolfgangDrescher / index.html
Created February 14, 2020 12:41 — forked from lpugin/index.html
Verovio worker
<!DOCTYPE html>
<html>
<title>Verovio test worker</title>
<body>
<button onclick="testWorker1()">Test Worker 1</button>
<button onclick="testWorker2()">Test Worker 2</button>
<script>
ticket = 0;
@WolfgangDrescher
WolfgangDrescher / page.html
Last active October 22, 2020 23:54
Verovio JavaScript Worker
<div id="score"></div>
<script src="/verovio-toolkit-proxy.js"></script>
<script>
// Create a new instance of VerovioToolkitProxy
const proxy = new VerovioToolkitProxy();
// Listen and wait for Module to emit onRuntimeInitialized
proxy.onRuntimeInitialized().then(async () => {

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@WolfgangDrescher
WolfgangDrescher / expandable-cols.php
Last active August 29, 2015 14:05
Resets expanding cols in Bootstraps gird system
<div class="container">
<div class="row">
<?php foreach(GalleryAlbum::findAll() as $key => $album): ?>
<div class="col col-xs-12 col-sm-6 col-md-4 col-lg-3">
<!-- col content, gallery image-->
</div>
<div class="clearfix visible-xs-block<?php
if(($key + 1) % 2 == 0) {
echo ' visible-sm-block';
@WolfgangDrescher
WolfgangDrescher / DBi-database-dump.php
Created July 30, 2014 21:31
Static method DBi::backup() that returns the complete database
<?php
class DBi {
// ...
static function backup($tables = '*') {
if($tables == '*') {
$tables = array();
$get = new Query('SHOW TABLES');