Skip to content

Instantly share code, notes, and snippets.

View payne's full-sized avatar

Matt Payne payne

View GitHub Profile
@jhannah
jhannah / gist:9541cadd3081ddd1d8ba146173d0775a
Last active March 10, 2021 03:14
Google Civic Information API example
A random house I chose from Google Maps:
4215 S 28th St, Omaha, NE 68107
https://developers.google.com/civic-information/docs/v2/representatives/representativeInfoByAddress?apix_params=%7B%22address%22%3A%224215%20S%2028th%20St%2C%20Omaha%2C%20NE%2068107%22%7D
Here's a collapsible tool of this same data: https://jsoneditoronline.org/#left=cloud.fc62383d0a2d4d8d9fcc8a8cc1f54d06
{
"normalizedInput": {
"line1": "4215 South 28th Street",
@shaunagm
shaunagm / pycon2020.md
Last active February 16, 2021 02:53
Resources & References for PyCon 2020 Talk: Organizing Your Workplace
@jborichevskiy
jborichevskiy / jon-roam-daily-template.md
Last active August 31, 2022 04:41
The daily template I use for Roam Research https://roamresearch.com/
  • Weekly Agenda (created on a different day, and embedded with /Block Reference)
  • [[Morning Questions]]
    • {{[[slider]]}} How many hours of sleep did I get?
    • What's one thing top of mind today?
    • What's the one thing I need to get done today to make progress?
    • Review #[[Index: Questions]] #values
  • Agenda
    • {{[[TODO]]}} Morning walk #goal-health #habit
    • {{[[TODO]]}} Check calendar for scheduled events
  • {{[[TODO]]}} Morning focus hour
@yunga
yunga / The Coding Train.md
Created October 22, 2019 09:35
Playlists and videos from The Coding Train youtube channel
@jhannah
jhannah / omaha_code_schools.md
Last active June 6, 2022 20:29
Omaha Nebraska "code schools"
@thomasdarimont
thomasdarimont / docker-compose.yml
Created January 25, 2019 17:52
Docker OpenLDAP + phpldapadmin example
version: '2'
services:
openldap:
image: osixia/openldap:1.2.3
container_name: openldap
environment:
LDAP_LOG_LEVEL: "256"
LDAP_ORGANISATION: "Example Inc."
LDAP_DOMAIN: "example.org"
LDAP_BASE_DN: ""
@riking
riking / beancount-export-patreon.js
Last active August 15, 2019 23:23
Beancount exporter for Patreon transactions.
(function() {
// Copyright 2018 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
@CodingDoug
CodingDoug / README.md
Last active May 6, 2021 14:35
Building an assistant (chatbot) that translates languages, integrated with Slack
// ==UserScript==
// @name Kill Facebook Garbage
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Hide all likes, shares, comments, and replies from feed. Only Original Posts!
// @author Nicholas Wertzberger
// @match https://www.facebook.com/
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js
// ==/UserScript==
@3355844
3355844 / pom.xml
Created November 1, 2016 21:08
Finished Simple JDBC(mySql) jsp servlet CRUD
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>lalala</groupId>
<artifactId>lalala</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>lalala Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>