Skip to content

Instantly share code, notes, and snippets.

@pascalwacker
pascalwacker / Update SwissMarches Character Received XP
Created December 18, 2021 18:18
Google Sheets Script to update a timestamp if a field in the row gets updated
function onEdit() {
updateSwissMarchesCharacterReceivedXP();
}
function updateSwissMarchesCharacterReceivedXP() {
// enable/disable debug mode
var debugMode = false;
// definitions
var sheetName = "Player Characters";
@pascalwacker
pascalwacker / docker-compose.yml
Created January 24, 2019 12:22
Docker Compose file for DMDB Course
version: "3"
services:
dmdb-db:
image: postgres
container_name: dmdb-db
environment:
POSTGRES_USER: visionen
POSTGRES_PASSWORD: dmdbisfun
volumes:
- /var/lib/postgresql/data
@pascalwacker
pascalwacker / build.sh
Last active July 14, 2018 11:19
Create Electron Executables (on Linux)
#####################################################
# Replace these: #
# #
# replace "your-name" at --executable-name #
# replace "/path/to" at --icon #
# #
# Create Icons: #
# https://www.npmjs.com/package/electron-icon-maker #
#####################################################
@pascalwacker
pascalwacker / testingTester.sh
Last active April 10, 2018 21:44
A tester for the tester. Runs the tester with window sizes between 1 and 100 and saves the output in a file in the "testOutput" directory
#!/bin/bash
# put this file in the same directory as your reliable.c file and run make before running it.
mkdir -p testOutput #create folder if it not exists
# for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 24
@pascalwacker
pascalwacker / Tracking.sol
Created February 15, 2018 14:56
Incremental work on the BIOTS2018 hackaton @ ETHZ
pragma solidity ^0.4.18;
/**
* Contract for shipment
*/
contract Tracking {
struct Data {
uint id; // id of the data base row
uint ts; // unix timestamp
string dataHash; // hash to verify
add_action( 'wp_enqueue_scripts', 'load_old_jquery_fix', 100 );
function load_old_jquery_fix() {
if ( ! is_admin() ) {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', ( "//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js" ), false, '1.11.3' );
wp_enqueue_script( 'jquery' );
}
}
@pascalwacker
pascalwacker / mattermost.post.php
Created September 27, 2016 17:50
Mattermost PHP Post example
// target webhook
$target = 'https://dev.bermos.tech/hooks/xxx'; // get your webhook at "Integrationen" at the settings
// message body
$body = "| Course | Time | Room | Video | Prof |\n";
$body .= "|:--|:--|:--|\n";
$body .= "| Test | XX:XX-YY:YY | HG E7 | :white_check_mark: HG E5 | FooBar |\n";
$body .= "| Test 2 | XX:XX-YY:YY | HG E7 | No | FooBar |\n";
$body .= "\n";
// this is an example for a course bot, using a table. Mattermost supports MD
@pascalwacker
pascalwacker / load.jquery.js
Last active August 26, 2016 12:48
jQuery.load with fragment and inline scripts
/**
* Let's asume, we try to use jQuery.load() to load a fragment of a page and have it include the inline scripts
*/
var target = jQuery('#target'),
urlToLoad = '/foobar/baz.html',
fragment = '#wrapper';
jQuery(document).on('ready', function() {
target.loadWithScripts(urlToLoad + ' ' + fragment, function(data, status, jqXHR) {
console.log('done loading `' + fragment + '` from url `' + urlToLoad + '` and executing all the scripts! (you\'re welcome ;))');