brew install mongodb
mkdir -p /data/dbEnsure that user account running mongod has correct permissions for the directory:
| #!/bin/sh | |
| # Installing Adobe AIR creates an application called "Adobe AIR Uninstaller" in /Applications/Utilities. | |
| # Unfortunately, running this application does not uninstall the application and instead, it seems to | |
| # unhelpfully confirm that it's installed (http://twitter.com/modernscientist/status/495388916267384833/photo/1). | |
| # The proper way to run this application as an uninstaller is to run the enclosed from the command line | |
| # with the flag "-uninstall" as superuser: | |
| sudo /Applications/Utilities/Adobe\ AIR\ Uninstaller.app/Contents/MacOS/Adobe\ AIR\ Installer -uninstall |
| NOTE: Easier way is the X86 way, described on https://www.genymotion.com/help/desktop/faq/#google-play-services | |
| Download the following ZIPs: | |
| ARM Translation Installer v1.1 (http://www.mirrorcreator.com/files/0ZIO8PME/Genymotion-ARM-Translation_v1.1.zip_links) | |
| Download the correct GApps for your Android version: | |
| Google Apps for Android 6.0 (https://www.androidfilehost.com/?fid=24052804347835438 - benzo-gapps-M-20151011-signed-chroma-r3.zip) | |
| Google Apps for Android 5.1 (https://www.androidfilehost.com/?fid=96042739161891406 - gapps-L-4-21-15.zip) | |
| Google Apps for Android 5.0 (https://www.androidfilehost.com/?fid=95784891001614559 - gapps-lp-20141109-signed.zip) |
| myApp.directive("testing", [function() { | |
| return { | |
| restrict: "E", | |
| templateUrl: "testing.html", | |
| link: function(scope, element, attrs) { | |
| scope.logIt = function() { | |
| console.log(scope.someobj); | |
| }; | |
| scope.addLine = function() { | |
| scope.someobj.push(""); |
First, create a Git subfolder inside your Dropbox folder. Then you can share the individual projects inside that folder with whomever you want (or just use it for instant offsite backups).
From inside a Git project:
git clone --bare . ~/Dropbox/Git/gitproject.git
git remote add dropbox ~/Dropbox/Git/gitproject.git
When you're ready to push: