Skip to content

Instantly share code, notes, and snippets.

View tenkabuto's full-sized avatar
🤓
Contributing to a project

Brandon Hall tenkabuto

🤓
Contributing to a project
View GitHub Profile
@tenkabuto
tenkabuto / OCI Meeting Notes - 11-15-2015.md
Last active November 29, 2015 01:54
Notes from the Open Company Initiative meeting that took place November 15th, 2015

I'm starting a new issue (branching off #167) to track the decisions of this month's meeting and what needs to be done (video recording / raw meeting notes). If we agree this is a good model, we can then have one such issue for each monthly meeting. Or perhaps a wiki page would work better so we can all edit in the same place.

Here are the main topics and decisions, mostly actionable items (unchecked items have open questions to resolve or actions to take):

  • Complete domain transfer (was already in progress at the time of the meeting, so nothing needed to be done, just wait for the transfer to conclude)
  • Create canonical list of all OCI “holdings” and who handles what:
    • Question: Where will we put it? On a wiki on this repo? In the README.md?
    • Question: Is the following list complete? If not, what's missing?
  • [Website](http://www.open
@tenkabuto
tenkabuto / unlikr.py
Last active January 29, 2018 08:50
"Unlikr" - modified from Brandon DeRosier's (@bdero) code at http://blog.cheesekeg.com/unlikr-unlike-everything-on-tumblr
#!/usr/bin/env python
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.firefox.firefox_profile import FirefoxProfile
from time import sleep
from sys import argv
find_likes = lambda browser: browser.find_elements_by_css_selector('.post_control.like.liked')
def find_next_page(browser):
try:
@tenkabuto
tenkabuto / GoPro Time-Lapse Assembly
Last active October 13, 2015 00:18
Assembles Timelapse Photos into Video
#!/bin/bash
ls GOPR*.JPG -1tr > files.txt
mencoder -nosound -ovc lavc -lavcopts vcodec=mpeg4 -o output.avi -mf type=jpeg:fps=10 mf://@files.txt
ffmpeg -i output.avi -y -s hd720 -qscale 0 output-final.mp4
rm files.txt