Skip to content

Instantly share code, notes, and snippets.

@bdenckla
bdenckla / Conjunctive-dagesh.txt
Created May 8, 2024 21:26
Conjunctive dagesh
See comments.
@bdenckla
bdenckla / Breuer-on-E1913
Created May 8, 2024 13:07
Breuer on E1913
see comments
@bdenckla
bdenckla / יששכר-explicit-qere.txt
Created May 8, 2024 11:27
יששכר explicit qere
see image in comments
@bdenckla
bdenckla / maqaf-is-sometimes-slash-not-dash.md
Created May 7, 2024 17:27
maqaf is sometimes slash not dash

(A gist just to hold images in its comments.)

@bdenckla
bdenckla / main.md
Last active May 7, 2024 10:54
A Review of Hebrew World's Phonetic Bible

A Review of Hebrew World's Phonetic Bible

This is a review of Hebrew World's digital product called the Hebrew/English Phonetic Bible. We will use Exodus 20 as a source of examples.

Taking a look at the first word of the chapter gives us a feel for the transliteration style:

image

  • The V is capitalized because they use English-like capitalization. In their scheme, each verse is likened to a sentence. (Not shown here is that, correspondingly, a period appears at the end of each verse.) This equation of verse and sentence is limited to their phonetic transliteration; the English translation they provide has its own, independent punctuation, including its own sentence divisions.
  • The syllables are separated by a fairly heavy mid-dot (aka interpunct).
@bdenckla
bdenckla / gist:f5d9c5d67107df00c3226045c0d1e946
Last active May 7, 2024 18:38
A gist to store some Decalogue word images publicly in its comments
The comments are the purpose; see the comments.
Use the "assets" URL created immediately when you paste the image into the comment edit box (as opposed to the URL from clicking on the image once it becomes part of a submitted comment).
@bdenckla
bdenckla / sheva-distinctions.txt
Created April 21, 2024 14:25
A gist to store some sheva-distinction images publicly in its comments
The comments are the purpose; see the comments.
@bdenckla
bdenckla / ArtScroll VbnC Psalm 1
Created June 8, 2022 15:10
ArtScroll vocalized-but-not-cantillated Psalm 1
This gist exists to show ArtScroll VbnC Psalm 1.
@bdenckla
bdenckla / modem.pl
Created February 24, 2012 18:31
Dave J.'s modem program
#!/usr/bin/perl -w
use strict;
use warnings qw(all);
use LWP::Simple;
use Data::Dumper;
use HTML::TreeBuilder;
use HTML::DOMbo;
use Win32::API;
@bdenckla
bdenckla / escape_database_for_grant.php
Created February 4, 2012 01:16
Escape SQL (MySQL?) database name for grant
<?php
function escape_database_for_grant( $d )
{
$search = array( '_', '%' );
$replace = array ( '\_', '\%' );
return str_replace( $search, $replace, $d );
}
?>