Swift Concurrency Manifesto
Author: Chris Lattner
Chinese Translation by Jason Yu
id | created_at | login | name | location | |
---|---|---|---|---|---|
1 | 2007-10-20 05:24:19 UTC | mojombo | Tom Preston-Werner | San Francisco | |
2 | 2007-10-20 05:24:19 UTC | defunkt | Chris Wanstrath | ||
3 | 2008-01-07 17:54:22 UTC | pjhyett | PJ Hyett | San Francisco | |
4 | 2008-01-12 05:38:33 UTC | wycats | Yehuda Katz | Portland, OR | |
5 | 2008-01-12 07:51:46 UTC | ezmobius | Ezra Zygmuntowicz | In the NW | |
6 | 2008-01-12 15:15:00 UTC | ivey | Michael D. Ivey | Tuscumbia, AL | |
7 | 2008-01-12 16:46:24 UTC | evanphx | Evan Phoenix | Los Angeles, CA | |
17 | 2008-01-13 05:57:18 UTC | vanpelt | Chris Van Pelt | San Francisco | |
18 | 2008-01-13 06:02:21 UTC | wayneeseguin | Wayne E. Seguin | Buffalo, NY |
:root { | |
--font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; | |
--body-color: rgba(255, 255, 255, 0.7); | |
--body-background: #282c34; | |
--header-link-color: #9b9494; | |
--header-active-link-color: #d19a66; | |
--input-border: 1px solid #2c384e; | |
--input-background: #2c384e; | |
--input-placeholder-color: #888; | |
--input-focus-border-color: #d19a66; |
# in /etc/systemd/system | |
[Unit] | |
Description=Bluetooth Agent | |
[Service] | |
ExecStart=/usr/bin/bt-agent -c NoInputNoOutput | |
Type=simple | |
[Install] | |
WantedBy=multi-user.target |
package main | |
import ( | |
"bytes" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"golang.org/x/crypto/ssh" | |
kh "golang.org/x/crypto/ssh/knownhosts" |
mkdir /mnt/wasabi-cache | |
lvcreate -L 100G -n wasabi-cache vg0 | |
mkfs.ext4 /dev/vg0/wasabi-cache | |
docker run -d -p 9000:9000 --name minio-wasabi -e "MINIO_CACHE_DRIVES=/mnt/wasabi-cache" -e "MINIO_CACHE_EXPIRY=40" \ | |
-e "MINIO_ACCESS_KEY=AKKEYKEYKEYKEYKEY" -e "MINIO_SECRET_KEY=mysecret123123123123123" \ | |
minio/minio gateway s3 https://s3.wasabisys.com:443 |
#!/bin/bash | |
hdiutil create -o /tmp/Mojave.cdr -size 8g -layout SPUD -fs HFS+J | |
hdiutil attach /tmp/Mojave.cdr.dmg -noverify -mountpoint /Volumes/install_build | |
sudo /Applications/Install\ macOS\ 10.14\ Beta.app/Contents/Resources/createinstallmedia --volume /Volumes/install_build | |
mv /tmp/Mojave.cdr.dmg ~/Desktop/InstallSystem.dmg | |
hdiutil detach /Volumes/Install\ macOS\ 10.14\ Beta | |
hdiutil convert ~/Desktop/InstallSystem.dmg -format UDTO -o ~/Desktop/Mojave.iso |
package main | |
import ( | |
"bytes" | |
"encoding/binary" | |
"errors" | |
"fmt" | |
"io" | |
"os" | |
"time" |
Author: Chris Lattner
Chinese Translation by Jason Yu
Create a template service file at /etc/systemd/system/secure-tunnel@.service
. The template parameter will correspond to the name
of target host:
[Unit]
Description=Setup a secure tunnel to %I
After=network.target