This file contains hidden or 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
Sepal.Length | Sepal.Width | Petal.Length | Petal.Width | Species | id | |
---|---|---|---|---|---|---|
5.1 | 3.5 | 1.4 | 0.2 | setosa | 1 | |
4.9 | 3 | 1.4 | 0.2 | setosa | 2 | |
4.7 | 3.2 | 1.3 | 0.2 | setosa | 3 | |
4.6 | 3.1 | 1.5 | 0.2 | setosa | 4 | |
5 | 3.6 | 1.4 | 0.2 | setosa | 5 | |
5.4 | 3.9 | 1.7 | 0.4 | setosa | 6 | |
4.6 | 3.4 | 1.4 | 0.3 | setosa | 7 | |
5 | 3.4 | 1.5 | 0.2 | setosa | 8 | |
4.4 | 2.9 | 1.4 | 0.2 | setosa | 9 |
This file contains hidden or 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
// --- setting --- | |
api.Hints.characters = 'asdfghjklnmvbrtyu'; | |
settings.scrollStepSize = 150; | |
settings.nextLinkRegex = /((forward|>>|next|次[のへ]|→)+)/i; | |
settings.prevLinkRegex = /((back|<<|prev(ious)?|前[のへ]|←)+)/i; | |
settings.aceKeybindings = 'emacs'; | |
settings.omnibarPosition = 'bottom'; | |
settings.hintAlign = 'left'; | |
// --- mapping --- |
This file contains hidden or 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
# =============== | |
# navigatge | |
# =============== | |
map o Vomnibar.activate | |
map t Vomnibar.activateInNewTab | |
map d removeTab | |
map u restoreTab | |
map l nextTab | |
map h previousTab | |
map zi zoomIn |
This file contains hidden or 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
local function keyCode(key, modifiers) | |
modifiers = modifiers or {} | |
return function() | |
hs.eventtap.event.newKeyEvent(modifiers, string.lower(key), true):post() | |
hs.timer.usleep(1000) | |
hs.eventtap.event.newKeyEvent(modifiers, string.lower(key), false):post() | |
end | |
end | |
local function remapKey(modifiers, key, keyCode) |
This file contains hidden or 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
-- | |
-- Hammerspoon用 KeyRemap 設定 | |
-- | |
local function keyCode(key, modifiers) | |
modifiers = modifiers or {} | |
return function() | |
hs.eventtap.event.newKeyEvent(modifiers, string.lower(key), true):post() | |
hs.timer.usleep(1000) | |
hs.eventtap.event.newKeyEvent(modifiers, string.lower(key), false):post() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
## データの準備 | |
d <- data.frame( | |
kana = c("お", "エ", "う", "イ", "あ"), | |
letter = c("A", "e", "C", "b", "Z"), | |
stringsAsFactors = FALSE | |
) |
This file contains hidden or 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
--- | |
title: "8章 おわりに" | |
author: "R. Ito" | |
date: "`r Sys.Date()`" | |
output: | |
prettydoc::html_pretty: | |
theme: leonids | |
highlight: github | |
--- |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
--- | |
title: "rlist Tutorial" | |
author: '@nozma' | |
date: "2018/8/4" | |
output: | |
prettydoc::html_pretty: | |
theme: leonids | |
highlight: github | |
keep_md: true | |
--- |