Skip to content

Instantly share code, notes, and snippets.

View fl0w's full-sized avatar
🎉
50% hackin', 50% slackin'

Martin Iwanowski fl0w

🎉
50% hackin', 50% slackin'
  • Sweden, Stockholm
View GitHub Profile
CREATE TABLE `blocks` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`begin_range` int(10) unsigned NOT NULL,
`end_range` int(10) unsigned NOT NULL,
`_location_id` int(11) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `begin_range` (`begin_range`,`end_range`)
) ENGINE=MyISAM AUTO_INCREMENT=2008839 DEFAULT CHARSET=ascii;
@fl0w
fl0w / uninstall-node.sh
Last active August 29, 2015 14:15
uninstall node from .dmg install @ mac os x
# props goes to http://stackoverflow.com/a/17203692
sudo rm -rf /usr/local/{bin/{node,npm},lib/node_modules/npm,lib/node,share/man/*/node.*}
@fl0w
fl0w / show-dot-files-mac.sh
Last active August 29, 2015 14:14
show dot files on mac yosemite
# in terminal
defaults write com.apple.finder AppleShowAllFiles YES