Skip to content

Instantly share code, notes, and snippets.

@R4wm
Last active July 17, 2020 04:13
Show Gist options
  • Select an option

  • Save R4wm/34fef6cc1cc072ff931f53398f1afccf to your computer and use it in GitHub Desktop.

Select an option

Save R4wm/34fef6cc1cc072ff931f53398f1afccf to your computer and use it in GitHub Desktop.
how many vs in Old and New Testament?
sqlite> select count(*) from kjv where testament="OLD";
count(*)
----------
23145
sqlite> select count(*) from kjv where testament="NEW";
count(*)
----------
7957
sqlite>
@~:$ echo $((7957 + 23145)) # Total verses in the bible
31102
@~:$ echo $((7957/365)) # New testament per day
21
@~:$ echo $((23145/365)) # Old testament per day
63
@~:$ echo $(((23145/365) + (7957/365))) # total verses per day
84
@~:$ echo $((((23145/365) + (7957/365)) / 3)) # 3 meals a day
28
voidconf@~:$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment