Skip to content

Instantly share code, notes, and snippets.

@nrollr
nrollr / MongoDB_macOS_Sierra.md
Last active February 13, 2025 10:55
Install MongoDB on Sierra using Homebrew

Install MongoDB on macOS Sierra

This procedure explains how to install MongoDB using Homebrew on macOS Sierra 10.12.
Official MongoDB install documentation: here

Install Homebrew

  • Installing Homebrew is effortless, open Terminal and enter :
    $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
@tonymtz
tonymtz / gist:d75101d9bdf764c890ef
Last active July 24, 2025 16:11
Uninstall nodejs from OSX Yosemite
# first:
lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom | while read f; do sudo rm /usr/local/${f}; done
sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.*
# To recap, the best way (I've found) to completely uninstall node + npm is to do the following:
# go to /usr/local/lib and delete any node and node_modules
cd /usr/local/lib
sudo rm -rf node*
@likewhoa
likewhoa / Feed me
Last active August 23, 2017 07:18
Command line how to on setting up feeds and feeds_meetup module for Drupal
1.
# cat site.make
core = 7.x
api = 2
projects[drupal][type] = "core"
projects[drupal][download][type] = git
projects[drupal][download][branch] = 7.x
projects[drupal][download][url] = http://git.drupal.org/project/drupal.git
@delphian
delphian / drush-example-site.make
Last active September 27, 2019 18:16
Example drupal drush site.make file for automatically downloading modules, themes, profiles, and libraries
; @file drush-example-site.make
; @author Bryan Hazelbaker <bryan.hazelbaker@gmail.com>
;
; @brief Drush make file to be processed by the `drush make` command
;
; @details Running drush make on this configuration file will download
; all specified modules, themes, and libraries into their respective
; directories. the `drush` command must first be installed to process
; this make file.
;