This file contains hidden or 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 applyTagAt(text, start, end, startTag, endTag) { | |
var text2 = ""; | |
var counter = 0; | |
var intag = false; | |
var inescape = false; | |
var tagstarted = false; | |
for (var i = 0; i < text.length; i++) { | |
if (text.charAt(i) == '<') { |
This file contains hidden or 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
+-----------------------+---------------------+-----------------------------+ | |
| | Dr. Alice | Dr. Bob | | |
+-----------------------+---------------------+-----------------------------+ | |
| When done correctly | | Strives to cure in 24 hours | | |
| | | Has success references | | |
| | | Some rules to follow | | |
| | | Does not want to fail | | |
| --------------------- | ------------------- | --------------------------- | | |
| When done Incorrectly | Will cure Influenza | | | |
| | Might take 8 days | | |
This file contains hidden or 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
+----------+---------------------+-----------------------------+ | |
| | Dr. Alice | Dr. Bob | | |
+==========+=====================+=============================+ | |
| Benefits | Will cure Influenza | Strives to cure in 24 hours | | |
| | Might take 8 days | Has success references | | |
| | No rules to follow | Some rules to follow | | |
| | Plans for failure | Does not want to fail | | |
+----------+---------------------+-----------------------------+ |
This file contains hidden or 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 filter_pids() { | |
oifs="$IFS" | |
IFS=$'\n' | |
for stuff in $1; do | |
if [[ -f $stuff/cmdline ]]; then | |
echo "$stuff" | |
fi | |
done | |
IFS="$oifs" |
This file contains hidden or 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
[ | |
{ | |
"id": "LW107", | |
"name": "Dowell", | |
"lat": "47.630226", | |
"lng": "-122.270691", | |
"explored": "YES", | |
"depth": "-59.20", | |
"desc": "Wreck", | |
"documented": "YES", |
NewerOlder