Skip to content

Instantly share code, notes, and snippets.

View kcarnold's full-sized avatar

Kenneth C. Arnold kcarnold

  • Grand Rapids, MI
View GitHub Profile
@kcarnold
kcarnold / validate_proclaim.py
Created March 24, 2025 19:43
Proclaim slideshow validation
import sqlite3
from pathlib import Path
from collections import defaultdict
import json
from lxml import etree
def decode_richtextXML(xml):
# _richtextfield:Lyrics <Paragraph Language="en-US" Margin="0,0,0,0"><Run Text="I love You Lord" /></Paragraph><Paragraph Language="en-US" Margin="0,0,0,0"><Run Text="Oh Your mercy never fails me" /></Paragraph><Paragraph Language="en-US" Margin="0,0,0,0"><Run Text="All my days" /></Paragraph><Paragraph Language="en-US" Margin="0,0,0,0"><Run Text="I’ve been held in Your hands" /></Paragraph><Paragraph Language="en-US" Margin="0,0,0,0" /><Paragraph Language="en-US" Margin="0,0,0,0"><Run Text="From the moment that I wake up" /></Paragraph><Paragraph Language="en-US" Margin="0,0,0,0"><Run Text="Until I lay my head" /></Paragraph><Paragraph Language="en-US" Margin="0,0,0,0"><Run Text="I will sing of the goodness of God" /></Paragraph><Paragraph Language="en-US" Margin="0,0,0,0" /><Paragraph Language="en-US" Margin="0,0,0,0"><Run Text="All my life You have been faithful"
@kcarnold
kcarnold / dump_proclaim.py
Created March 11, 2025 15:16
dump_proclaim.py
import sqlite3
from pathlib import Path
from collections import defaultdict
import json
# NOTE: This will need to be changed to your data path
proclaim_data = Path('~/Library/Application Support/Proclaim/Data/5sos6hqf.xyd/').expanduser()
presentations_db = proclaim_data / 'PresentationManager' / 'PresentationManager.db'
conn = sqlite3.connect(presentations_db)
@kcarnold
kcarnold / findSecondMeetingTime.js
Last active January 28, 2025 19:41
when2meet: uncover uncommon availability
// On a when2meet poll that has already been filled out:
//
// 1. Right-click the timeslot corresponding to the first time you chose and click Inspect. (If you don't see that, turn on your browser devtools.)
// 2. Find the attribute that looks like data-time="279900000". Use that number for the "slot id" when prompted.
// 3. Copy and paste this script into the browser Console.
//
// You'll now see the availability of everyone who was *not* available at the first time you chose.
// Find everyone available then
slotId = +prompt("Slot id?"); // find this by right-click on the slot element in the right-side view
@kcarnold
kcarnold / keywords.json
Created November 7, 2024 14:06
CHI Keywords
[{"kw":"Devices","radios":["Robot","Public Displays","Ambient Devices / Internet of Things","Mobile Devices: Phones/Tablets","Television/Video","Desktop/Laptop Computers","Wearable Computers"]},{"kw":"Domain","radios":["Education/Learning","Commerce / Business","Entertainment","Health - Clinical","Accessibility","Policy/Politics/Legal Issues","Design Methods","User Experience Design","Security","Privacy","Sustainability","Graphics / 3D","Cultural Heritage/History","Games/Play","Machine Learning","Personalization","Crowdsourcing","Fabrication","Touch/Haptic/Pointing/Gesture","Sensors","Text Entry","Crowdfunding","Gender/Identity","Maker Culture","Computer Vision","Audio/Video","Tangible","Virtual/Augmented Reality","Computer Mediated Communication","Location-Aware/Contextual Computing","Collaboration","Information Seeking & Search","Programming/Development Support","Emotion / Affective Computing","Input Techniques","Text/Speech/Language","Social Media/Online Communities","Smart Environments / Connected Home","
@kcarnold
kcarnold / streamlit_predictive_text.py
Last active April 30, 2024 12:08
Streamlit buttons-to-insert-words (predictive text) demo
import streamlit as st
import random
words = ['hello', 'world', 'goodbye', 'moon']
random.shuffle(words)
essay = st.text_area("Essay", "", key="essay")
def append_word(word):
st.session_state['essay'] = (
@kcarnold
kcarnold / recipes.py
Created December 2, 2023 20:27
Recipe generator - Streamlit + OpenAI chatcompletions
import streamlit as st
import os
from openai import OpenAI
# load the API key from a .env file
from dotenv import load_dotenv
load_dotenv()
st.title("Recipe Finder")
@kcarnold
kcarnold / core-double-counts.js
Created October 17, 2023 18:52
core double counts
// Run this on the Core Curriculum page
// Gather courses by section
courses = new Map();
document.querySelectorAll('.acalog-course').forEach(x => {
let name = x.textContent;
let section = x.closest('.acalog-core').querySelector('h3, h4').textContent;
console.log(name, section);
if (!courses.has(name)) {courses.set(name, [])}
courses.get(name).push(section);
});
@kcarnold
kcarnold / fix-plotly-size.js
Created September 16, 2023 14:52
Quarto plugin to hotfix Plotly plot sizing
window.FixPlotlySize = {
id: 'FixPlotlySize',
init: function(Reveal) {
Reveal.addEventListener( 'slidechanged', function( event ) {
let curSlide = Reveal.getCurrentSlide();
require(['plotly'], function(Plotly) {
let plotlyDivs = curSlide.querySelectorAll('.js-plotly-plot');
for (let i = 0; i < plotlyDivs.length; i++) {
Plotly.Plots.resize(plotlyDivs[i]);
}
@kcarnold
kcarnold / Comment Insertion updated version.WORD.yaml
Created June 26, 2023 14:35
Update: inserting comments on words that are loaded from a infoList from the (fake) server
name: Comment Insertion updated version
description: >-
Update: inserting comments on words that are loaded from a infoList from the
(fake) server
host: WORD
api_set: {}
script:
content: |
// Given the target word and the comment, insert an anchored comment.
function addComment(paragraphIndex: number, targetWord: any) {
@kcarnold
kcarnold / README.md
Last active May 25, 2023 22:43
SentenceTransformer embeddings of a sample of Quora Duplicate Questions