2014-10-01から1ヶ月間の記事一覧

PythonでWebSocketを使う

http://blog.miguelgrinberg.com/post/easy-websockets-with-flask-and-gevent

Kindleのazwファイルをpdfに変換する

Calibreにプラグインを入れてPDFに変換できた。 http://www.epubor.com/calibre-drm-removal-plugins.html プラグイン http://download.epubor.com/DeDRM_plugin.zip コンテンツを右クリック→open containing folderでPDFの場所に飛べる デフォルト設定だと…

MacTeXにおける実行ファイルの場所

シンボリックリンクが重層的に貼られている. $ which lualatex >/usr/texbin/lualatex $ ls - l /usr/texbin /Library/TeX/Distributions/Programs/texbin -> ../.DefaultTeX/Contents/Programs/texbin $ ls -l /Library/TeX/Distributions/Programs/.Defau…

TeXでLuaを使うLuaLaTeX

luaでターミナルコマンドを叩く方法 $ lua > os.execute("date") Wed Oct 1 15:52:34 JST 2014luaの使い方 \documentclass[a4paper]{article} \begin{document} \newcommand{\showhoge}{ \directlua{ tex.print('hoge') } } \showhoge \end{document}

jQueryからファイルをダウンロードする

fileDownload.jsを使う. http://stackoverflow.com/questions/4545311/download-a-file-by-jquery-ajaxfileDownloadのCDN(?) http://jqueryfiledownload.apphb.com/Scripts/jquery.fileDownload.jsjQueryを事後的に読む(DOMに追加) var head= document.ge…