2015-01-01から1年間の記事一覧

atom editorでtab-bar, markdown-preview, tree-viewのフォントを変更する

SettingsのEditor settings変えても変わらないんだなぁ。。。 ~/.atom/styles.lessに追記する。例えば .tree-view { font-family: 'Ricty'; } .markdown-preview { font-family: 'Ricty'; } .tab-bar{ font-family: 'Ricty'; } とする。 cssのclass名はdev t…

vinoの設定

Vino? Ubuntuのrepoに入ってるVNC Server。 今見ている画面をVNCで飛ばせる系VNC Serverのソフトウエアだよ。(コントロールもできる)。 類似品としてはTeamViewerとか。 install sudo apt-get install vino で入れる。 config vino-preference というコマン…

Atomのautocomplete-plusのキーマップ

autocomplete-plus autocomplete-plus に 'atom-text-editor:not(mini) .autocomplete-plus.autocomplete-suggestion-list': 'tab': 'unset!' 'enter': 'autocomplete-plus:confirm' 'up': 'unset!' 'down': 'unset!' 'ctrl-p': 'autocomplete-plus:select-p…

SVG 2 EMF on Windows

WindowsとMS Officeをfxxkする前にやれること inkscapeをインストールする inkscapeのインストールフォルダ(典型:C:\Program Files (x86)\Inkscape)をPATHに追加 コマンドプロンプトで inkscape {{変換したいファイル名}}.svg -M {{変換後のファイル名}}.emf…

bbox_inches = "tight"とかそれ系のやつ

要旨 以下に示すように、matplotlibではデフォルトではticksの文字やlabelなどが描写範囲を越えてしまい、見切れることがある。この時、 pylab.savefig("test.png", bbox_inches="tight") と入力することで問題に対処していたが、それ以外にもpylab.show()の…