タグ

2011年4月21日のブックマーク (6件)

  • zsh でログイン時に screen を起動する方法

    zsh でログイン時に screen を起動する方法 2007-08-20-1: [Solaris] ~/.zlogin に以下を記述する。 if [ ! "$WINDOW" ]; then exec screen -S main -xRR fi ログイン直後にいつも screen を打っていたのですが、これで楽になりました。 - 追記 (2007-08-21) コメント欄で情報をいただいたように、他のホストにログインすると screen が二重起動する件ですが、以下のようにして対処できそうです。 if [ $TERM != "screen" ]; then exec screen -S main -xRR fi ただし、Solaris の場合は terminfo に screen の記述がないので上記設定ではうまくいきません。 結局メインで使うマシンのみに、一番上の設定をしてそれ以外のマ

  • A successful Git branching model を翻訳しました

    Vincent Driessenさんの "A successful Git branching model" を翻訳しました。 元記事はこちら: http://nvie.com/posts/a-successful-git-branching-model/ (翻訳の公開と画像の利用は人より許諾済みです) このブランチモデルの導入を補助してくれる、git-flowというGit用プラグインがあるそうです。 翻訳の間違い等があれば遠慮なくご指摘ください。 A successful Git branching model この記事では、私のいくつかのプロジェクト仕事でもプライベートでも)で約一年ほど導入して、とてもうまくいくことがわかった開発モデルを紹介する。しばらく前からこれについて書くつもりだったんだが、今まですっかりその時間を見つけられずにいた。ここでは私のプロジェクトの詳細については書

    A successful Git branching model を翻訳しました
    satoship
    satoship 2011/04/21
  • Collection: Design Patterns

    Reuse, recycle, but don’t reinvent the wheel unless necessary. by Brian Christiansen at UI Engineering. Via. This collection captures findings of consistent, unique or interesting interfaces and design flows from across the web. Please note that the content of these sets is not representative of all of the patterns I've captured. I tend to use tags more religiously and recommend that you look ther

    Collection: Design Patterns
  • Add-ons overview  |  Google Workspace Add-ons  |  Google for Developers

    Send feedback Add-ons overview Stay organized with collections Save and categorize content based on your preferences. Add-ons are customized applications that extend Google Workspace applications. Add new capabilities to Google Workspace Add-ons can help automate tasks or make third-party services or information available in Google Workspace. With add-ons, you can do the following: Create customiz

    Add-ons overview  |  Google Workspace Add-ons  |  Google for Developers
  • スーパーカー - 音楽ナタリー 特集・インタビュー

    1997年にデビューし、日のロックの歩みに多大な足跡を残しながら、2005年に惜しまれつつ解散したスーパーカーの最新ベスト盤「RE:SUPERCAR 1 ~redesigned by nakamura koji~」がリリースされた。元メンバーの中村弘二(現iLL)自らがオリジナルテイクにリファインを施した15曲が収められるほか、初回限定盤は残された膨大な量のデモテイクから厳選した未発表音源40曲を収めたDISC 2が付属する。これからスーパーカーを聴く人はもちろん、かつてのファンも興味深く聴けることは間違いない。とりわけデモテイクからは、正規発売音源からはこぼれ落ちたスーパーカーの実にさまざまな可能性を知ることができる。 今回は中村弘二にインタビューを実施したのだが、こうした形でメンバーが、すでに解散したバンドのことを語ることは珍しい。だがそこに、過去をノスタルジックに振り返るだけの感傷

  • Git Cheatsheet

    stash workspace index local repository upstream repository status Displays paths that have differences between the index file and the current HEAD commit, paths that have differences between the workspace and the index file, and paths in the workspace that are not tracked by git. diff Displays the differences not added to the index. diff commit or branch View the changes you have in your workspace

    satoship
    satoship 2011/04/21