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
| #!/usr/bin/env python2.7 | |
| import subprocess as subp | |
| import shutil | |
| import sys, os | |
| import pdb | |
| class Delpkg(object): | |
| pkgInfoCommand = 'pkgutil --pkg-info "{pkgname}"' | |
| pkgFilesCommand = 'pkgutil --files "{pkgname}" --only-files' |
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
| #!/usr/bin/env python2.7 | |
| import os, re, sys | |
| from itertools import chain | |
| import shutil as sh | |
| def main(walkingPath=None, cleanPic=True, cleanLang=True, dryrun=False): | |
| matchPatternlang = re.compile(r'^(?!(?:english|base|en(?=\.)|chinese|zh(?=\.)|zh[-_](?!tw))).+\.lproj$', flags=re.I) | |
| matchPattern2xp = re.compile(r'^(.+)(@2x)(\.(?:png|bmp|tiff|tif|icns|gif))$', flags=re.I) | |
| for path, dirs, files in os.walk(walkingPath): |
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
| #!/usr/bin/env python2.7 | |
| import plistlib | |
| import os | |
| import sys | |
| import shutil | |
| import subprocess | |
| SUBDIR_PATH=os.path.sep.join(('Contents', 'Info.plist')) |
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
| #!/bin/bash | |
| if [[ $1 =~ (tcp|udp) ]] || [ -z "$1" ];then | |
| pass | |
| else | |
| echo Wrong option! | |
| exit 1 | |
| fi | |
| trap 'tput clear;exit 0' 2 | |
| col=$(tput cols) | |
| while true; do |
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
| if ((psi==1));then | |
| PS1='$( | |
| exitstatus=$? | |
| if ((exitstatus==0));then | |
| exitstatus='' | |
| fi | |
| predots="" | |
| postdots="" | |
| extrachars=6 | |
| if [[ "$PWD" =~ ^$HOME ]];then |
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
| <?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>EnableGlobbing</key> | |
| <false/> | |
| <key>Label</key> | |
| <string>external_drives_no_index</string> | |
| <key>ProgramArguments</key> | |
| <array> |
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
| #!/usr/bin/env python2.7 | |
| # coding:utf-8 | |
| from PIL import ImageFont | |
| from PIL import Image | |
| from PIL import ImageDraw | |
| import sys | |
| import re | |
| fontSize = 18 |
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
| ver2.gpsoft.com.au | |
| ver0.gpsoft.com.au | |
| blog.dopus.com | |
| www.gpsoft.com.au | |
| dns.msftncsi.com |
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
| #!/usr/bin/env python2.7 | |
| from argparse import ArgumentParser | |
| import sys | |
| def parseArg(): | |
| '''parse command line arguments''' | |
| parser = ArgumentParser() | |
| parser.add_argument('-i', '--input', dest='input', metavar='INPUT',\ | |
| type=file, default=sys.stdin, help='Full input 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
| #!/usr/bin/env perl -i -n | |
| use warnings; | |
| use strict; | |
| use Encode; | |
| my $l=decode_utf8($_); | |
| $l=~s/([^[:ascii:]])/"&#".ord($1).";"/ge; | |
| print $l; |
OlderNewer