- アナと雪の女王
- ウォーリー
- Mr.インクレディブル
- インサイドヘッド
- ファインディング・ニモ
- ベイマックス
- モンスターズ・インク
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def inline_dl(line) | |
dl = "" | |
dl << "<dl>" | |
line.scan(/\[.+?\][^\[]+/).each do |item| | |
dt, dd = item.scan /[^\[\]]+/ | |
dl << "<dt>#{dt}</dt>" | |
dl << "<dd>#{dd}</dd>" | |
end | |
dl << "</dl>" | |
dl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun memo-create() | |
(interactive) | |
(let ((memo-name (format-time-string "%Y-%m-%d-%s"))) | |
(find-file (concat "~/Dropbox/memo/" memo-name ".md")))) | |
(defun memo-search() | |
(interactive) | |
(setq q (read-string "grep word: ")) | |
(ag-regexp q "~/Dropbox/memo/") | |
(select-window ; select ag buffer | |
(car (my/get-buffer-window-list-regexp "^\\*ag ")))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun my/action-lock-search-hashtag (hashtag) | |
(howm-search hashtag t)) | |
(setq action-lock-default-rules | |
(cons (action-lock-general 'my/action-lock-search-hashtag "^#[^ #]+$" 0) | |
action-lock-default-rules)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// inspired from: | |
// https://gist.github.com/masuidrive/0bea937bcaf12bc94e7fba8acf13382a | |
// ## Go to https://api.slack.com/ | |
// * Create your app. | |
// * Create "Bot User". | |
// * Go to "OAuth Tokens & Redirect URLs" and copy the Access Token. | |
// * Set the permission of "chat:write:bot" to the bot. | |
// ## Go to https://www.google.com/script/start/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.addEventListener("load", main, false); | |
function main(e) { | |
const jsInitCheckTimer = setInterval(jsLoaded, 1000); | |
function jsLoaded() { | |
var t = document.querySelector(".ebookBuyboxDeliverToDropdown").children[1]; | |
if (t != null) { | |
clearInterval(jsInitCheckTimer); | |
var c = t.parentNode.children; | |
for (var i = 0; i < c.length; i++) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'url-util) | |
(defun my:deepl-translate (&optional string) | |
(interactive) | |
(setq string | |
(cond ((stringp string) string) | |
((use-region-p) | |
(buffer-substring (region-beginning) (region-end))) | |
(t | |
(save-excursion | |
(let (s) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# I'm here: ~/src/github.com/decomoji/slack-reaction-decomoji/scripts/ | |
require 'kimurai' | |
require 'highline/import' | |
require 'retryable' | |
require 'open-uri' | |
require 'json' | |
class Spider < Kimurai::Base | |
@name = "slack_spider" | |
@engine = :selenium_chrome |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scrapbox.PopupMenu.addButton({ | |
title: 'code', | |
onClick: text => { | |
return 'code:script\n' + text.split(/\n/).map(line => '\t' + line).join('\n'); | |
} | |
}); | |
scrapbox.PopupMenu.addButton({ | |
title: 'table', | |
onClick: text => { | |
return 'table:table\n' + |
システムのアーキテクトとして活動していると、グルのように扱われることが多々あります。でも、本当は、メンバの独創を引き出すことこそが必要なのです。メンバの態度を、「決めてください、教えてください」から、「こうしたい」(を阻害しないお膳立て)にするためには、どうすべきでしょうかね。
「独創を出してもいい」ってのが共有されてないのかもですね。あるいはスキルがないので手を出しにくいのかもしれません。いずれの場合も何らかの方法で情報やナレッジを形式知化できるとよさそうです。
Essence の導入について気になっていることがあります。チームメンバー全員が Essence の背景から理解できる状態に持っていくまで、結構な教育コストがかかるような気がします。ゲーム形式での使い方(3種類)も紹介されていましたが、理解度は別にして今のプロセスを可視化するツールとして利用するのは悪手でしょうか。
「カードを広げてみんなで見てみよう」程度なら、教育コストもさほどかからないですし、そのほうがEssenceだとわからずに使ってくれるのではないかと思います。ゲーム形式はそうしたことを目的としていますので、ぜんぜん悪手ではないです。