Skip to content

Instantly share code, notes, and snippets.

View mercyikpe's full-sized avatar
👩‍💻

Mercy Ikpe mercyikpe

👩‍💻
View GitHub Profile
@mercyikpe
mercyikpe / rm_mysql.md
Created April 6, 2020 22:48 — forked from vitorbritto/rm_mysql.md
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

@mercyikpe
mercyikpe / barChart.vue
Created October 10, 2019 13:23
barChart Component
<template>
<div>
<canvas ref="canvas" width="900" height="400"></canvas>
</div>
</template>
<script>
// CommitChart.js
import { Bar } from 'vue-chartjs'