Skip to content

Instantly share code, notes, and snippets.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{
"swagger": "2.0",
"info": {
"description": "Congress.gov shares its application programming interface (API) with the public to ingest the Congressional data. <a href=\"sign-up/\" target=\"_blank\">Sign up for an API key</a> from api.data.gov that you can use to access web services provided by Congress.gov. To learn more, view our <a href=\"https://github.com/LibraryOfCongress/api.congress.gov/\" target=\"_blank\">GitHub repository</a>.\n",
"title": "Congress.gov API"
},
"basePath": "/v3",
"tags": [
{
"name": "bill",
@afischer
afischer / sidewalk-sheds.geojson
Created June 26, 2022 22:50
~8200 of 8971 unique buildings with sidewalk shed permits as of June 26 2022
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BEGIN:VCALENDAR
VERSION:2.0
CALSCALE:GREGORIAN
PRODID:adamgibbons/ics
METHOD:PUBLISH
X-PUBLISHED-TTL:PT1H
BEGIN:VEVENT
UID:uXbN7lGR8oUI73_EbGyNH
SUMMARY:Tour du Faso
DTSTAMP:20211106T161300Z
@afischer
afischer / folderify.sh
Created December 17, 2017 21:04
Bash script to move date-prefixed/count-suffixed photos into folders
find -E . -regex '\.\/[0-9]{8}_.*' | while read filename
do
strippedindex=$(expr "$filename" : "\.\/[0-9]*_[a-zA-Z0-9]*")
strippedname=${filename:2:strippedindex-2}
mkdir -p "$strippedname"
mv "$filename" "$strippedname"
done
@afischer
afischer / geometry.json
Created August 10, 2017 15:16 — forked from fge/geometry.json
JSON Schema (v4) for a geometry as defined by GeoJSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://json-schema.org/geojson/geometry.json#",
"title": "geometry",
"description": "One geometry as defined by GeoJSON",
"type": "object",
"required": [ "type", "coordinates" ],
"oneOf": [
{
"title": "Point",