Skip to content

Instantly share code, notes, and snippets.

View kenjisato's full-sized avatar

Kenji Sato kenjisato

View GitHub Profile
@kenjisato
kenjisato / 2015-04-20.ipynb
Last active August 29, 2015 14:18
2015 経済動学 講義資料
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kenjisato
kenjisato / 2015-05-18.ipynb
Last active August 29, 2015 14:21
2015 経済動学 講義資料 (2015-05-18)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kenjisato
kenjisato / 2015-05-25.ipynb
Last active August 29, 2015 14:21
2015 経済動学 講義資料 (2015/05/25)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kenjisato
kenjisato / 2015-04-06.ipynb
Last active August 29, 2015 14:22
2015 経済動学 講義資料 (2015/04/06)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kenjisato
kenjisato / 2015-06-15.ipynb
Created June 15, 2015 05:11
2015 経済動学 講義資料 (2015-06-15)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kenjisato
kenjisato / 2015-06-29.ipynb
Created June 29, 2015 05:02
2015 経済動学 講義資料 (2015-06-29)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kenjisato
kenjisato / 2015-07-06.ipynb
Created July 6, 2015 05:39
2015 経済動学 講義資料 (2015-07-06)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kenjisato
kenjisato / Rprofile
Last active December 1, 2020 05:15
Cross Referenceable Equation with Preview in RMarkdown: http://en.kenjisato.jp/rmarkdown-math/
.beginMath = c(
"\\begin{equation}",
"\\begin{equation*}",
"\\begin{align}",
"\\begin{align*}"
)
.endMath = c(
"\\end{equation}",
"\\end{equation*}",
@kenjisato
kenjisato / child.Rmd
Created March 21, 2017 11:06
Rmd to LaTeX without preamble
---
title: title
author: author
output: html_document
---
# Section header
Body text goes here.
@kenjisato
kenjisato / keynote_export.applescript
Last active April 23, 2024 12:09
Script to Export Keynote Presentation Files to PDF or JPEG
on sansExt(theFileName)
do shell script "file=" & theFileName & ";" & "echo ${file%.*}"
end sansExt
on getExt(theFileName)
do shell script "file=" & theFileName & ";" & "echo ${file##*.}"
end getExt
on run argv
set keynote_path to (item 1 of argv)