Skip to content

Instantly share code, notes, and snippets.

View MElkady's full-sized avatar

Elkady MElkady

View GitHub Profile

Keybase proof

I hereby claim:

  • I am melkady on github.
  • I am melkady (https://keybase.io/melkady) on keybase.
  • I have a public key ASAL4AlFERmHWrSP6EKWbnd-8b1G9KyUw55HvYqUzgoywgo

To claim this, I am signing this object:

@MElkady
MElkady / clear_cocoapods.sh
Created November 1, 2016 08:31
Clear cocoapods project
rm -rf ~/Library/Caches/CocoaPods; rm -rf Pods; rm -rf ~/Library/Developer/Xcode/DerivedData/*; pod deintegrate; pod setup; pod install;
@MElkady
MElkady / Sample-MobileFirst-CLI-build-script
Last active May 1, 2016 10:40
Refer to blog entry here (http://www.mobilefirst.tips/do-you-have-an-old-machine-turn-it-into-mobilefirst-platform-development-server-for-free/). This is a sample script to autmomate MobileFirst platform project building using MFP CLI tools. You can place this file on user's path so you can call it from anywhere, all you need is just to open a n…
# Sample script to autmomate MobileFirst platform project building using MFP CLI tools
# You can place this file on user's path so you can call it from anywhere, all you need is just to open a new termial then type:
# do_build
export project_location=/codes
cd $project_location
git reset --hard
git clean -f