Skip to content

Instantly share code, notes, and snippets.

View whatever's full-sized avatar
🍥
💯

Matt whatever

🍥
💯
  • インターネット総合研究所 (IRL)
  • New York, New York
  • 21:30 (UTC -04:00)
View GitHub Profile
@whatever
whatever / gist:5331047
Created April 7, 2013 15:56
javascipt add file to header
var script = document.createElement("SCRIPT");
script.setAttribute("src", "http://code.jquery.com/jquery-1.9.1.min.js");
document.getElementsByTagName("head")[0].appendChild(script);
@whatever
whatever / brew-install-octave.log
Created September 23, 2014 16:37
`brew install octave` hangs indefinitely on `make test`
==> Using Homebrew-provided fortran compiler.
This may be changed by setting the FC environment variable.
==> Building with an alternative Fortran compiler
This is unsupported.
==> Building with an alternative Fortran compiler
This is unsupported.
==> Building with an alternative Fortran compiler
This is unsupported.
==> Downloading http://ftpmirror.gnu.org/octave/octave-3.8.1.tar.bz2
Already downloaded: /Library/Caches/Homebrew/octave-3.8.1.tar.bz2
@whatever
whatever / brew-install-octave--without-check.log
Created September 23, 2014 17:13
This is it running --without-check
matt ~ 🔪 cat brew-install-octave.log
==> Using Homebrew-provided fortran compiler.
This may be changed by setting the FC environment variable.
==> Building with an alternative Fortran compiler
This is unsupported.
==> Building with an alternative Fortran compiler
This is unsupported.
==> Building with an alternative Fortran compiler
This is unsupported.
==> Downloading http://ftpmirror.gnu.org/octave/octave-3.8.1.tar.bz2
@whatever
whatever / css.less
Last active December 23, 2015 20:24
html {
span {
display: block;
}
div {
display: inline;
}
}