Skip to content

Instantly share code, notes, and snippets.

# $Id: screen-keys.conf,v 1.7 2010-07-31 11:39:13 nicm Exp $
#
# By Nicholas Marriott. Public domain.
#
# This configuration file binds many of the common GNU screen key bindings to
# appropriate tmux key bindings. Note that for some key bindings there is no
# tmux analogue and also that this set omits binding some commands available in
# tmux but not in screen.
#
# Note this is only a selection of key bindings and they are in addition to the

Qiita Team のコメント通知

  • 他人の記事でも、自分がコメントした記事にコメントがついたら (メンションがなくても) メールで知らせてほしい。
    • そうじゃないと、何か気がついてコメントを射し込んだことにたいして返信があったのに気付かないでディスカッションが途中で止まっちゃう

いまどういう仕様かしら。通知きてないきがするが。

はてなグループでも昔からこの問題があって、スタコメ (星の横につく謎のコメント機能) にはそれが実装されて、以降、社員間でのディスカッションが何か意志決定がされるまで続くようになった、という経緯がありました。

問題

wiki はストックで blog はフロー、という考えで

  • 某ツールはストック (※)
  • Qiita Team はフロー

みたいな感じで皆捉えているけども、よく考えるとなぜ Qiita Team はフロー、と当然ように納得してしまっているのか。思考停止しているのではないかということを今少し思った。

仮に自分が同じようなものを作るとしても、一つのツールでフローとストックを両方面倒みれる道具にするには、ここを掘り下げて考えきれないといけない。

dyld: Symbol not found: ___CFObjCIsCollectable
Referenced from: /System/Library/Frameworks/Security.framework/Versions/A/Security
Expected in: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator6.1.sdk/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
in /System/Library/Frameworks/Security.framework/Versions/A/Security
# -*- coding: utf-8 -*-
class AppDelegate
def application(application, didFinishLaunchingWithOptions:launchOptions)
@window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
@window.rootViewController = UINavigationController.alloc.initWithRootViewController(
MainViewController.new
)
@window.makeKeyAndVisible
watch_clipboard
casper.test.begin 'トップページから検索して貼り付けHTMLを取得', 7, (test) ->
casper.start 'http://app.amazlet.com/', ->
test.assertHttpStatus 200
test.assertTitleMatch /^amazlet/, "タイトル文字列が期待通り"
test.assertExists 'form', "メインフォームがある"
@fill 'form', keyword: "chef solo"
@click 'form input[type="submit"]'
casper.then ->
test.assertHttpStatus 200
casper = require('casper').create
pageSettings:
loadImages: false,
## amazlet top page
casper.start 'http://app.amazlet.com/', () ->
@echo @getCurrentUrl()
@echo @getTitle()
@fill 'form', keyword: casper.cli.args[0]
@click 'form input[type="submit"]'
casper = require('casper').create
pageSettings:
loadImages: false,
## amazlet top page
casper.start 'http://app.amazlet.com/', () ->
@echo @getCurrentUrl()
@echo @getTitle()
@fill 'form', keyword: casper.cli.args[0]
@click 'form input[type="submit"]'
require 'tempfile'
tmp = Tempfile.open(['motion_env', '.rb'])
tmp.write("Hello, World")
tmp.close
p tmp.path