key_press
0x00000032
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
| processor : 0 | |
| vendor_id : GenuineIntel | |
| cpu family : 6 | |
| model : 70 | |
| model name : Intel(R) Core(TM) i7-4750HQ CPU @ 2.00GHz | |
| stepping : 1 | |
| microcode : 0xf | |
| cpu MHz : 2001.000 | |
| cache size : 6144 KB | |
| physical id : 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
| [nvsofts@aya ~/osv]$ scripts/build image=java-example | |
| Building into build/release.x64 | |
| GEN gen/include/osv/version.h | |
| No such image configuration: java-example. Assuming list of modules. | |
| Importing /home/nvsofts/osv/apps/java-example/module.py | |
| Importing /home/nvsofts/osv/modules/java/module.py | |
| Importing /home/nvsofts/osv/apps/fonts/module.py | |
| No module.py in /home/nvsofts/osv/modules/ca-certificates | |
| No module.py in /home/nvsofts/osv/modules/libz | |
| No module.py in /home/nvsofts/osv/modules/josvsym |
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
| (snip) | |
| CXX arch/x64/firmware.cc | |
| CXX arch/x64/hypervisor.cc | |
| CXX arch/x64/interrupt.cc | |
| CXX arch/x64/pci.cc | |
| CXX arch/x64/msi.cc | |
| CXX arch/x64/dmi.cc | |
| CXX arch/x64/string-ssse3.cc | |
| CXX arch/x64/ioapic.cc | |
| CXX arch/x64/apic.cc |
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
| [nvsofts@aya ~/osv]$ nm external/x64/gcc.bin/usr/lib/gcc/x86_64-redhat-linux/4.8.2/libstdc++.a | c++filt | grep out_of_range | |
| nm: compatibility-debug_list-2.o: シンボルがありません | |
| U std::__throw_out_of_range(char const*) | |
| 0000000000000000 T std::out_of_range::out_of_range(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) | |
| 0000000000000000 T std::out_of_range::out_of_range(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) | |
| 0000000000000000 T std::out_of_range::~out_of_range() | |
| 0000000000000000 T std::out_of_range::~out_of_range() | |
| 0000000000000000 T std::out_of_range::~out_of_range() | |
| 0000000000000000 V typeinfo for std::out_of_range | |
| 0000000000000000 V typeinfo name for std::out_of_range |
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
| [nvsofts@aya ~]$ cat Test.java | |
| import java.lang.*; | |
| import java.io.*; | |
| public class Test | |
| { | |
| public static void main(String[] args) | |
| { | |
| String company = "未経験者、中途者の熱意" | |
| int i = Integer.parseInt(company); |
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
| [nvsofts@aya ~]$ cat Test.java | |
| import java.lang.*; | |
| import java.io.*; | |
| public class Test | |
| { | |
| public static void main(String[] args) | |
| { | |
| String company = "未経験者、中途者の熱意"; | |
| int i = Integer.parseInt(company); |
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
| -- 1s: 2000000くらい | |
| morse = {} | |
| morse["a"] = ".-" | |
| morse["b"] = "-..." | |
| morse["c"] = "-.-." | |
| morse["d"] = "-.." | |
| morse["e"] = "." | |
| morse["f"] = "..-." | |
| morse["g"] = "--." |
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
| [Service] | |
| Type=forking | |
| PIDFile=/home/sdtd/instances/%i/7dtd.pid | |
| ExecStart=/usr/local/bin/7dtd.sh start %i | |
| ExecStop=/usr/local/bin/7dtd.sh kill %i | |
| [Install] | |
| WantedBy=multi-user.target |
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
| #!/bin/sh | |
| for file in *.txt | |
| do | |
| nkf -w $file | grep -a '^TOKYO MX' > /dev/null | |
| if [ $? = 0 ]; then | |
| name=`basename $file .program.txt` | |
| echo Move $name | |
| for mov in $name* | |
| do |