Skip to content

Instantly share code, notes, and snippets.

View danwaz's full-sized avatar

Dan Wasilewski danwaz

View GitHub Profile
<!doctype html>
<html>
<head>
<title>NEON COLORS</title>
<style>
body {
margin: 0;
padding: 0;
}
#color {
@rogeruiz
rogeruiz / post-receive
Last active December 24, 2015 00:09
Gitolite Post-Receive Hook for Node.js
#!/usr/bin/env node
var deployable = process.env.GL_OPTION_DEPLOYABLE;
var jekyll = process.env.GL_OPTION_JEKYLL;
if ( ! deployable ) {
return;
}
var fs = require( 'fs' );
@vitorbritto
vitorbritto / rm_mysql.md
Last active July 5, 2024 17:22
Remove MySQL completely from Mac OSX

Remove MySQL completely

  1. Open the Terminal

  2. Use mysqldump to backup your databases

  3. Check for MySQL processes with: ps -ax | grep mysql

  4. Stop and kill any MySQL processes

  5. Analyze MySQL on HomeBrew:

    brew remove mysql