Skip to content

Instantly share code, notes, and snippets.

View tomysmile's full-sized avatar

Tomy Ismail tomysmile

  • Thinkspedia
  • Dubai
  • 09:24 (UTC +07:00)
View GitHub Profile
@tomysmile
tomysmile / memcached_macosx.md
Created April 26, 2016 13:27
Installing memcached on Mac with Homebrew and Lunchy

Installing memcached on Mac with Homebrew and Lunchy

This is a quick guide for installing memcached on a Mac with Homebrew, and starting and stopping it with Lunchy. I hope this tutorial will get your memcached up and running in no time.

Step 1 — Install Homebrew

Installing Homebrew is super easy. Just paste this in your terminal —

$ ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
@tomysmile
tomysmile / setup-vagrant-macosx.md
Created April 26, 2016 05:54
How to Install Virtualbox and Vagrant on MacOSX

Install Virtualbox && Vagrant for MacOSX

Vagrant uses Virtualbox to manage the virtual dependencies. You can directly download virtualbox and install or use homebrew for it.

$ brew cask install virtualbox

Now install Vagrant either from the website or use homebrew for installing it.

@tomysmile
tomysmile / macosx-newinstall.md
Last active April 26, 2016 02:05
What to Install on New Mac
  1. Update Mac Osx
  2. Chrome Browser
  3. Folx Download Manager
  4. Password Management (pwSafe, 1Password, mSecure, etc)
  5. XCode and also its Command Line Tools
  6. SublimeText 3
  7. Evernote
  8. SnagIt
  9. Git and Client (SourceTree, GitTower)
  10. GistBoxApp
@tomysmile
tomysmile / sublimetext-packages-developer.md
Last active May 29, 2018 23:03
Sublime Text Packages for Developer

Sublime Text Packages for Developer

Package Control – allows to manage packages in editor

  • EditorConfig

  • GitIgnore

  • AdvancedNewFile

@tomysmile
tomysmile / android_instructions.md
Last active May 18, 2017 02:35 — forked from patrickhammond/android_instructions.md
Easily setup an Android development environment on a Mac

** UPDATED according to this NativeScript/nativescript-cli#2706 **

Here is a high level overview for what you need to do to get most of an Android environment setup and maintained.

Prerequisites (for Homebrew at a minimum, lots of other tools need these too):

  • XCode is installed (via the App Store)
  • XCode command line tools are installed (xcode-select --install will prompt up a dialog)
  • Java

Install Homebrew:

@tomysmile
tomysmile / brew-install.md
Created April 26, 2016 00:02
Installing Brew on Mac

run below on terminal:

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

then update as necessary:

brew update && brew upgrade brew-cask && brew cleanup && brew cask cleanup

@tomysmile
tomysmile / brew-java-and-jenv.md
Last active September 30, 2024 19:44
How To Install Java 8 on Mac

Install HomeBrew first

brew update
brew tap caskroom/cask
brew install brew-cask

If you get the error "already installed", follow the instructions to unlink it, then install again:

@tomysmile
tomysmile / java-settings-osx.md
Created April 24, 2016 05:35 — forked from itsvicsoto/java-settings-osx.md
Java Environment Settings OSX

Java Environment Settings OSX

Brew

Install homebrew

Install Java Pre-Reqs

Install java and maven

export ANDROID_HOME=/Users/admin/Library/Android/sdk
export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
tools:$ANDROID_HOME/tools:$PATH
@tomysmile
tomysmile / Android Home
Created April 24, 2016 05:29 — forked from ericaroy/Android Home
Setting Android Home on Mac
Note for me to remember how to set Android Home on Mac
Open Terminal and type in..
nano ~/.bash_profile
Add the below paths
The path should be where your android installation is located
export ANDROID_HOME=/Users/username/Library/Android/sdk
export export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
Save file and type in terminal...
source ~/.bash_profile