Skip to content

Instantly share code, notes, and snippets.

View silviapfeiffer's full-sized avatar

Silvia Pfeiffer silviapfeiffer

View GitHub Profile
@silviapfeiffer
silviapfeiffer / # php56 - 2017-07-04_06-57-26.txt
Created July 3, 2017 20:59
php56 (homebrew/php/php56) on macOS 10.12.5 - Homebrew build logs
Homebrew build logs for homebrew/php/php56 on macOS 10.12.5
Build date: 2017-07-04 06:57:26
@silviapfeiffer
silviapfeiffer / first_article.js
Created November 26, 2012 07:53
Exposing first article element based on Miketay's gist https://gist.github.com/4032962
// ==UserScript==
// @include http://*/*
// @include https://*/*
// ==/UserScript==
//applies a "main-content" style to the first article element
var style = document.createElement('style');
style.innerHTML = ".main-content {outline: 5px dotted deeppink !important;}"
document.body.appendChild(style);