Skip to content

Instantly share code, notes, and snippets.

View talllguy's full-sized avatar
🎯
Focusing

Elliott Plack talllguy

🎯
Focusing
View GitHub Profile
@talllguy
talllguy / 7z-directory.bat
Created October 12, 2015 20:05
7-zip command line to zip all folders within a given folder (the one the command runs in)
FOR /F "usebackq delims=?" %i IN (`DIR /B /A:D`) DO 7z.exe a -tzip "%i.zip" "%i"
@talllguy
talllguy / elliottplack-osmus-manifesto.md
Created October 2, 2015 01:28
Adding my manifesto for the OSM Board

I envision helping the OpenStreetMap US vision in two important ways.

  1. Working on outreach efforts with local governments to help them realize the benefits of OpenStreetMap within their organizations by contributing data to the project, and then using it in their processes. I have assisted two municipalities in Maryland with thorough, community driven data loads into the map, and wonder if those processes could serve as a modular process for future local government involvement in the OpenStreetMap project.
  2. I have a passion for improving the map’s routing capabilities by working with athletes to get good information about off-road paths and trails onto the map. I believe OpenStreetMap has the greatest capacity of any map to bring local knowledge of things that are impossible to map based on imagery alone, like bicycle paths in the woods. I believe working with the board and the community, we can harness the local knowledge of athletes to improve the map that is off the beaten path.

Respectfully,

Elliot

@talllguy
talllguy / old_geomore_about.txt
Created August 21, 2015 03:14
the old about for my meetup
This group has been renamed MaptimeBmore, and is for people interested in geospatial topics ranging from Web Mapping, Desktop GIS, Open Source GIS, OSM, Geo Data, ESRI, LiDAR, Geography, or anything else with a 'where' component. This started out as an informal happy hour but will go forward as a way to learn and teach each other about different GIS topics.
This group started as a happy hour set up by Maggie Cawley, Todd Barr, Payal Patnaik, and Elliott Plack. Over time, Geomore grew to become a way for the Baltimore Mapping community to share and teach each other new things.
Github: https://github.com/geomore
Twitter: https://twitter.com/geomore_meetup
Website: http://www.geomore.org/
@talllguy
talllguy / gist:b0360823945585d0dd94
Last active August 29, 2015 14:20
plex rename music
{n} - {album}/{pi.pad(2)} {t}
@talllguy
talllguy / index.html
Last active August 29, 2015 14:18 — forked from mfkp/index.html
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="jquery.ketchup.all.min.js" type="text/javascript"></script>
</head>
<body>
<div id="email">
<span>Enter your email to sign up</span>
<form action="/subscribe.php" id="invite" method="POST">
@talllguy
talllguy / smartquote.grel
Created April 6, 2015 20:12
OpenRefine transform to replace single smart quotes with regular single quotes
value.replace(/[\u2018\u2019\u201A\u201B\u2032\u2035]/,"'")
@talllguy
talllguy / replaceNBSP.grel
Created April 6, 2015 19:58
OpenRefine transform to trim any non-breaking space characters, such as those from a Microsoft Word paste
value.replace(/\xa0+/,' ')
@talllguy
talllguy / export (1).geojson
Created February 12, 2015 02:16
bigger bus route test
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@talllguy
talllguy / complex-multiline.lxp
Last active August 29, 2015 14:11
complex multiline label with formatted tax ID
Function FindLabel ( [TAXPIN], [OWNER_NA1], [OWNER_NA2] )
If ( [TAXPIN] = "NOT LOCATED") Then
FindLabel = ""
Else
FindLabel = Left([TAXPIN],2) & "-" & Mid([TAXPIN],3,2) & "-" & Right([TAXPIN],6) & vbnewline & [OWNER_NA1] & vbnewline & [OWNER_NA2]
End If
End Function
@talllguy
talllguy / multiline-owner.lxp
Created December 16, 2014 14:29
label expression for multiline labels in ArcMap
[OWNER_NA1] & vbnewline & [OWNER_NA2]