This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Screen <Formula | |
homepage 'http://www.gnu.org/software/screen/' | |
url 'http://ftp.gnu.org/gnu/screen/screen-4.0.3.tar.gz' | |
md5 '8506fd205028a96c741e4037de6e3c42' | |
# brew install --HEAD to get the latests, includes vertical split, mapped | |
# to C-a | | |
head 'git://git.savannah.gnu.org/screen.git', :branch => 'master' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Utility functions for linking into native messaging applications (currently SMS and WhatsApp) without prepoluating a phone number. | |
* | |
* Plinks is based on this blog post I wrote earlier this year: | |
* http://blog.julianklotz.de/2015/03/14/the-sms-uri-scheme/ | |
* | |
* MIT license. | |
*/ | |
window.plinks = (function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*global | |
window, document, console | |
*/ | |
/** | |
* This code snippet checks a web page for elements that (may) exceed the browser’s viewport width. | |
* | |
* You’ve built a HTML page and for some reason, there’s a vertical scrollbar. | |
* It scrolls just a tiny bit, but when ever you scroll down, the page glitches right and left slightly. | |
* This piece of JavaScript loops all DOM nodes and nodes that are wider than the window’s viewport. |