One of the thing I want to say about it, they openly stated they want to kill us. Can you let them come in?
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
yyu $ adb shell pm list packages | grep line | |
package:jp.naver.line.android | |
package:com.linepaycorp.talaria | |
yyu $ adb shell pm path jp.naver.line.android | |
package:/data/app/jp.naver.line.android-WMJPtbQ6zTtdliMDJ2oK3A==/base.apk | |
package:/data/app/jp.naver.line.android-WMJPtbQ6zTtdliMDJ2oK3A==/split_config.arm64_v8a.apk | |
yyu $ adb pull /data/app/jp.naver.line.android-WMJPtbQ6zTtdliMDJ2oK3A==/base.apk | |
/data/app/jp.naver.line.android-WMJPtbQ6zTtdliMDJ2oK3A==/base.apk: 1 file pulled. 32.9 MB/s (71414033 bytes in 2.071s) |
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
set-window-option -g mode-keys emacs | |
set -g mouse on | |
set -g default-shell /usr/local/bin/zsh | |
bind-key m run pane-maximize | |
bind-key e run tmux-editbuf | |
bind-key -rn M-Up resize-pane -U 5 |
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
@startuml | |
autonumber | |
actor Alice | |
actor Tumbler | |
actor Bob | |
group on Blockchain | |
Tumbler -> Bob : 1BTCを供託する |
This file has been truncated, but you can view the full file.
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
<?xml version="1.0"?> | |
<!DOCTYPE coverage SYSTEM "http://cobertura.sourceforge.net/xml/coverage-04.dtd"> | |
<coverage | |
line-rate="0.59" lines-valid="25420" lines-covered="14906" branches-valid="1227" branches-covered="877" branch-rate="0.71" complexity="0" version="1.0" timestamp="1526760035287"> | |
<sources> | |
<source>--source</source> | |
<source>/Users/yyu/Desktop/playframework/framework/src/play-cache/src/main/scala</source> | |
<source>/Users/yyu/Desktop/playframework/framework/src/play-cache/src/main/java</source> | |
<source>/Users/yyu/Desktop/playframework/framework/src/play-docs/src/main/scala</source> | |
<source>/Users/yyu/Desktop/playframework/framework/src/play-docs/src/main/java</source> |
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
set cncpcompletion | |
set noautofocus | |
map b :buffer<Space> | |
imap <C-h> deleteChar | |
iunmap <C-j> |
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
% 次のコマンドを実行すると、エラーが発生する | |
% $ USE_HIRAGINO=true lualatex mwe | |
\documentclass[a5paper,lualatex,9pt,openany,ja=standard]{bxjsbook} | |
\usepackage{luacode} | |
\usepackage{fontspec} | |
\begin{luacode*} | |
USE_HIRAGINO = os.getenv"USE_HIRAGINO" | |
if USE_HIRAGINO == "true" then |
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
class App<T, A> { | |
var underlying: Any | |
init(_ a: Any) { | |
underlying = a | |
} | |
} | |
protocol Newtype1 { | |
associatedtype A |
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
$ for i in {0,1,2,3,4,5,6,7,8,9}; do sudo ln -s "/System/Library/Fonts/ヒラギノ角ゴシック W${i}.ttc" "HiraKakuProN-W${i}.otf"; done | |
$ for i in {3,6}; do sudo ln -s "/System/Library/Fonts/ヒラギノ明朝 ProN W${i}.ttc" "HiraMinProN-W${i}.otf"; done |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
public interface Relation { } | |
public interface Relation<K, out V> : Relation | |
{ | |
V Get(K key); | |
} |