The Best Thing About Me Is You, You Are The Only One ♥ Instagram:vianna.rhy
Sabtu, 04 Januari 2014
Evanescence - My Immortal
"My Immortal"
I'm so tired of being here
Suppressed by all my childish fears
And if you have to leave
I wish that you would just leave
'Cause your presence still lingers here
And it won't leave me alone
These wounds won't seem to heal
This pain is just too real
There's just too much that time cannot erase
[Chorus:]
When you cried I'd wipe away all of your tears
When you'd scream I'd fight away all of your fears
And I held your hand through all of these years
But you still have
All of me
You used to captivate me by your resonating light
Now I'm bound by the life you left behind
Your face – it haunts my once pleasant dreams
Your voice – it chased away all the sanity in me
These wounds won't seem to heal
This pain is just too real
There's just too much that time cannot erase
[Chorus]
I've tried so hard to tell myself that you're gone
But though you're still with me
I've been alone all along
[Chorus]
...me, me, me.
Minggu, 24 November 2013
Jumat, 22 November 2013
if you make a mistake and do not correct it.this a called a mistake
A friend is one of the nicest things you can have, and one of the best things you can be.
Don't judge me until you know me. Don't underestimate me until you challenge me. And don't talk about me ...
Beauty is how you feel inside, and it reflects in your eyes. It is not something physical.
If your actions inspire others to dream more, learn more, do more and become more, you are a leader.
True friendship comes when silence between two people is comfortable.
You are never too old for a cuddle and a Disney movie.
When you do something noble and beautiful and nobody noticed, do not be sad. For the sun every morning is ...
A true friend never gets in your way unless you happen to be going down.
All that we are is the result of what we have thought. The mind is everything. What we think, we become.
Don't judge me until you know me. Don't underestimate me until you challenge me. And don't talk about me ...
Beauty is how you feel inside, and it reflects in your eyes. It is not something physical.
If your actions inspire others to dream more, learn more, do more and become more, you are a leader.
True friendship comes when silence between two people is comfortable.
You are never too old for a cuddle and a Disney movie.
When you do something noble and beautiful and nobody noticed, do not be sad. For the sun every morning is ...
A true friend never gets in your way unless you happen to be going down.
All that we are is the result of what we have thought. The mind is everything. What we think, we become.
MEMBUAT EFEK PELANGI PADA BLOG :)
Ada dua script yang aq dapat untuk membuat efek pelangi pada blog,sangat mudah juga ternyata,sejak melihat blog seorang temen yang diberi efek pelangi pada blognya saya pengen juga memasangnya untuk blogku yang lain.silankahkan saja jk sobat pengen memasangnya juga caranya sbb:
1. Masuk ke account blogger anda.
2. Pilih tata letak/layout
3. Klik menu Edit HTML dan jangan lupa untuk mencentang Expand Template Widget
4. Kemudian cari kode
5.kalau sudah ketemu letakkan script ini tepat dibawahnya:
atau anda juga bisa pilih script dibawah ini,cukup masukkan add widget-html dan save di blogmu:
1. Masuk ke account blogger anda.
2. Pilih tata letak/layout
3. Klik menu Edit HTML dan jangan lupa untuk mencentang Expand Template Widget
4. Kemudian cari kode
</head>5.kalau sudah ketemu letakkan script ini tepat dibawahnya:
<script type='text/javascript'>//<![CDATA[
var rate = 20;
if (document.getElementById)
window.onerror=new Function("return true")
var objActive; // The object which event occured in
var act = 0; // Flag during the action
var elmH = 0; // Hue
var elmS = 128; // Saturation
var elmV = 255; // Value
var clrOrg; // A color before the change
var TimerID; // Timer ID
if (document.all) {
document.onmouseover = doRainbowAnchor;
document.onmouseout = stopRainbowAnchor;
}
else if (document.getElementById) {
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
document.onmouseover = Mozilla_doRainbowAnchor;
document.onmouseout = Mozilla_stopRainbowAnchor;
}
function doRainbow(obj)
{
if (act == 0) {
act = 1;
if (obj)
objActive = obj;
else
objActive = event.srcElement;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
function stopRainbow()
{
if (act) {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
function doRainbowAnchor()
{
if (act == 0) {
var obj = event.srcElement;
while (obj.tagName != 'A' && obj.tagName != 'BODY') {
obj = obj.parentElement;
if (obj.tagName == 'A' || obj.tagName == 'BODY')
break;
}
if (obj.tagName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}
function stopRainbowAnchor()
{
if (act) {
if (objActive.tagName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
function Mozilla_doRainbowAnchor(e)
{
if (act == 0) {
obj = e.target;
while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
obj = obj.parentNode;
if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
break;
}
if (obj.nodeName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = obj.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}
function Mozilla_stopRainbowAnchor(e)
{
if (act) {
if (objActive.nodeName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
function ChangeColor()
{
objActive.style.color = makeColor();
}
function makeColor()
{
// Don't you think Color Gamut to look like Rainbow?
// HSVtoRGB
if (elmS == 0) {
elmR = elmV; elmG = elmV; elmB = elmV;
}
else {
t1 = elmV;
t2 = (255 - elmS) * elmV / 255;
t3 = elmH % 60;
t3 = (t1 - t2) * t3 / 60;
if (elmH < 60) {
elmR = t1; elmB = t2; elmG = t2 + t3;
}
else if (elmH < 120) {
elmG = t1; elmB = t2; elmR = t1 - t3;
}
else if (elmH < 180) {
elmG = t1; elmR = t2; elmB = t2 + t3;
}
else if (elmH < 240) {
elmB = t1; elmR = t2; elmG = t1 - t3;
}
else if (elmH < 300) {
elmB = t1; elmG = t2; elmR = t2 + t3;
}
else if (elmH < 360) {
elmR = t1; elmG = t2; elmB = t1 - t3;
}
else {
elmR = 0; elmG = 0; elmB = 0;
}
}
elmR = Math.floor(elmR).toString(16);
elmG = Math.floor(elmG).toString(16);
elmB = Math.floor(elmB).toString(16);
if (elmR.length == 1) elmR = "0" + elmR;
if (elmG.length == 1) elmG = "0" + elmG;
if (elmB.length == 1) elmB = "0" + elmB;
elmH = elmH + rate;
if (elmH >= 360)
elmH = 0;
return '#' + elmR + elmG + elmB;
}
//]]></script>atau anda juga bisa pilih script dibawah ini,cukup masukkan add widget-html dan save di blogmu:
<script src='http://sabarmuanas.googlecode.com/files/infonetmu.blogspot.com.mousepelangi.js' type='text/javascript'></script>
Rabu, 20 November 2013
Quotes About Friend
"When we honestly ask ourselves which person in our lives mean the most to us, we often find that it is those who, instead of giving advice, solutions, or cures, have chosen rather to share our pain and touch our wounds with a warm and tender hand. The friend who can be silent with us in a moment of despair or confusion, who can stay with us in an hour of grief and bereavement, who can tolerate not knowing, not curing, not healing and face with us the reality of our powerlessness, that is a friend who cares.”
― Out of Solitude: Three Meditations on the Christian Life -
Langganan:
Postingan (Atom)
