I hereby claim:
- I am joshuadanpeterson on github.
- I am joshuadpeterson (https://keybase.io/joshuadpeterson) on keybase.
- I have a public key ASDxqOK3vNZ3lbAson4IU7z5Trpa0uDghYsCb6kmR17hXQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Verifying that "joshuadanpeterson.id" is my Blockstack ID. https://onename.com/joshuadanpeterson
Josh Peterson is an award-winning independent journalist based in Denver, CO. He is a 2016 Fund for American Studies Robert Novak Journalism Fellow studying the impact of artificial intelligence on democracy, and an advisor to PassageX, a blockchain event ticketing company, and the founder and publisher of The Coin Dispatch, a news and opinion site covering the third wave of the Web: Bitcoin, cryptocurrencies, artificial intelligence and blockchain technologies.
Peterson previously contributed to the Washington Free Beacon, The Federalist, and Watchdog.org. Prior to contributing to also AMI Newswire and Urban News Service, Peterson previously spent two years as the the national technology reporter for Watchdog.org, a project of The Franklin Center for Government and Public Integrity. Before that, two years at The Daily Caller covering tech and telecom regulatory policy as the publication’s Tech Editor. During
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
# This script moves all files with a certain extension to a related directory. | |
# From: https://apple.stackexchange.com/questions/94392/how-to-copy-all-files-with-extension-filetype-in-terminal | |
# Script copies file with 'file ext' from 'directory folder path' into 'target folder path | |
# Once script is edited for task, make executable: | |
# - https://stackoverflow.com/questions/9825495/run-text-file-as-commands-in-bash | |
# Script can also be saved as plaintext file and executed in terminal as 'bash BatchFileExtMove.txt' | |
cp ~/<directory folder path a>/*.<file ext a> <target folder path a> | |
cp ~/<directory folder path b>/*.<file ext b> <target folder path b> |
# Guitar Tabs Template | |
# Created by: Ultimate Guitar | |
# Source URL: https://www.ultimate-guitar.com/lessons/for_beginners/guitar_tabs_template.html | |
----------------------------------------------------------------- | |
SONG NAME - Band Name | |
----------------------------------------------------------------- | |
Tabbed by: | |
Email: |
This template is intended for new projects to provide a structured README file.
[![Badges @ Shields IO][shield-badges]][shields] [![Version?][shield-version]][shields] [![Build passed?][shield-build]][shields] [![Language?][shield-markdown]][shields] [![Tested?][shield-tested]][shields] [![License?][shield-license]][shields]
#!/usr/bin/env python | |
# -*- coding: iso-8859-1 -*- | |
###################################################################### | |
# This script is derived (with minor modifications to enable | |
# stand-alone usage) from Transpose.py, which is part of the | |
# SongPress application | |
# https://github.com/lallulli/songpress/blob/master/src/Transpose.py | |
# | |
# Modifications by: Luke Pinner |