2020年2月5日水曜日

Set font of Jupyter

Edit css file below.

.jupyter/custom/custom.css

I'm using migu-1m font by downloading for Windows. For Ubuntu, no font setting required because it's default font is not bad.

custom.css

.CodeMirror pre,
.CodeMirror-dialog,
.CodeMirror-dialog .CodeMirror-search-field,
div.output pre,
div.output_html td,
div.prompt,
div.completions select,
div.container pre,
div.tooltiptext pre,
.terminal-app .terminal
{
    font-family: migu-1m;
    font-size: 10pt;
}


https://stackoverflow.com/questions/22386359/how-to-change-font-in-ipython-notebook
https://stackoverflow.com/questions/45544741/python-jupyter-change-default-font

2020年2月4日火曜日

★xdoc2txt

Windows用?Wordの文章をバイナリファイルからテキストとして抽出してくれます。
http://ebstudio.info/home/xdoc2txt.html
にダウンロードや使い方が書いてある。
C++ のパッケージが必要。
インストールではなく、exeファイルのある場所にcmdで移動してから、コマンドを入力すればよい。
xdoc2txt sample.doc -> sample.txt
など。説明ファイルを見ればよい



★WindowsでPCで流れる音を録音する。

PCで再生しているとある動画の音声を録音したくなったので、
サウンドレコーダーを使いました。

PCで聞いている音を録音できます。ただ、音質は悪いです。
形式はwmaで、2分半くらいで1.8MBになりました。

ステレオミキサーがデフォルトでは無効なので、有効にする設定が必要です。

パソコンから流れている音を録音したい
https://answers.microsoft.com/ja-jp/windows/forum/all/%E3%83%91%E3%82%BD%E3%82%B3%E3%83%B3%E3%81%8B/1a50404a-dc71-4cc1-be5f-4117617d79a5


Raspberry Pi memo

Serial number of Raspberry Pi

$ cat /proc/cpuinfo

Restart

There is no way other than plug off and on.

Here, commands for restart, which not worked for me.
https://www.raspberrypi.org/forums/viewtopic.php?t=176612


Use tab completion


On default rasbian, tab completion was disabled.

$ apt-get install bash-completion

Add in  ~/.bash_profile below code.

if [ -f /etc/bash_completion ]; then
 . /etc/bash_completion
fi

https://www.howtoforge.com/how-to-add-bash-completion-in-debian

2020年2月1日土曜日

2020 Feb daily memo

2020/02/01

I did AWS SAA eaxm practice but result was 40%... not good. That means only 10 of 25 questions were correct.

Seeing Topic level score is like below.
1.0  Design Resilient Architectures: 77% -> 7/11
2.0  Define Performant Architectures: 28% -> 2/7
3.0  Specify Secure Applications and Architectures: 16% -> 1/6
4.0  Design Cost-Optimized Architectures: 0% -> 0/1
5.0  Define Operationally-Excellent Architectures: 0% -> 0/1

Design resilient architectures are so-so good but the rest is bad. Need to read and learn more. My looking back...
1. I got upset when the screen froze. It turned out that I was wrong not choosing two answers. So that answer button didn't work.
2. It's hard to read long question sentences and answers. But need to do many practices.
3. My knowledge for network is less, need to learn more about subnet, vpc, gateway  like those.

2020/02/04

I tried to use Pycharm to write reStructuredText, but it didn't support Japanese. I couldn't find easy setting ways. Just stopped using Pycharm.