Get it from the App Store.
In XCode's Preferences > Downloads you can install command line tools.
/* | |
====================== | |
Author: 海豹 | |
Date: 2017/1/22 | |
Version: 1.0.0.0 | |
Description: Fiddler extension for cracking Taiwan MacDonald Coupon app which is available for both Android and iOS version (´・ω・`) | |
僅供學術使用 請勿用作非法用途 | |
====================== | |
*/ | |
import System; |
#!/bin/bash | |
set -x #echo on | |
set -e | |
### vars | |
CI_BUILD_NUMBER=${CI_BUILD_NUMBER:=0} | |
BUILD_TARGET=${BUILD_TARGET:='staging'} | |
WORK_DIR=${HOME}/work |
""" | |
R Midhun Suresh | |
2017 | |
version 0.1 | |
A short python script to crack restriction password of IOS. | |
Much faster than using a browser. | |
To use this code, you will need to obtain the hash of the password and salt from your ios backup file. | |
This process is described in detail on http://ios7hash.derson.us | |
""" | |
import hashlib |
# -*- coding: iso-8859-1 -*- | |
try: | |
import sys | |
import hashlib | |
import urllib2 | |
import getopt | |
from os import path | |
from urllib import urlencode | |
from re import search, findall | |
from random import seed, randint |
To symlink a document located in one Google Drive folder, in a different Google Drive folder, select the document you want to symlink, then hit Shift+Z and you'll be presented with a menu to choose the folder you'd like to add a symlink to
https://www.labnol.org/internet/add-files-multiple-drive-folders/28715/
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>items</key> | |
<array> | |
<dict> | |
<key>assets</key> | |
<array> | |
<dict> |
Prerequisite: latest Docker for Mac on MacOS Sierra
$ brew update
$ brew install --HEAD xhyve
$ brew install docker-machine-driver-xhyve
$ sudo chown root:wheel $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve
$ sudo chmod u+s $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve
$ curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.18.0/minikube-darwin-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
=============================
# | |
# This is a set of bash function definitions, and a bash command, that | |
# set up bash completion for the Mac OS X "open" command. | |
# | |
# HOW TO USE | |
# | |
# Add this command to your .bashrc: | |
# | |
# . open.sh | |
# |