Feeds:
Posts
Comments

And this is my prayer: that your love may abound more and more in knowledge and depth of insight, so that you may be able to discern what is best and may be pure and blameless until the day of Christ, filled with the fruit of righteousness that comes through Jesus Christ—to the glory and praise of God. – Philippians 1:9-11

Through this verses, it is easy to understand what Paul think most important for the church members. That is love. That will be abundant in knowledge and depth of insight. I think this means we cannot just love others as well as ourselves. We need to be in knowledge and depth of insight to love them properly. This is not easy, rather require to consider ourselves and themselves with the circumstances more. Also, we need to learn about what is love itself by reading bible and learn from the life of Jesus and practice it in real life. The results from abounded love produces capability to discern what is the best and to be pure and blameless. I want to be a person who Paul pray for.

Amazing verse

I read the Bible this night. I found amazing verse.

For the wages of sin is death, but the gift of God is eternal life in
Christ Jesus our Lord. Rom 6:23.

Because of what we’ve done hard working in the past, we may be paid
with death, BUT God gives us life without working. It is not matter of
whom I am working under. We don’t need to work under another master.
It is matter of faith. He as a father gives his gift us at no cost
even though we are taking a rest in Him. What a consolation it is.. :)

Snowboarding

I have been in Missouri to snowboard for a few days during the winter break. It was really good even though it is much smaller than any of sky resort in
Korea. I actually played several times in Korea, but I have some problems on my riding style, or posture. One of my friends who went there with me helped me be able to find what the problems I had. When I turn, I lost my center of balance on the board. It was like I moved my center of balance to back side which is
upward on the slope. That was critical because snow make the snowboard blocked while upper body keeps going where it supposed to go. It feel like stumble over something on roads. An important thing on turning is the upper body is moving frontward little bit so as to keeps center of gravity on the board. I should remember this until next boarding.:)

<a href=” >object>

Kim Dong-ryul is a talented musician who is capable of writing lyrics, composing, arranging and producing albums. Kim is a passionate young man who writes and sings his own music. In 1993, Kim formed a team called “Exhibition” with his buddy Seo Dong-wook and competed in the MBC College Music Festival. The team received the Grand Prize at the song contest with their song “In Dreams” and made their debut in the local pop music world. Since their debut, the team released two official albums and recorded hit numbers like ‘An Etude of Memories’, ‘High Above’ and ‘Truth in Wine’. However, in January 1997, the team all of a sudden wrapped up their musical activities with a farewell album. In October the same year, Kim Dong-ryul formed a project group called “Carnival” with Lee Jeok, then a member of “Panic”. Displaying a perfect harmony between the low tone of Kim’s voice and Lee Jeok’s high key, the project team received a great response with songs like “That’s how it was then” and “A goose’s dream”. In 1998, Kim Dong-ryul made his solo debut with the album ‘The Shadow Of Forgetfulness’. The title song of Kim’s first solo album “Consideration” was a sad ballad in a jazzy style that played a leading role in bringing about a ballad resurgence to the local pop music scene. In April of 1999, Kim flew to the Berkley College of Music in Boston. Although he was studying in the US, Kim released his 2nd and 3rd albums during his some time off from school. In April of 2004, Kim returned to Korea from his studies and released his 4th album, entitled “Revealing my true heart”.

Vim tip – replace

:%s/foo/bar/g = find each occurance of 'foo' and replace it with 'bar' without asking for confirmation

:%s/foo/bar/gc = find each occurance of 'foo' and replace it with 'bar' asking for confirmation first

:%s/<foo>/bar/gc = find (match exact word only) and replace each occurance of 'foo' with 'bar'

:%s/foo/bar/gci = find (case insensitive) and replace each occurance of 'foo' with 'bar'

:%s/foo/bar/gcI = find (case sensitive) and replace each occurance of 'foo' with 'bar'

Further reference : ‘:help substitude’

Tonny Emmanuel – Angelina

This play is awesome. I recently start to teach my friends who want to play the guitar, and I felt like I would practice the guitar first for them. Later, I will try one of those great guitar songs.

#include

#define X .525731112119133606
#define Z .850650808352039932

static GLfloat vdata[12][3] = {
{-X, 0.0, Z}, {X, 0.0, Z}, {-X, 0.0, -Z}, {X, 0.0, -Z},
{0.0, Z, X}, {0.0, Z, -X}, {0.0, -Z, X}, {0.0, -Z, -X},
{Z, X, 0.0}, {-Z, X, 0.0}, {Z, -X, 0.0}, {-Z, -X, 0.0}
};
static GLuint tindices[20][3] = {
{0,4,1}, {0,9,4}, {9,5,4}, {4,5,8}, {4,8,1},
{8,10,1}, {8,3,10}, {5,3,8}, {5,2,3}, {2,7,3},
{7,10,3}, {7,6,10}, {7,11,6}, {11,0,6}, {0,1,6},
{6,1,10}, {9,0,11}, {9,11,2}, {9,2,5}, {7,2,11} };

void normalize(GLfloat *a) {
GLfloat d=sqrt(a[0]*a[0]+a[1]*a[1]+a[2]*a[2]);
a[0]/=d; a[1]/=d; a[2]/=d;
}

void drawtri(GLfloat *a, GLfloat *b, GLfloat *c, int div, float r) {
if (div<=0) {
glNormal3fv(a); glVertex3f(a[0]*r, a[1]*r, a[2]*r);
glNormal3fv(b); glVertex3f(b[0]*r, b[1]*r, b[2]*r);
glNormal3fv(c); glVertex3f(c[0]*r, c[1]*r, c[2]*r);
} else {
GLfloat ab[3], ac[3], bc[3];
for (int i=0;i<3;i++) {
ab[i]=(a[i]+b[i])/2;
ac[i]=(a[i]+c[i])/2;
bc[i]=(b[i]+c[i])/2;
}
normalize(ab); normalize(ac); normalize(bc);
drawtri(a, ab, ac, div-1, r);
drawtri(b, bc, ab, div-1, r);
drawtri(c, ac, bc, div-1, r);
drawtri(ab, bc, ac, div-1, r); //<–Comment this line and sphere looks really cool!
}
}

void drawsphere(int ndiv, float radius=1.0) {
glBegin(GL_TRIANGLES);
for (int i=0;i<20;i++)
drawtri(vdata[tindices[i][0]], vdata[tindices[i][1]], vdata[tindices[i][2]], ndiv, radius);
glEnd();
}

double** A = NULL; //Pointer to rows of A Matrix (NxN, type double)

//Allocate space for pointers to rows of A matrix
if (!(A = new double*[N])){
cout << “Allocation for A failed. \n”;
return 0;
} //End if

// Allocate space for entries of the columns of the A Matrix
for (i = 0; i < N; i++) {
if (!(A[i] = new double[N])){//If failure, release memory allocated before ending program
for (j = (i – 1); j >= 0; j–)
delete [] A[j];
delete [] A;
cout << “Allocation for columns of A failed.\n”;
return 0;
} //End if !A
}//End for i

Empty me – Chris Sligh

I like the lyric of this song and his voice. I want to try this song.:)

Older Posts »