Just after getting married, I often had disputes with my wife.
Actually I cannot remember everything,
But I will try to tell you the situation.
We were disputing a matter.
At that time, I was so angry for some reason.
I had felt that my wife was ignoring me.
"Who am I?" I asked loudly. "Who am I?" I asked again.
She didn't say anything.
So, I answered for her,
"you are my husband!"
As I said that, I became aware that I misspoke --
I wasn't fluent in Japanese at that time.
It was silent for a while.
Then, she burst out laughing and shed tears.
In my mind, I also burst out laughing.
I tried to suppress laughter, but she became aware that I was laughing.
I couldn't remember why I was angry exactly.
Now, that we are love love....
Hi, I'm an architecture engineer and native Korean speaker.
I have started to live in Seoul in Korea.
I have been developping Abilists tool,
Please feel free to visit abilists.com
Sunday, December 29, 2013
Monday, December 16, 2013
Troubleshooting - Hive
@When you see the following error.
----------------------------------------------------------------
FAILED: SemanticException [Error 10035]: Column repeated in partitioning columns
----------------------------------------------------------------
@Solution
sudo -u hdfs hive -e "CREATE TABLE table_temp (time string, aaa string, bbb string, dt string) partitioned by(dt string) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t' STORED AS SEQUENCEFILE;"
----------------------------------------------------------------
FAILED: SemanticException [Error 10035]: Column repeated in partitioning columns
----------------------------------------------------------------
@Solution
sudo -u hdfs hive -e "CREATE TABLE table_temp (time string, aaa string, bbb string
Friday, December 13, 2013
Troubleshooting - An error has occurred in Eclipse
For resolve this problem
$ eclipse -clean
--------------------------------------------------------------------------------- !ENTRY org.eclipse.osgi 4 0 2013-12-13 18:44:55.618
!MESSAGE Startup error
!STACK 1
java.lang.RuntimeException: Exception in org.eclipse.osgi.framework.internal.core.SystemBundleActivator.start() of bundle org.eclipse.osgi.
at org.eclipse.osgi.framework.internal.core.InternalSystemBundle.resume(InternalSystemBundle.java:233)
at org.eclipse.osgi.framework.internal.core.Framework.launch(Framework.java:657)
at org.eclipse.core.runtime.adaptor.EclipseStarter.startup(EclipseStarter.java:274)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584)
at org.eclipse.equinox.launcher.Main.run(Main.java:1438)
Caused by: org.osgi.framework.BundleException: Exception in org.eclipse.osgi.framework.internal.core.SystemBundleActivator.start() of bundle org.eclipse.osgi.
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:734)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:683)
at org.eclipse.osgi.framework.internal.core.InternalSystemBundle.resume(InternalSystemBundle.java:225)
... 10 more
Monday, December 9, 2013
Gradle - Add the jars to the dependencies in Eclipse
You need to install the [https://github.com/spring-projects/eclipse-integration-gradle]
I installed this version[http://dist.springsource.com/release/TOOLS/gradle]
build.gradle
This file contains 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
apply plugin: "java" | |
apply plugin: 'eclipse' | |
defaultTableTasks = ['assemble'] | |
version = '1.0' | |
sourceCompatibility = 1.7 | |
targetCompatibility = 1.7 | |
repositories { | |
mavenLocal() | |
mavenCentral() | |
} | |
eclipse { | |
classpath { | |
downloadSources=true | |
} | |
} | |
dependencies { | |
compile 'org.apache.poi:poi:3.9' | |
compile 'commons-codec:commons-codec:1.5' | |
compile 'commons-lang:commons-lang:2.6' | |
testCompile 'junit:junit:4.9' | |
} |
$ gradle cleanEclipse eclipse
You can see jars file in the Eclipse
DataArtists - What is the Data Artists?
Let's watch the Ted.
Thursday, December 5, 2013
MyDesign - This is a office partition design.
15 years ago, I was a professional 3D rendering Designer.
when I learned 3D Studio program, I was used to make some rendering all night.
Of course, I read all of the 3D books and I even thought to write a book of 3D renderings.
The two pictures are my work when I was a college student.
when I learned 3D Studio program, I was used to make some rendering all night.
Of course, I read all of the 3D books and I even thought to write a book of 3D renderings.
The two pictures are my work when I was a college student.
Wednesday, December 4, 2013
Shell - Apache And Tomcat to start or stop
This is the shell script for release.
This file contains 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
#======================================================================== | |
# Apache and Tomcat Start, Stop | |
#======================================================================== | |
# Apache # | |
apacheInvoker="/etc/init.d/httpd" | |
apacheTargetLog="/usr/local/apache/logs/error_log" | |
# Tomcat # | |
tomcatInvoker="/etc/init.d/${tomcat}" | |
tomcatWebappsPath="/usr/local/${tomcat}/webapps" | |
tomcatOtherWebappsPath="/usr/local/${tomcat}/${webapp}" | |
tomcatTargetLog="/usr/local/${tomcat}/logs/catalina.out" |
This file contains 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 | |
#======================================== | |
# goal : Start apache | |
# prameter : | |
# 1.expectPath | |
# 2.expectTimeOut | |
# 3.adminUserId | |
# 4.ip | |
# 5.sudoPath | |
# 6.apacheInvoker | |
# 7.tailPath | |
# 8.tailOption | |
# 9.apacheTargetLog | |
#======================================== | |
apacheStart(){ | |
echo "Attempt to startup apache..." | |
${expectPath} <<EOF | |
set timeout ${expectTimeOut} | |
spawn ssh ${adminUserId}@$ip | |
expect "Last login:" | |
send "${sudoPath} ${apacheInvoker} start\r" | |
expect "resuming normal operations" | |
send "${tailPath} ${tailOption} ${apacheTargetLog}\r" | |
expect "OK. Normally startup." | |
close | |
EOF | |
} | |
#======================================== | |
# goal : Stop apache | |
# prameter : | |
# 1.expectPath | |
# 2.expectTimeOut | |
# 3.adminUserId | |
# 4.ip | |
# 5.sudoPath | |
# 6.apacheInvoker | |
# 7.tailPath | |
# 8.tailOption | |
# 9.apacheTargetLog | |
#======================================== | |
apacheStop(){ | |
echo "Attempt to shutdown apache..." | |
${expectPath} <<EOF | |
set timeout ${expectTimeOut} | |
spawn ssh ${adminUserId}@$ip | |
expect "Last login:" | |
send "${sudoPath} ${apacheInvoker} stop\r" | |
expect "shutting down" | |
send "${tailPath} ${tailOption} ${apacheTargetLog}\r" | |
expect "OK. Normally shut down" | |
close | |
EOF | |
} | |
#======================================== | |
# goal : Start tomcat | |
# prameter : | |
# 1.expectPath | |
# 2.expectTimeOut | |
# 3.adminUserId | |
# 4.ip | |
# 5.sudoPath | |
# 6.tomcatInvoker | |
# 7.tailPath | |
# 8.tailOption | |
# 9.targetLog | |
# 10.expectLog | |
#======================================== | |
tomcatStart(){ | |
echo "Attempt to startup tomcat..." | |
${expectPath} <<EOF | |
set timeout ${expectTimeOut} | |
spawn ssh ${adminUserId}@$ip | |
expect "Last login:" | |
send "${sudoPath} ${tomcatInvoker} start\r" | |
expect "Using JRE_HOME:" | |
send "${tailPath} ${tailOption} ${tomcatTargetLog}\r" | |
expect "Server startup" | |
close | |
EOF | |
} | |
#======================================== | |
# goal : Stop tomcat | |
# prameter : | |
# 1.expectPath | |
# 2.expectTimeOut | |
# 3.adminUserId | |
# 4.ip | |
# 5.sudoPath | |
# 6.tomcatInvoker | |
# 7.tailPath | |
# 8.tailOption | |
# 9.targetLog | |
# 10.expectTomcatLog | |
#======================================== | |
tomcatStop(){ | |
echo "Attempt to shutdown tomcat..." | |
${expectPath} <<EOF | |
set timeout ${expectTimeOut} | |
spawn ssh ${adminUserId}@$ip | |
expect "Last login:" | |
send "${sudoPath} ${tomcatInvoker} stop\r" | |
expect "Using JRE_HOME:" | |
send "${tailPath} ${tailOption} ${tomcatTargetLog}\r" | |
expect "${expectTomcatLog}" | |
close | |
EOF | |
} |
Subscribe to:
Posts (Atom)