Skip to content

Instantly share code, notes, and snippets.

Data & Tools:
Many contributors. Thanks to all.
Contact:
ParlerAnalysis@protonmail.com
IRC Channels:
#parlerparsers at https://webirc.hackint.org/
#parlerparsers-video for video IDing
CityCounty CountyFIPS HealthDistrict HPRName Population
Accomack 51001 Eastern Shore Eastern Region 32316
Albemarle 51003 Thomas Jefferson Northwest Region 109330
Alexandria 51510 Alexandria Northern Region 159428
Alleghany 51005 Alleghany Southwest Region 14860
Amelia 51007 Piedmont Central Region 13145
Amherst 51009 Central Virginia Southwest Region 31605
Appomattox 51011 Central Virginia Southwest Region 15911
Arlington 51013 Arlington Northern Region 236842
Augusta 51015 Central Shenandoah Northwest Region 75558
@brossi
brossi / css-grid-template-builder.markdown
Created August 2, 2018 16:23
CSS Grid Template Builder
@brossi
brossi / static-styles.css
Created January 26, 2018 16:06
Temporary - Static Styles
table {width: 100%;}
td {text-align: right;}
@brossi
brossi / static-javascript.js
Last active January 26, 2018 16:05
Temporary styles
(function($) {
$(document).ready(function() {
// future use
});
})(jQuery);
@brossi
brossi / cf_notice.md
Last active February 24, 2017 13:03
Email from Cloudflare, subject: "Cloudflare parser bug and its impact"

Dear Cloudflare Customer:

Thursday afternoon, we published a blog post describing a memory leak caused by a serious bug that impacted Cloudflare's systems. If you haven't yet, I encourage you to read that post on the bug:

https://blog.cloudflare.com/incident-report-on-memory-leak-caused-by-cloudflare-parser-bug/

While we resolved the bug within hours of it being reported to us, there was an ongoing risk that some of our customers' sensitive information could still be available through third party caches, such as the Google search cache.

Over the last week, we've worked with these caches to discover what customers may have had sensitive information exposed and ensure that the caches are purged. We waited to disclose the bug publicly until after these caches could be cleared in order to mitigate the ability of malicious individuals to exploit any exposed data.

body { background-color: red;}
@brossi
brossi / gist:af239b3615cacf975e0face3c842b7b5
Last active October 5, 2016 17:20
Compile TCL-TK from source (Fixed)
svn checkout -r 374 https://svn.code.sf.net/p/tkimg/code/trunk
cd trunk
./configure --prefix=/usr/local/Cellar/tcl-tk/8.6.4
make collate
make install-libraries
cp Img/prefix/include/* /usr/local/Cellar/tcl-tk/8.6.4/include
cp -r Img/exec_prefix/lib/* /usr/local/Cellar/tcl-tk/8.6.4/lib
@brossi
brossi / list-syntax.md
Created November 2, 2015 19:57
Daology content editor - lists

"Generic" (unordered) list items can be defined with *, +, or - characters.

  • Generic list item
  • Generic list item
  • Generic list item

"Numbered" (ordered) list items are defined with a numeral...

  1. Numbered list item
  2. Numbered list item
@brossi
brossi / footnotes.md
Last active November 2, 2015 19:44
Daology content editor footnote support

This is the first paragraph.1

  • List item one.2
  • List item two.3

Footnotes

  1. This is the first note.

  2. This is the second note.

  3. This is the third note, defined out of order.