Skip to content

Instantly share code, notes, and snippets.

View tomhamming's full-sized avatar

Tom Hamming tomhamming

  • Olive Tree Bible Software
View GitHub Profile
@tomhamming
tomhamming / HebrewAndEnglishTester
Created March 22, 2023 15:38
Implementation file of a view controller demonstrating the issue here: https://stackoverflow.com/q/75807047/412107
//
// ViewController.m
// HebrewNoteTester
//
// Created by Tom Hamming on 3/21/23.
//
#import "ViewController.h"
@interface ViewController ()
@tomhamming
tomhamming / parsing.ejs
Created July 19, 2018 17:15
Parsing EJS
<%
function lemmaClass(lemma) {
if (lemma.isHebrew == "true") return "hebrew-face";
if (lemma.isGreek == "true") return "greek-face";
return "";
}
%>