在收藏夹中新增一个网页,将网址设为下面的其中一个源码。然后打开任一 Creator 页面,接着直接在收藏夹点击刚刚收藏的网址即可。
javascript:(function () {
function visitNode (node, visitor) {
visitor(node);
var children = node._children;
for (var i = 0; i < children.length; ++i) {| #!/bin/bash | |
| # --- Version history --- | |
| # track cpu usage all the time. $1 is logfile name. | |
| # --- Version history --- | |
| # Usage: cputrack [PID] [filename] | |
| # replace [PID] with process ID # | |
| # replace [filename] with base file name to use (no extension) | |
| filepath=/Users/ialaddin # modify as desired | |
| interval=20 # reports per minute | |
| timelimit=6000 # how long to run, in seconds |
| # set a proxy | |
| export HTTP_PROXY= | |
| export HTTPS_PROXY=$HTTP_PROXY | |
| npm config set proxy $HTTP_PROXY | |
| npm config set https.proxy $HTTPS_PROXY | |
| npm config set https-proxy $HTTPS_PROXY | |
| git config --global http.proxy $HTTP_PROXY | |
| git config --global https.proxy $HTTPS_PROXY | |
| # unset proxy |
| <!DOCTYPE html> | |
| <meta charset="UTF-8"> | |
| <style> | |
| .node circle { | |
| fill: #fff; | |
| stroke: steelblue; | |
| stroke-width: 3px; | |
| } |
| Result: 1 | |
| Items { | |
| TemplateId: "BADGE_BATTLE_ATTACK_WON" | |
| Badge { | |
| BadgeType: BADGE_BATTLE_ATTACK_WON | |
| BadgeRanks: 4 | |
| Targets: "\nd\350\007" | |
| } | |
| } | |
| Items { |
| #!/bin/bash | |
| # https://gist.github.com/949831 | |
| # http://blog.carbonfive.com/2011/05/04/automated-ad-hoc-builds-using-xcode-4/ | |
| # command line OTA distribution references and examples | |
| # http://nachbaur.com/blog/how-to-automate-your-iphone-app-builds-with-hudson | |
| # http://nachbaur.com/blog/building-ios-apps-for-over-the-air-adhoc-distribution | |
| # http://blog.octo.com/en/automating-over-the-air-deployment-for-iphone/ | |
| # http://www.neat.io/posts/2010/10/27/automated-ota-ios-app-distribution.html |
| #!/bin/bash | |
| # | |
| # testflightapp.com tokens | |
| API_TOKEN="YOUR_API_TOKEN" | |
| TEAM_TOKEN="YOUR_TEAM_TOKEN" | |
| PRODUCT_NAME="RowMotion" | |
| ARTEFACTS="$PWD/Artefacts" |
| require 'net/http' | |
| require 'json' | |
| class Net::HTTP::Patch < Net::HTTPRequest | |
| METHOD = 'PATCH' | |
| REQUEST_HAS_BODY = true | |
| RESPONSE_HAS_BODY = true | |
| end | |
| url = URI.parse('https://api.github.com/iAladdin') |
| .DS_Store | |
| *.swp | |
| *~.nib | |
| build/ | |
| *.pbxuser | |
| *.perspective | |
| *.perspectivev3 |