The initial source comes from sdcuike/issueBlog#4
https://github.com/PacktPublishing free to download books code by Packet
https://github.com/EbookFoundation/free-programming-books Very immense
https://github.com/PacktPublishing free to download books code by Packet
https://github.com/EbookFoundation/free-programming-books Very immense
| Code | Terminology | Kind | Usage | Line | |
|---|---|---|---|---|---|
| $scr | scripting additions folder | Property of class: domain | System Events : Disk-Folder-File Suite | 1 | |
| %doc | music folder | Property of class: user domain object | System Events : Disk-Folder-File Suite | 2 | |
| µdoc | music folder | Enumeration | Standard Additions : File Commands | 3 | |
| ƒhlp | help | Enumeration | Standard Additions : File Commands | 4 | |
| ƒhlp | help folder | Enumeration | Standard Additions : File Commands | 5 | |
| ƒlib | shared libraries | Enumeration | Standard Additions : File Commands | 6 | |
| ƒlib | shared libraries folder | Enumeration | Standard Additions : File Commands | 7 | |
| ƒmod | modem scripts | Enumeration | Standard Additions : File Commands | 8 | |
| ƒmod | modem scripts folder | Enumeration | Standard Additions : File Commands | 9 |
| #!/bin/bash | |
| CRASH=$1 | |
| APP=$2 | |
| ARCH=$3 | |
| OUTPUT=$4 | |
| # This script will fully symbolicate an iOS Crash Report | |
| # Usage: ./symbolicate.sh mycrash.crash MyApp.app arch64 output.crash | |
| # |
Generally, the Git proxy configuration depends on the Git Server Protocol you use. And there're two common protocols: SSH and HTTP/HTTPS. Both require a proxy setup already. In the following, I assume a SOCKS5 proxy set up on localhost:1080. But it can also be a HTTP proxy. I'll talk about how to set up a SOCKS5 proxy later.
When you do git clone ssh://[user@]server/project.git or git clone [user@]server:project.git, you're using the SSH protocol. You need to configurate your SSH client to use a proxy. Add the following to your SSH config file, say ~/.ssh/config:
ProxyCommand nc -x localhost:1080 %h %p
| # install | |
| mkdir ~/macports | |
| cd ~/macports | |
| curl -O https://distfiles.macports.org/MacPorts/MacPorts-2.5.3.tar.bz2 | |
| tar xf MacPorts-2.5.3.tar.bz2 | |
| cd MacPorts-2.5.3/ | |
| ./configure --enable-readline --prefix=$HOME/macports --with-no-root-privileges | |
| make && make install |
| # not an exhaustive list | |
| nsurlsessiond "icloud sync" | |
| fseventsd "macos file system events" | |
| WindowServer "macos windows" | |
| DisplayLinkManager "macos driver" | |
| configd "macos dynamic configuration" | |
| displaypolicyd "macos process" | |
| CommCenter "macos keychain" | |
| kernel_task "macos kernel" |
你知道 Mac 本身也有內建防火牆嗎?
我指的不是 System Preferences 裡面有的防火牆(那個屬於 Application Firewall 指定程式進出的),而是可以像 linux iptables 可以設定規則的防火牆。
它叫做 Packet filter 簡稱 PF,因為 Mac OSX 屬於 BSD 系列的系統
自從 10.7 (Lion) 之後就有內建 PF(在這之前是 IPFW),只是預設是關閉的。
官方文件寫的非常少,大部分要參考 FreeBSD 的文件或者 OpenBSD 的文件,
大部分這二者看到的文件跟語法大多都支援。
Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iexHere are the steps to installing and setting up GDB on Mac OS Sierra/High Sierra.
Run brew install gdb.
On starting gdb, you will get the following error:
Unable to find Mach task port for process-id 2133: (os/kern) failure (0x5).
(please check gdb is codesigned - see taskgated(8))To fix this error, follow the following steps:
Preconditions:
- POSIX or Windows system
- Install Docker
- A GitHub repo that already builds on Travis
Postcondition: