This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hola, llama2!! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This is what happens when I try eating breakfast after having spent | |
* the previous night hacking away on some graphical programming. | |
* ActionScript 3 was the language of choice---or, urm, Haxe---but the | |
* code is here prescribed in Java. (ActionScript 3---or actually | |
* Haxe---supports all of the language constructs I use here; I just | |
* don't remember the syntax exactly; and, after several years using | |
* OOP, my brain can OOPs! without any particular language.) | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Do you catch my drift? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- |A list of `Range's. This is the comprehensive ref type, and | |
-- can form an arbitrarily complex reference to the scripture. | |
data Reference = Reference [Range] -- [ x ] means list of x's | |
deriving (Show, Eq) | |
-- |A Range of verses, or a single ref. "Range" is a bit of a misnomer, | |
-- since we can have a single reference "Range". | |
data Range | |
= Range |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
First | |
----- | |
15 | |
He sends out his commandment to the earth. | |
His word runs (very) swiftly. | |
16 | |
He gives snow like wool, | |
and scatters frost like ashes. | |
17 | |
He hurls down his hail like pebbles. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if _BASHRC_WAS_RUN 2>/dev/null; then | |
:; | |
else # Stuff that only needs to run the first time we source .bashrc. | |
# Useful to allow re-sourcing new changes, without breaking/changing things in this section | |
alias _BASHRC_WAS_RUN=true | |
# ... continued ... | |
fi | |
# Last mod time of a file or files | |
get_file_timestamp () { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am jpaugh on github. | |
* I am jpaugh (https://keybase.io/jpaugh) on keybase. | |
* I have a public key ASBMWiTSoNsFFtCJvDAGy8pd9WKJQjjQLuZBxbFl6ejDCwo | |
To claim this, I am signing this object: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var bcv_parser, bcv_passage, bcv_utils, root, | |
hasProp = {}.hasOwnProperty; | |
root = self; | |
bcv_parser = (function() { | |
bcv_parser.prototype.s = ""; | |
bcv_parser.prototype.entities = []; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace AsEnumerableVsCasting | |
{ | |
class AsEnumerableVsCasting | |
{ | |
static void Main(string[] args) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* function scrollIntoViewSensibly | |
* Author: Jonathan Paugh; MIT License | |
* Source: https://gist.github.com/jpaugh/265bbaadd7d3d243d2d52e558863847d | |
* | |
* Scroll the parent element until the child is visible. This is like the 'nearest' option to [Element.scrollIntoView], | |
* except that it actually works --- even in IE, and even when the child is partially visible already. It's not a drop-in | |
* replacement, though: to make a polyfil for [Element.scrollIntoView], you'd want to find the nearest scrollable parent | |
* yourself, and then accept that all options passed to the polyfil would be ignored. | |
* |
OlderNewer