(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
import os | |
from subprocess import Popen, PIPE, check_output, STDOUT, CalledProcessError | |
import shlex | |
list_branches_command = "git for-each-ref --sort=committerdate refs/heads/ --format='%(refname:short)'" | |
pipe = Popen(list_branches_command, shell=True, stdout=PIPE) | |
for branch in pipe.stdout: | |
branch = branch.strip().decode("utf-8") | |
get_remote_command = f"git rev-parse --abbrev-ref --symbolic-full-name {branch}@{{u}}" |
################## | |
### config.yml ### | |
################## | |
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: circleci/python:3.6 | |
steps: |
import UIKit | |
import AVFoundation | |
import XCPlayground | |
XCPlaygroundPage.currentPage.needsIndefiniteExecution = true | |
let string = "あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモーリオ市、郊外のぎらぎらひかる草の波。またそのなかでいっしょになったたくさんのひとたち、ファゼーロとロザーロ、羊飼のミーロや、顔の赤いこどもたち、地主のテーモ、山猫博士のボーガント・テストゥパーゴなど、いまこの暗い巨きな石の建物のなかで考えていると、みんなむかし風のなつかしい青い幻燈のように思われます。" | |
let synthesizer = AVSpeechSynthesizer() | |
let voice = AVSpeechSynthesisVoice(language: "ja_JP") | |
let utterance = AVSpeechUtterance(string: string) |