- チケットの封筒の内側にメモった内容をもとにしたものです(その場で思い立ったので)。結構頑張ってメモったつもりでしたが特に話の繋ぎの部分はメモがなくて曖昧だったりします。他、発言者の混同、ニュアンスの違い等多々あるはずのでその点はご注意ください。
- 「」内も台詞ままではありません。
- メモ部分はできるだけ私の感想・コメントを排して記述したつもりですが、上記の通り結構なフィルタがかかっている可能性があります。
- なお、どの声優さんも作品の感想・解釈については「個人的意見」という点は強調していらっしゃいましたのでその点はご承知おきください。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .text | |
| .def __cxx_global_var_init; | |
| .scl 3; | |
| .type 32; | |
| .endef | |
| .p2align 4, 0x90 | |
| __cxx_global_var_init: # @__cxx_global_var_init | |
| .Ltmp0: | |
| .seh_proc __cxx_global_var_init | |
| # BB#0: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <style type="text/css"> | |
| #canvas-container | |
| { | |
| position: relative; | |
| top: 0; | |
| left: 0; | |
| } |
Only on Perl 5.10, a bizarre error occurs like https://travis-ci.org/yak1ex/String-Unescape/jobs/24323913
It is reproduced in my local environment (Cygwin) by the following procedure.
- Clone https://github.com/yak1ex/String-Unescape
- Install newly Perl-5.10.1 environment by perlbrew
- Install Dist::Zilla like
perlbrew exec --with perl-5.10.1 cpanm Dist::Zilla - Install dependent modules like
dzil authordeps | perlbrew exec --with perl-5.10.1 cpanm perlbrew exec --with perl-5.10.1 perl /usr/local/bin/dzil buildcauses error shown in output.log
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bower_components/ | |
| ez-file-tree/ | |
| node_modules/ | |
OpenSSL 1.0.1g 7 Apr 2014
built on: Tue Apr 8 11:04:36 CEST 2014
options:bn(64,32) md2(int) rc4(8x,mmx) des(ptr,risc1,16,long) aes(partial) blowfish(idx)
compiler: gcc -D_WINDLL -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -march=i486 -Wall -DOPENSSL_BN_ASM_PART_WORDS -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DRMD160_ASM -DAES_ASM -DVPAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM
sign verify sign/s verify/s
rsa 512 bits 0.000144s 0.000016s 6923.1 62466.3
rsa 1024 bits 0.000778s 0.000045s 1284.7 22272.9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ref. http://www.ne.jp/asahi/hishidama/home/tech/vcpp/webbrowser.html | |
| // This document includes MANY misleading explanations but is useful anyway for implementation reference. | |
| #include <iostream> | |
| #include <windows.h> | |
| #include <exdisp.h> | |
| #include <comdef.h> | |
| __CRT_UUID_DECL(IWebBrowser2, 0xd30c1661, 0xcdaf, 0x11d0, 0x8a, 0x3e, 0x00, 0xc0, 0x4f, 0xc9, 0xe2, 0x6e); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -V --replay-gain -T "TITLE=%title% " -T "ALBUM=%albumtitle%" -T "TRACKNUMBER=%tracknr%" -T "ARTIST=%artist%" -T "GENRE=%genre%" -T "DATE=%year%" -T "TOTALTRACKS=%numtracks%" -T "DISCNUMBER=%cdnumber%" -T "TOTALDISCS=%totalcds%" -T "DESCRIPTION=%comment%" "--picture=%coverfile%" %source% %dest% | |
| ref. | |
| http://www.xiph.org/vorbis/doc/v-comment.html | |
| http://www.exactaudiocopy.de/en/index.php/support/faq/ |
http://wiki.eclipse.org/FAQ_How_do_I_write_to_the_console_from_a_plug-in%3F
import org.eclipse.ui.console.IConsole;
import org.eclipse.ui.console.IConsoleManager;
import org.eclipse.ui.console.MessageConsole;
import org.eclipse.ui.console.ConsolePlugin;
import org.eclipse.ui.console.MessageConsoleStream;
private MessageConsole findConsole(String name) {