- 13:30-13:45 Opening
- 13:45-14:15 Sponsor session 1 Ayumu AIZAWA "Heroku"
- 14:30-15:00 Sponsor session 2 Kazunori Hirano "Microsoft's Openness Vision and Strategy. MS <3 (Loves) Ruby and Linux!"
- 15:00-15:30 Sponsor session 3 Kenichi TAKAHASHI "Social Coding, It's Not Unusual in ESM"
- 15:45-16:15 Sponsor session 4 Masahiro Ihara "How to create COOKPAD"
- 16:30-17:00 Yuichi Tateno (@hotchpotch / id:secondlife) "Technology that drives fun cooking 2012" Gosuke Miyashita
#!/bin/bash | |
# attach to an existing tmux session, or create one if none exist | |
# also set up access to the system clipboard from within tmux when possible | |
if [[ $OSTYPE == darwin* && -x $(command -v reattach-to-user-namespace) ]]; then | |
# on OS X force tmux's default command to spawn a shell in the user's namespace | |
# https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard | |
tweaked_config=$(cat $HOME/.tmux.conf <(echo 'set-option -g default-command "reattach-to-user-namespace -l $SHELL"')) |
fizz = function f() { | |
fizz = function () { | |
fizz = function () { | |
fizz = f | |
return "Fizz" | |
} | |
} | |
} | |
buzz = function f() { |
# This uses the grains module | |
# http://docs.saltstack.org/en/latest/ref/modules/all/salt.modules.grains.html#module-salt.modules.grains | |
# http://salt.readthedocs.org/en/latest/ref/states/all/salt.states.module.html#module-salt.states.module | |
salt: | |
module.run: | |
- name: grains.ls | |
(require 'request) ;; https://github.com/tkf/emacs-request | |
(require 'json) | |
(defvar ginger-end-point | |
"http://services.gingersoftware.com/Ginger/correct/json/GingerTheText" ) | |
;;;###autoload | |
(defun ginger-region (beg end) | |
(interactive "r") | |
(lexical-let* ((text (buffer-substring-no-properties beg end)) |
RubyKaigi 2013 – great conference, but I probably wouldn’t go next year if I was a woman の内容の概略です。認識間違ってたら訂正するので @kyanny までご連絡ください。
It is a Japanese outline text of RubyKaigi 2013 – great conference, but I probably wouldn’t go next year if I was a woman. If you find any issues, please mention to @kyanny.
- RubyKaigi 2013 のあるプレゼン中に、発表者が「おまえらが来年台湾に来るべき理由: 女の子がかわいい」という発言をした (あくまで冗談、というニュアンスで)
- その発言に対する聴衆の反応は、拍手喝采・オオウケ、という感じだった。けどこれってまずくない?というのが元ブログの趣旨
- ブログの著者は、この発表者の発言そのものを問題視しているのではない (全く問題が無いと思っているわけでもないが、個人攻撃は望んでいないのであえて名指ししていない / 訳者も同感です)
- 聴衆はざっと見た感じ 95% くらいは男性で、ブログ著者は、「そういう男性ばかりの場で、女性の容姿に関する冗談に対し、そのような反応をしているのをその場に居合わせた女性が見たら、来年もまた来たいと思うのだろうか?」と言っている
(require 'request) ;; https://github.com/tkf/emacs-request | |
(defvar ginger-rephrase-end-point | |
"http://ro.gingersoftware.com/rephrase/rephrase") | |
;;;###autoload | |
(defun ginger-rephrase (&optional $text $beg $end) | |
(interactive) | |
(lexical-let* (($text | |
(cond ($text $text) |
function FindProxyForURL(url, host) { | |
var useSocks = ["imgur.com"]; | |
for (var i= 0; i < useSocks.length; i++) { | |
if (shExpMatch(host, useSocks[i])) { | |
return "SOCKS localhost:9999"; | |
} | |
} | |
return "DIRECT"; |
Slack doesn't provide an easy way to extract custom emoji from a team. (Especially teams with thousands of custom emoji) This Gist walks you through a relatively simple approach to get your emoji out.
If you're an admin of your own team, you can get the list of emoji directly using this API: https://api.slack.com/methods/emoji.list. Once you have it, skip to Step 3
HOWEVER! This gist is intended for people who don't have admin access, nor access tokens for using that list.
Follow along...