Skip to content

Instantly share code, notes, and snippets.

View itod's full-sized avatar

Todd Ditchendorf itod

View GitHub Profile
@itod
itod / voice_dictation_broken.txt
Created April 4, 2019 14:26
Chatterbug iOS App Showstopper Bug: Voice dictation completely broken in Self-lessons
# SETUP
## Device: iPhone SE
## OS: iOS 12.2
## Chatterbug App: 0.15.2 (20180806.1239.55)
@itod
itod / gen.sh
Created August 7, 2023 17:33 — forked from rmorey/gen.sh
List of Uniform Type Identifiers
/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -dump | grep uti: | cut -c 29- | sort | uniq > utis.txt
@itod
itod / php.vintage_grammar
Created August 8, 2023 23:18
PHP Syntax Highlighting Grammar for @VintageText
file
: thing+
;
@entryPoint
thing
: semi
| pi_beg
| pi_end
| func_decl
@itod
itod / Foo.m
Last active February 23, 2024 17:22
ObjC OpenSUSE
#import <stdio.h>
#import <Foundation/Foundation.h>
// sudo zyp in gcc-c++ gcc-objc gnustep-base-devel
// gcc -lobjc -lgnustep-base -fconstant-string-class=NSConstantString -fobjc-exceptions Foo.m -o Foo
// https://web.archive.org/web/20120816003625/http://blog.lyxite.com:80/2008/01/compile-objective-c-programs-using-gcc.html
@interface Foo : NSObject
@end
@itod
itod / times_table.html
Created September 10, 2025 19:22
Interactive Times Table
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Times Table</title>
<script type="text/javascript">
window.TOGGLE = false;