File output in Bokeh
Updated on September 23, 2020:There seems a bug in bokeh 2.2.1, in which png files do not contain whole of the graphic area when exporting to png from html. To avoid this error, use bokeh 1.4.0, which can be insalled with conda install -c pyviz bokeh==1.4.0 in a new conda virtual environment This article is targeted for Windows 10. Although Matplotlib is a conventional plotting tool in Python, Bokeh is a relatively new package that makes it easy to create interactive plots. Unfortunately, the image output for pasting into PowerPoint or Word is low resolution by default, and it is necessary to enhance the resolution by setting the value of […]
2018.9.18 Field Visit in Shimizu Port in Shizuoka Prefecture
I have been involved in the long-term perspective committee meeting of Shimizu Port in Shizuoka Prefecture considering the future in the next 20 to 30 years. We had a trip to Shimizu Port on September 18th. The port is attractive not only the function as a port logistics, but also abundant green landscape, world heritage site of Miho-No-Matsubara associated with Mt. Fuji, fishery, energy, industry. Although the port is small, the port must attracts people because of these multiple functions.
Setup GitLab using Git for Windows
Register GitLab Firstly, register GitLab and create a project. No contents are required at this moment as this project will be cloned to Windows directory. Install Git for Windows Download Git for Windows from this site and install it. Default settings are recommended except Adjusting your PATH environment where Use Git from Git Bash only is recommended to choose for safety. Initial setting for Git Open Git Bash and set as follows. Here, Hidemaru Editor is chosen. user.name and user.email should be those registered in GitLab. Quotation marks are also required. $ git config --global core.editor \'/C/Program Files (x86)/Hidemaru/Hidemaru.exe\' //fu8 $ git config --global user.name Your Name $ git config […]
2018.9.9-10 UTokyo Hydrosphere Group field trip
We participated in a UTokyo hydrosphere group trip visiting Kashima Coast, Inbanuma Pond, Tonegawa River Weir, Hitachigawa River Gate, Mizunowato Sawara, Tonegawa River Pumping Station, and Kita-Chiba Pumping Station.
Lab Farewell Party
Farewell and celebration party of our laboratory. Congratulation on your getting master’s degree at the University of Tokyo!
2018. 9.4-8 JICA - Can Tho University capacity building project
As part of the Can Tho University capacity building project supported by JICA, I took a business trip to Can Tho University in Vietnam on the itinerary from September 4 to 8, 2018. The outbound route was 9/4 JL 079 HND/SGN 01:25/05:15, and the return route was 9/7 JL070 SGN/HND 23:25/06:55+1. From Tan Son Nhat International Airport in Ho Chi Minh City to Can Tho City, it takes approximately 3 hours to 4 hours by car. The time has been shortened considerably since the Can Tho bridge was constructed. The hotel I stayed at was Ninh Kieu 2 (designated by JICA), and the exchange rate was 100 JPY = 20,000+ […]
APNG Animation using APNG Assembler (CUI)
GIF animation has been popular since long ago, but in recent years APNG animation (Animation consisting of a time series of PNG files) seems to be becoming popular and supported by the latest major browsers, including Google Chrome. As software to create APNG, APNG Assembler (apngasm) is a standard. Although there is a GUI version on Windows, from the consistency with the Linux environment, I will summarize the creation method using the CUI version. Install APNG Assembler APNG Assembler web site. Download an appropriate file from List of files. For example, Windows 64 bit CUI binary is apngasm-2.91-bin-win64.zip and Linux CUI binary is apngasm-2.91-bin-linux.zip. Although you may install it on […]
Set up ITO-A@kyushu-u supercomputer
This is a memorandum report for seting up an environment on ITO-A at Kyushu University Supercomputer Center. How to login On Windows, you need a terminal emulator to login and MobaXterm is recommended to use, which also has a function of X11 forwarding for displaying X Window screen. Its installation method is introduced in this site (in Japanese). Change file access permission You may change the permission of your directories and files as follows so that group members can read and execute files and help you: chmod -R 750 /home/usr_num/account where the first, second, and third digits are types of permissions for user, group, and all the others, and the […]
Setup Ubuntu 18.04 on WSL on Windows 10 Pro
Install Ubuntu 18.04 Install Ubuntu 18.04 through Microsoft Store on Windows Subsystem for Linux (WSL) on Windows 10 Pro (ver. 1803). It is very simple. Update and upgrade Ubuntu 18.04 Update and upgrade Ubuntu 18.04 as follows. It will take a long time. [cc lang='bash'] username@HOSTNAME:~$ sudo apt update && sudo apt upgrade -y [sudo] password for username: Get:1 http://security.ubuntu.com/ubuntu bionic-security InRelease [83.2 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic InRelease [242 kB] ... (Long lines continued) [/cc] You can check the version. [cc lang='bash'] username@HOSTNAME:~$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 18.04 LTS Release: 18.04 Codename: bionic [/cc] Sharing Windows' folders To make it easy to […]
Install Intel Parallel Studio XE 2018 Composer on WSL Ubuntu on Windows10
I installed Inte Parallel Studio XE 2018 Composer on WSL Ubuntu on Windows 10. In November, 2017, I tried to install it as posted here (in Japanese), it was not successful. This time I successfully installed it on Windows 10 ver. 1803 issued in April, 2018. Installation Download [cci]Version 2018 (Update 2) March 21, 2018[/cci] from the license administration server in here and save it in an appropriate directory and extract it. Move to the extracted directory and invoke [cci]install_sh[/cci]. [cc lang="bash"] $ tar xf parallel_studio_xe_2018_update2_composer_edition_online.tgz $ cd parallel_studio_xe_2018_update2_composer_edition_online $ sudo ./install.sh [/cc] Just follow the instruction. Basically the default values are fine. After completing the installation, invoke a tool […]