Skip to content

Instantly share code, notes, and snippets.

View adrianpike's full-sized avatar

Adrian Pike adrianpike

View GitHub Profile
@M0LTE
M0LTE / bpq32.cfg
Last active August 11, 2025 20:03
bpq32.cfg for GB7RDG
SIMPLE ; sets a lot of defaults
NODECALL=GB7RDG ; Node callsign
NODEALIAS=THURST ; Node alias (6 characters max)
LOCATOR=IO91lk ; Maidenhead locator
MAPCOMMENT=40m, 6m, 2m, 70cm
PASSWORD=xxxxxxxx
AUTOSAVE=1
EnableEvents=1
EnableM0LTEMap=1
@inertialbit
inertialbit / culerity.js
Created May 5, 2011 17:41 — forked from jlindsey/culerity.js
Using Cucumber/Capybara/Culerity, a step to wait until all AJAX calls are complete.
// this allows culerity to wait until all ajax requests have finished
jQuery(function($) {
var original_ajax = $.ajax;
var count_down = function(callback) {
return function() {
try {
if(callback) {
callback.apply(this, arguments);
};
} catch(e) {