Skip to content

Instantly share code, notes, and snippets.

@TxHawks
TxHawks / SassMeister-input.scss
Created March 10, 2016 20:45
nested mixin ruby-sass
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
@mixin parent {
@mixin nested {
key: value
}
@TxHawks
TxHawks / SassMeister-input.scss
Last active March 10, 2016 20:45
nested mixin libsass
// ----
// libsass (v3.3.2)
// ----
@mixin parent {
@mixin nested {
key: value
}
@include nested;
}
@TxHawks
TxHawks / gist:217e15b863376148dd6f
Last active January 10, 2016 11:35 — forked from akolosov/gist:cedaac86b333a4ced95f
vim 7.4 with lua+GUI on Ubuntu 14.04
#!/bin/sh
# To remove the packacge at any time:
# $package-name: vim-from-source
# dpkg -r vim-from-source
sudo apt-get remove --purge vim vim-runtime vim-gnome vim-tiny vim-common vim-gui-common
sudo apt-get checkinstall install liblua5.1-dev luajit libluajit-5.1 python-dev ruby-dev libperl-dev mercurial libncurses5-dev libgnome2-dev libgnomeui-dev libgtk2.0-dev libatk1.0-dev libbonoboui2-dev libcairo2-dev libx11-dev libxpm-dev libxt-dev
sudo mkdir /usr/include/lua5.1/include