Categories
private remark

Nosaka Akiyuki(野坂昭如) passed away.

   Nosaka Akiyuki(野坂昭如) passed away at the age of 85 on 2015 December 9. I think you know him as an original writer of Hotaru no Haka(火垂るの墓). Almost a decade ago, I translated his message for a live-action version and posted on IMDB. Here is my post about it.

   I pray sincerely for the repose of his soul. (合掌)

Categories
everyday life

Hayabusa2 Earth Swing-by Result.

同一記事の日本語版

   Yesterday, JAXA confirmed that “Hayabusa2” is cruising on Ryugu after measuring and calculating the post-Earth-swing-by orbit.

Categories
everyday life

Seimei(晴明) from Onmyōji(陰陽師).

同一記事の日本語版

Yesterday, i.e. 2015 December 13, Hanyū Yuzuru(羽生結弦) had his third Grand Prix Final title in a row in Barcelona, Spain.

For the 2015–16 season, he used a certain music called Seimei for the free skating. The music was took from the film soundtrack of Onmyōji(陰陽師). I don’t love this as free skating music very much. Because I love it as the music of the ending dance of the film, and Hanyū’s skating broke the dance image though his skating was excellent.

Categories
WordPress

About ‘Embed Everything’ of WordPress 4.4.

同一記事の日本語版

   WordPress4.4 has new features called ‘Embed Everything‘. Actually it means that WordPress becomes an oEmbed provider, Wow! So we can embed our posts on other WordPress sites now. Of course, this is possible between your own WordPress sites. Only thing you need is drag & drop or paste URL on edit area of the post. Like this.

Categories
everyday life

Akatsuki probe successfully went into orbit around Venus.

同一記事の日本語版

Congratulations, Akatsuki!!

I use one of new features of WordPress4.4. I pasted ‘https://www.youtube.com/watch?v=O3PFCSi7qPw’ only to the line above and the video showed up, wow!!

Categories
WordPress

WordPress4.4 has come.

同一記事の日本語版

   This morning, WordPress4.4 came. I backed up my site data because this WordPress is a major upgrade.

Categories
Windows

Upgrading from PHP5.6 to PHP7.0.

同一記事の日本語版

   Finally, PHP7.0.0 was released. Congrats and thanks, PHP developers!!
   Windows version appeared on windows.php.net around 21:00 UTC of December 3. Therefore, I upgraded from PHP5.6 to PHP7.0 this morning. Around 10:00 JST of December 4.

Categories
Windows

Windows10 1511 sneaking into my CF-J10 during last night.

同一記事の日本語版
Update information      Edit(Nov.28)  Edit2(2016.Aug.10)

   Windows10 1511 was sneaking into my CF-J10 during last night because it was a normal Windows Update and I left CF-J10 hibernating instead I made it shutdown and unpluged completely.

   Fortunately, I have no fatal problems. But I have something as below.

Categories
Windows

Building h2load on Cygwin.

同一記事の日本語版
Update information      Edit(2016.Jan.4)   Edit2(Feb.7)   Edit3(Jun.18)

   Actually, Cygwin has libev and nghttp2 packages now. So, you can use h2load feature even if you don’t build nghttp2 by yourself. Nevertheless, if you build nghttp2 on Cygwin, you need to build the Jansson and the spdylay before building it because Cygwin doesn’t have their packages. But, according to the current trend, I think you don’t need the spdylay package. (2016.6.18)
—————————————————————————————————————————————————
   Now, I have two zip files. One is H2LOAD_dll_package_x86.zip, another is H2LOAD_dll_package_x64.zip. If you download one of them, you can do the test by h2load on your Windows PC. Run cmd.exe and do like this.
> h2load -n100000 -c100 -m10 https://localhost
   If you do this test, you should create your own local server. Because the test might be a cyber attack for the server if you set numbers too high as values of -n -c -m. Be careful.
   I wrote like this before:‘I don’t know why, but it looks like telling Apache without HTTP/2 is faster. Gee!’. This time, I had interesting results. See HTTPS with HTTP/2 and HTTPS without HTTP/2. The test tells that the server supports HTTP/2 is good at dealing with concurrent streams than the server doesn’t support HTTP/2. This is one of HTTP/2 features.

   I’ll write about my hard work to get these files (^_^;).
   [Caution]: The steps blow give the files contained by H2LOAD_dll_package_x64.zip. If you want to have the files for x86 PC, you have to do all steps by setup-x86.exe on a Windows x86 PC.

Categories
Windows

Moving my WordPress to HTTPS for supporting HTTP/2-#3.

同一記事の日本語版

   Continued from this post. As I finished preparing for supporting HTTP/2, I re-edited my httpd.conf and httpd-ssl.conf.
 
   On the httpd.conf, I un-commented the next line.
     LoadModule http2_module modules/mod_http2.so
   On the httpd-ssl.conf, I added the next line just after <VirtualHost o6asan.com:443>.
     Protocols h2 http/1.1
   h2 is HTTP/2 with TLS and h2c is HTTP/2 without TLS. I don’t use h2c on the server.
 
   Reboot Apache to enable Http/2. That’s it.