- 4GB+ USB Stick
- Windows 7 ISO from Microsoft downloaded to your OSX-Machine
- Open Disk utility
- Find the drive, format it with the following options:
- Choose Master Boot Record (MBR)
| stages: | |
| - load_branches | |
| - master_merge | |
| variables: | |
| create_merge: | |
| stage: master_merge | |
| only: | |
| - master |
| # do not allow .git version control files to be issued | |
| <Directorymatch "^/.*/\.git+/"> | |
| Order deny,allow | |
| Deny from all | |
| </Directorymatch> | |
| <Files ~ "^\.git"> | |
| Order allow,deny | |
| Deny from all | |
| </Files> |
| <?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>com.apple.private.mobileinstall.allowedSPI</key> | |
| <array> | |
| <string>Install</string> | |
| <string>Browse</string> | |
| <string>Uninstall</string> | |
| <string>Archive</string> |
| #!/usr/bin/bash | |
| log=$(git log -1 --pretty=format:"%s") | |
| cur=$(pwd) | |
| target=ios_app_target | |
| workpath=theworkdir | |
| debdes=deb_path | |
| if [ -e "$workpath/$target.app" ]; then | |
| cp -rf $workpath/$target.app $debdes/Package/Applications/$target.app | |
| else | |
| echo "$workpath/$target.app" does not exist! |
| /*------------------------------------------------------------------------------ | |
| Pre/Code Styles | |
| ------------------------------------------------------------------------------*/ | |
| body h1 tt,body h1 code,body h2 tt,body h2 code,body h3 tt,body h3 code,body h4 tt,body h4 code,body h5 tt,body h5 code,body h6 tt,body h6 code{ | |
| font-size:inherit | |
| } | |
| body h1{ |
| // mobile number,like: (+86)13812003192 8613812003192 (+001)13812003192 | |
| (\(?\+?[0-9]{1,3}\)?)?(1[0-9]{10})$ | |
| //simple url regex, just for fun | |
| https?://([\w]+\.)+[\w\-]+(/[\w\-\./?%&=]*)? |
| a { | |
| text-decoration: none; | |
| } |
| @charset "UTF-8";.container{width:980px;margin-left:auto;margin-right:auto;-moz-box-sizing:border-box;box-sizing:border-box}.container:before,.container:after{content:" ";display:table}.container:after{clear:both}.wider .container{width:960px}#site-container>.container:first-child{margin-top:20px}.column-main,.column-sec{float:left}.column-main+.column-sec,.column-sec+.column-main{margin-left:20px}.column-main{width:740px}.column-sec{width:220px}.columns:before,.columns:after{content:" ";display:table}.columns:after{clear:both}.columns.typical .main{float:left;width:620px}.columns.typical .sidebar{float:right;width:330px}.columns.typical.compact-sidebar .main{width:650px}.columns.typical.compact-sidebar .sidebar{width:230px}.columns.dashcols .main{float:left;width:620px}.columns.dashcols .sidebar{float:right;width:337px}.columns.equacols .column{width:470px;float:left}.columns.equacols .secondary{float:right}.columns.equacols.bordered{border-top:1px solid #ddd;border-bottom:1px solid #ddd;background:url("/ima |
| # built application files | |
| *.apk | |
| *.ap_ | |
| # files for the dex VM | |
| *.dex | |
| # Java class files | |
| *.class |