- Mac OS X 背后的故事(一)力挽狂澜的Ellen Hancock
- Mac OS X 背后的故事(二)Linus Torvalds的短视
- Mac OS X 背后的故事(三)Mach之父Avie Tevanian
- Mac OS X 背后的故事(四)政客的跨界
- Mac OS X 背後的故事(五)Jean-Marie Hullot 的天才天才發明 Interface Builder
- Mac OS X 背后的故事(六)上善若水 Cordell Ratzlaff 引发的 Aqua 革命(上)
- Mac OS X 背後的故事(七)上善若水 Cordell Ratzlaff 引發的 Aqua 革命(下)
- Mac OS X 背後的故事(八)三好學生 Chris Lattner 的 LLVM 編譯工具鏈
- Mac OS X 背後的故事(九)半導體的豐收(上)
- [Mac OS X 背後的故事(十)半導體的豐收(中)](https
For each machine running xmodmap
will give you the mapping and keycode, take a look first then write the script. I use ubuntu and mac keyboard. The below maps both left and right control and super.
Create an .Xmodmap file in your Linux home directory, with the following contents, then execute xmodmap .Xmodmap
clear control
clear mod4
keycode 37 = Super_L
keycode 105 = Super_R
This file contains 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
flutter@mac9 Downloads % spctl --assess -vvvvvv Google\ Chrome.app | |
Google Chrome.app: accepted | |
source=Notarized Developer ID | |
origin=Developer ID Application: Google, Inc. (EQHXZ8M8AV) | |
flutter@mac9 Downloads % spctl --assess -vvvvvv /bin/zsh | |
/bin/zsh: rejected (the code is valid but does not seem to be an app) | |
origin=Software Signing | |
flutter@mac9 Downloads % spctl --assess -vvv /usr/local/bin/dart |
This file contains 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
[ +21 ms] executing: [/Users/flutter/.cocoon/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H | |
[ +32 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H | |
[ ] b39949ff09992fb9d67500f7148f18b26906e868 | |
[ ] executing: [/Users/flutter/.cocoon/flutter/] git describe --match v*.*.* --first-parent --long --tags | |
[ +16 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags | |
[ ] v1.12.15-21-gb39949ff0 | |
[ +6 ms] executing: [/Users/flutter/.cocoon/flutter/] git rev-parse --abbrev-ref --symbolic @{u} | |
[ +8 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} | |
[ ] origin/master | |
[ ] executing: [/Users/flutter/.cocoon/flutter/] git ls-remote --get-url origin |
This is an investigation on issue flutter/flutter#48818.
The benchmark post_backdrop_filter_perf_ios__timeline_summary was executed 5 times against the commit fa190a8685b1638f44624fb0693b2488629135af on mac10. There are 3 successful runs with similar results and 2 failed runs.
This file contains 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
//Tutorial https://www.objc.io/issues/17-security/inside-code-signing/ | |
//Print which signing certificates are on computer | |
security find-identity -v -p codesigning | |
//Print what was used to codesign an app | |
codesign -vv -d Example.app | |
//Print what entitlements are enabled for app | |
codesign -d --entitlements - Example.app |