Skip to content

Instantly share code, notes, and snippets.

View mateoclarke's full-sized avatar

Mateo Salinas Clarke mateoclarke

View GitHub Profile
@tsmith512
tsmith512 / ADJUSTMENTS.md
Last active May 7, 2016 00:34
Prop 1 in Austin. The diff view of ordinance 20160217-001, which is an amendment to rules governing TNC/Ridehailing applications. Use the "Revisions" tab to see the comparison.

To make the differences between the old ordinance and the new ordinance, I made a few adjustments to them to make the diff line up. Anything in red is being removed, anything in green is being added. Text in black and white is unchanged.

Renamed the DEFINITION section of the new ordinance to DEFINITIONS (plural) to match to show clearly where the real content begins. The new ordinance only has one definition.

Moved the PENALTY section from the end of the new ordenance to after DEFINITIONS to correlate to the original ordinance placement.

Renamed the TNC OPERATING AUTHORITY APPLICATION REQUIRED section of the new ordinance by removing the word "APPLICATION" to match the old ordinance.

In the IDENTITY section, replaced "app" in the new ordinance with "application" to match the old ordinance to demonstrate the similarity.

@wpietri
wpietri / rover.py
Created December 7, 2015 17:11
Rover kata example for hiring
class Rover:
pass
@mcdougs
mcdougs / osmp-{Philly}-guidebook-philly.md
Last active January 27, 2016 02:57
Open Source Mentorship Program {Philadelphia} 2015: Organizers Guidebook

The Open Source Mentorship Program is a partnership between Code for America brigades and Girl Develop It chapters. The "Summer of Open Source" was piloted in Philadelphia over the summer of 2014. Met with great excitement from the success of the experiment, CfA and GDI cemented the partnership so that other brigades and chapters across the country might replicate and extend the impact of this collaboration.

In the summer of 2015, Philadelphia once again launched osmp. This guidebook is the result of their experience and includes both successes and opportunities for improvement. It is as comprehensive as possible, but the intention is for subsequent programs to fork and bu

#GeoRodeo Resources Talk

Data Sources

  • Natural Earth Shapefile downloads for cultural and physical data sets for the entire earth.
  • US Census Shapefiles and KML files for US shapes.
@ericelliott
ericelliott / essential-javascript-links.md
Last active June 14, 2025 18:43
Essential JavaScript Links
@staltz
staltz / introrx.md
Last active June 28, 2025 13:44
The introduction to Reactive Programming you've been missing

#GeoRodeo Resources Talk

Data Sources

  • Natural Earth Shapefile downloads for cultural and physical data sets for the entire earth.
  • US Census Shapefiles and KML files for US shapes.
@rgreenjr
rgreenjr / postgres_queries_and_commands.sql
Last active June 28, 2025 05:00
Useful PostgreSQL Queries and Commands
-- show running queries (pre 9.2)
SELECT procpid, age(clock_timestamp(), query_start), usename, current_query
FROM pg_stat_activity
WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%'
ORDER BY query_start desc;
-- show running queries (9.2)
SELECT pid, age(clock_timestamp(), query_start), usename, query
FROM pg_stat_activity
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%'
@lucasfais
lucasfais / gist:1207002
Created September 9, 2011 18:46
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt