This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:<line number> # go to li | |
dd # delete line | |
shift+gg # to the end of file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//normal | |
VALID_ARCHS = arm64 armv7 armv6 armv7s | |
//for ios 7 , ios 5 | |
//:configuration = Debug | |
VALID_ARCHS = arm64 armv7 armv6 | |
//:configuration = Release | |
VALID_ARCHS = arm64 armv7 armv6 | |
//:completeSettings = some |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Document |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# inheret from ubuntu | |
FROM ubuntu:14.04 | |
# author | |
MAINTAINER Ahmed Kammorah | |
RUN apt-get update | |
RUN apt-get install curl -y | |
# Setup with Ubuntu: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Docker stop and remove all containers | |
docker stop $(docker ps -a -q) | |
docker rm $(docker ps -a -q) |
OlderNewer