- SVG Editor. Editor and Optimiser
- SVG-edit. browser SVG drawing editor. ( GitHub Project : https://github.com/SVG-Edit/svgedit )
- SVGOMG. Online Graphical User interface for SVGO. ( GitHub Repo : https://github.com/jakearchibald/svgomg/ )
- SVGO. Command line tool to optimize SVG vector graphics files built with NodeJS.
- › SVG-encoder. Encode SVG in data URI to make it work in all modern browsers.
- › URL-encoder for SVG Same as above
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
1. 拷贝OldSDK到Xcode装SDK的目录下 | |
2. 修改plist文件 | |
sudo /usr/libexec/PlistBuddy -c "Set :MinimumSDKVersion 10.7" | |
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Info.plist | |
3. 重启XCode | |
Xcode build svn: /Library/Developer/CommandLineTools/usr/bin |
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
1. install meson | |
brew install meson | |
2. set min version | |
export CFLAGS="-mmacosx-version-min=10.9" before exe 'meson ./build_dir' |
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
tccutil reset ScreenCapture com.company.appname //reset warnning | |
tccutil reset All com.company.appname | |
sudo xattr -d com.apple.quarantine /Applications/xxxx.app //app is damaged, ...move to track |
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
[[NSUserDefaults standardUserDefaults] setObject:@[@"en_US"] forKey:@"AppleLanguages"]; | |
http://www.dyndns.org/cgi-bin/check_ip.cgi |
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
codesign -d --entitlements :- /Applications/Whatever.app/ |
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
lldb ffmpeg -- -i file.mp4 -c:v libx264 -an ./out.mp4 |
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
ps ax | grep ffmpeg |
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
hide: | |
defaults write com.apple.finder CreateDesktop -bool false && killall Finder | |
unhide: | |
defaults write com.apple.finder CreateDesktop -bool true && killall Finder |
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
1. install_name_tool -id new/install/name.dylib libso.dylib //change install name | |
2. install_name_tool -change old_name new_name libso.dylib //change dependence | |
3. otool -L libso.dylib //display install name and dependence | |
4. otool -D libso.dylib //display install name of libso.dylib | |
注意: 在xcode project中写脚本修改install name 会造成sandbox之后运行奔溃,原因在于copy的时候对dylib签名,然后又去修改dylib内容(change install name),这样中破坏了之前的签名,所以会奔溃 |
NewerOlder