I hereby claim:
- I am nall on github.
- I am nall (https://keybase.io/nall) on keybase.
- I have a public key ASBdQFRV-jk4kMDVJUgD5Qul0XAJ1gmyjyHZwPq8m6hppwo
To claim this, I am signing this object:
#!/bin/bash | |
# vim: ft=sh sw=4 ts=4 et | |
# Overview | |
# -------- | |
# This script queries connected USB devices looking for the Elecraft K4's "Dual RS232" device. | |
# If such a device is found and the serial devices exist, they are listed as K4 candidates. If | |
# no devices are found, an error is printed. | |
# | |
# Instructions |
javascript: Promise.all([import('https://unpkg.com/[email protected]?module'), import('https://unpkg.com/@tehshrike/[email protected]'), ]).then(async ([{ | |
default: Turndown | |
}, { | |
default: Readability | |
}]) => { | |
/* Optional vault name */ | |
const vault = "LabNotes"; | |
/* Optional folder name such as "Clippings/" */ |
I hereby claim:
To claim this, I am signing this object:
#import <Cocoa/Cocoa.h> | |
void usage(char* progName, NSString* s) | |
{ | |
NSLog(@"%@", s); | |
NSLog(@"usage:\n"); | |
NSLog(@":%s <servicename> <pasteboard_contents>\n", progName); | |
} | |
int main(int argc, char** argv) |
// | |
// NSDate+SZRelationalOperators.h | |
// | |
// Created by Jon Nall on 12/8/09. | |
// Copyright 2009 STUNTAZ!!! All rights reserved. | |
// | |
// Category to help make comparing NSDates a bit more readable | |
@interface NSDate(SZRelationalOperators) |
#!/opt/bin/perl | |
use warnings; | |
use strict; | |
# Copyright (c) 2013 Jon Nall, STUNTAZ!!! All rights reserved. | |
# | |
# This script is intended to be run on a Synology NAS. It attempts | |
# to determine the external IP where the NAS is connected and then | |
# checks to see if it needs to update a DNS record. The server is | |
# updated if any of these are true: |
#define SVN_WC_NG_CHECK_ENV_VAR "SVN_I_LOVE_CORRUPTED_WORKING_COPIES_SO_DISABLE_CHECK_FOR_WC_NG" | |
static svn_error_t * | |
is_inside_wc_ng(const char *abspath, | |
const char *target_path, | |
int *wc_format, | |
apr_pool_t *pool) | |
{ | |
svn_node_kind_t kind; | |
const char *wc_db_path; |
on run argv | |
set theServiceName to "SOMETHING HERE" | |
set theResult to "No Keychain entry found" | |
tell application "Keychain Scripting" | |
set isLocked to locked of current keychain | |
if (isLocked is true) then | |
unlock current keychain | |
end if | |
#include <pthread.h> | |
#include <stdio.h> | |
#include <inttypes.h> | |
#include <signal.h> | |
#include <mach/mach_types.h> | |
// compile: | |
// monoco% gcc -m32 -o break break.m -lpthread -F/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Kernel.framework | |