Alfred Git Commit Message Example
例文を組み込んだAlfred Workflowを作りました:以下転載:
以下転載:
start new:
tmux
start new with session name:
tmux new -s myname
更新: | 2023-03-03 |
---|---|
作者: | @voluntas |
バージョン: | 2023.1 |
URL: | https://voluntas.github.io/ |
概要
こんな感じのをzshrcに書く。この場合、@キーで画像が変わる。
image_list=("画像1" "画像2") # 絶対パス
image_index=1
bg() {
if [ -z "$BUFFER" ]; then
if test $image_index -eq 2; then
When writing a string of multiple utility classes, always do so in an order with meaning. The "Concentric CSS" approach works well with utility classes (i.e,. 1. positioning/visibility 2. box model 3. borders 4. backgrounds 5. typography 6. other visual adjustments). Once you establish a familiar pattern of ordering, parsing through long strings of utility classes will become much, much faster so a little more effort up front goes a long way!
Always use fewer utility classes when possible. For example, use mx-2
instead of ml-2 mr-2
and don't be afraid to use the simpler p-4 lg:pt-8
instead of the longer, more complicated pt-4 lg:pt-8 pr-4 pb-4 pl-4
.
Prefix all utility classes that will only apply at a certain breakpoint with that breakpoint's prefix. For example, use block lg:flex lg:flex-col lg:justify-center
instead of block lg:flex flex-col justify-center
to make it very clear that the flexbox utilities are only applicable at the
31 Aug 2011
私は人々にGitを教えるためにあちこちを飛び回っているが、最近のほぼすべてのクラスやワークショップで git-flow についてどう思うかを尋ねられた。私はいつも、git-flowは素晴らしいと思うと答えている。何百万ものワークフローを持ったシステム(Git)を提供し、ドキュメントもあるし、よくテストされている。フレキシブルなワークフローは、実に容易なやり方で多くの開発者の役に立つ。標準的なものになりつつあり、開発者はプロジェクトや企業の間を移動しつつこの標準的なワークフローに馴染むことができる。
#!/usr/bin/swift | |
import AppKit | |
let urls = CommandLine.arguments.dropFirst(1).map { URL(fileURLWithPath: $0) } | |
NSWorkspace.shared.activateFileViewerSelecting(urls) |
昨今の社会情勢の影響もありリモートワークを導入する企業・チームが増えてきましたが、 一口に「リモートワーク」といってもさまざまなスタイルがあります。
企業側と働く側のミスマッチを防ぐため、リモートワークにおける観点を列挙してみました。
どの程度リモートワークに比重を置いて導入しているかのチェックリストです。
package main | |
/* | |
Golang SSHAgent Usage | |
https://orebibou.com/2019/03/golang%E3%81%A7ssh-agent%E3%81%8B%E3%82%89%E9%8D%B5%E3%82%92%E5%8F%96%E5%BE%97%E3%81%97%E3%81%A6ssh%E6%8E%A5%E7%B6%9A%E3%81%99%E3%82%8B/ | |
*/ | |
import ( | |
"fmt" | |
"golang.org/x/crypto/ssh" |