Skip to content

Instantly share code, notes, and snippets.

View philn's full-sized avatar
🦎

Philippe Normand philn

🦎
View GitHub Profile
@philn
philn / # gst-plugins-base - 2018-07-21_13-53-49.txt
Created July 21, 2018 11:59
gst-plugins-base on macOS 10.13.6 - Homebrew build logs
Homebrew build logs for gst-plugins-base on macOS 10.13.6
Build date: 2018-07-21 13:53:49

Keybase proof

I hereby claim:

  • I am philn on github.
  • I am philn (https://keybase.io/philn) on keybase.
  • I have a public key ASB2gTwyJD_TRAwJiLdks69G862m-T3Y-8sr5vKGOfUL0Qo

To claim this, I am signing this object:

@philn
philn / commit-msg
Created January 14, 2013 11:17
Commit message generator
#!/usr/bin/env python
import urllib2, BeautifulSoup
url = "http://whatthecommit.com/"
data = urllib2.urlopen(url).read()
soup = BeautifulSoup.BeautifulSoup(data)
msg = soup.findAll("div", attrs={"id":"content"})[0].findAll("p")[0].text
print msg
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
<style type="text/css">
li {
margin: 15px;
}
.currentslide {
#!/usr/bin/env python
# Little show-case of GStreamer video on-disk buffering
# based on gst-python/examples/play.py
import pygtk
pygtk.require('2.0')
import sys
import os