Skip to content

Instantly share code, notes, and snippets.

View BeardedUncleX's full-sized avatar

XiaoH BeardedUncleX

  • New Zealand
View GitHub Profile
@BeardedUncleX
BeardedUncleX / rm_mysql.md
Created March 20, 2020 05:43 — 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

@BeardedUncleX
BeardedUncleX / rm_mysql.md
Created March 20, 2020 05:43 — 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

@BeardedUncleX
BeardedUncleX / neo4j_cypher_cheatsheet.md
Created October 11, 2019 11:43 — forked from DaniSancas/neo4j_cypher_cheatsheet.md
Neo4j's Cypher queries cheatsheet

Neo4j Tutorial

Fundamentals

Store any kind of data using the following graph concepts:

  • Node: Graph data records
  • Relationship: Connect nodes (has direction and a type)
  • Property: Stores data in key-value pair in nodes and relationships
  • Label: Groups nodes and relationships (optional)