I hereby claim:
- I am quinncomendant on github.
- I am qc (https://keybase.io/qc) on keybase.
- I have a public key whose fingerprint is 15B9 1090 A3FE 9875 FA4A DCF3 753A D975 0BF1 3B86
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # Quinn Comendant <[email protected]> | |
| # https://gist.github.com/quinncomendant/3be731567e529415d5ee | |
| # Since 25 Jan 2015 | |
| # Version 1.2.2 | |
| # q 13942 0.0 0.3 4408332 22096 ?? SN 7:32PM 0:00.27 /Applications/OpenDNS Roaming Client/RoamingClientMenubar.app/Contents/MacOS/RoamingClientMenubar | |
| # nobody 13937 0.0 0.1 4296740 5164 ?? Ss 7:31PM 0:00.06 /usr/local/sbin/dnscrypt-proxy --user nobody --local-address=127.0.0.1:53 --plugin=libdcplugin_erc.so -d | |
| # root 13903 0.0 0.2 4366308 13752 ?? SNs 7:31PM 0:00.25 /Library/Application Support/OpenDNS Roaming Client/dns-updater |
| #!/usr/bin/env bash | |
| # | |
| # Quinn Comendant <[email protected]> | |
| # 06 Aug 2015 17:51:37 | |
| # | |
| # Config | |
| # | |
| set -euo pipefail; |
| # BEGIN WordPress | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| # Make the admin still accessible from /wp-admin | |
| RewriteCond %{REQUEST_URI} ^/wp-admin/?(.*) | |
| RewriteRule .* wp/wp-admin/$1 [L,R=301] | |
| RewriteCond %{REQUEST_URI} ^/wp/?$ | |
| RewriteRule .* wp/wp-admin/ [L,R=301] | |
| # Base is the URL path of the home directory | |
| RewriteBase / |
| #!/usr/bin/env bash | |
| download_directory="$HOME/Desktop/_dl/epic-earth"; | |
| apiurl="http://epic.gsfc.nasa.gov/api/images.php"; | |
| curl -s "$apiurl" | jshon -a -e image -u | while read image; do | |
| destfile="$download_directory/$image.jpg"; | |
| mkdir -p "$download_directory"; | |
| if [[ -n "$image" && ! -f "$destfile" ]]; then | |
| echo "New 🌍 ! $image.jpg"; | |
| curl -so "$destfile" "http://epic.gsfc.nasa.gov/epic-archive/jpg/$image.jpg"; | |
| ln -sf "$destfile" "$download_directory/latest.jpg"; |
The idea is to create a means for web users to rate the factuality of content on a web page. A browser extension, which allows individual phrases of text to be selected, then rated for accuracy and commented upon. The browser extension then displays a score of the page’s factuality, based on the crowdsourced ratings. Clicking the extension reveals more detail, including comments from fact-checkers and selected passages from the text with notes and external references. With the plugin running, it could then automatically add a light green or red underline to text on the page which has been rated, indicating exactly which phrases have been reviewed. Hovering the cursor over these phrases brings up a popup of notes for that statement.
But here's the exciting part: each phrase of text that is selected, rated, and commented upon (hopefully with cited references to why the phrases are factual or bullshit) will be sent to a central server with the rating metadata. With a lot of usage, a huge corpus of text phrases
| #!/usr/bin/env bash | |
| # | |
| # Quinn Comendant <[email protected]> | |
| # 23 Sep 2016 19:31:05 | |
| # | |
| # Functions | |
| # |
| version: '2' | |
| volumes: | |
| dbdata: | |
| driver: local | |
| services: | |
| db: | |
| image: mysql/mysql-server:5.7 | |
| ports: | |
| - "3306:3306" | |
| volumes: |