Invisible

                

 

Crowded hallways are the loneliest places for outcasts and rebels
拥挤的走廊是反叛者和不合群的孩子们最孤独的地方
Or anyone who just dares to be different
以及那些只是敢于有所不同的人们
And you‘ve been trying for so long to find out where your place is
你一直努力找到自己的位置
But in their narrow minds,
但在他们狭隘的思想中,
there‘s no room for anyone who dares to do something different
没有允许别人与众不同的空间
Oh, but listen for a minute
哦,但是听我说几句
Trust the one who‘s been where you are
信任那个曾与你处境相同的人
wishing all it was was sticks and stones
每天只能期待一顿毒打和冷嘲热讽
Those words cut deep but they don‘t mean you‘re all alone
这些话深深扎痛你但你并不孤独
You‘re not invisible
你不是透明人
Hear me out,
听我说完,
there‘s so much more to life than what you‘re feeling now
你生命的意义远不止你现在的痛苦感受
Someday you‘ll look back on all these days and all this pain is gonna be
当你回望起这些日子,一切痛苦都会
Invisible
不复存在
Oh, invisible
哦,看不见
So your confidence is quiet
你的自信是默然无语
To them quiet looks like weakness but you don‘t have to fight it
对他们来说沉默就是软弱,但别和他们争斗
Cause you‘re strong enough to win without a war
因为你强大的内心使你不用战争便成为胜利者
Every heart has a rhythm, let yours beat out so loudly
每个人心中都有一种韵律,让你的心灵大声跳动
That everyone can hear it, yeah, promise you don‘t need to hide it anyone
让每个人都能听到,是的,保证你无需隐藏它
Oh, and never be afraid of doing something different
哦,决不要害怕与众不同
Dare to be something more
敢于做更多
Trust the one who‘s been where you are
信任那个曾与你处境相同的人
wishing all it was was sticks and stones
每天只能期待一顿毒打和冷嘲热讽
Those words cut deep but they don‘t mean you‘re all alone
这些话深深扎痛你但你并不孤独
You‘re not invisible
你不是透明人
Hear me out,
听我说完,
there‘s so much more to life than what you‘re feeling now
你生命的意义远不止你现在的痛苦感受
Someday you‘ll look back on all these days and all this pain is gonna be
当你回望起这些日子,一切痛苦都会
Invisible
不复存在
These labels that they give you just ‘cause they don‘t understand
他们给你贴的标签只是因为他们不理解
If you look past this moment, you‘ll see you‘ve got a friend
当你回望过去你会发现你有一个朋友
Waving a flag, for who you are, and all you‘re gonna do
挥舞著旗帜,为了真正的自己,和你所有的所作所为
Yeah, so here‘s to you and here‘s to anyone who‘s ever felt invisible
是的,这首歌献给所有称感觉自己没有存在感的人们
Yeah
是啊
And you‘re not invisible
和你不是透明人
Hear me out,
听我说完,
there‘s so much more to life than what you‘re feeling now
你生命的意义远不止你现在的痛苦感受
Someday you‘ll look back on all these days and all this pain is gonna be
当你回望起这些日子,一切痛苦都会
Invisible
不复存在
It‘ll be invisible
将会不复存在

时间: 2024-10-23 21:50:23

Invisible的相关文章

ORACLE不可见索引(Invisible Indexes)

不可见索引概念 不可见索引(Invisible Index)是ORACLE 11g引入的新特性.不可见索引是会被优化器忽略的不可见索引,除非在会话或系统级别上将OPTIMIZER_USE_INVISIBLE_INDEXES初始化参数显式设置为TRUE.此参数的默认值是FALSE.如果是虚拟索引是为了合理.科学新增索引而设计的,那么不可见索引就是为了合理.科学的删除索引而设计的.为什么这样说呢? 因为DBA在维护索引时,我们经常会找出无用或低效的索引,并删除这些索引,在生产环境下,删除索引还是有一

【转】Android中visibility属性VISIBLE、INVISIBLE、GONE的区别

原文网址:http://blog.csdn.net/chindroid/article/details/8000713 在Android开发中,大部分控件都有visibility这个属性,其属性有3个分别为“visible ”.“invisible”.“gone”.主要用来设置控制控件的显示和隐藏.有些人可能会疑惑Invisible和gone是有什么区别的???那么,我们带着这个疑问看下面: 其在XML文件和Java代码中设置如下: 可见(visible) XML文件:android:visib

visible,invisible,gone区别

在Android开发中,大部分控件都有visibility这个属性,其属性有3个分别为“visible ”.“invisible”.“gone”.主要用来设置控制控件的显示和隐藏.有些人可能会疑惑Invisible和gone是有什么区别的? 可见(visible) XML文件:android:visibility="visible" Java代码:view.setVisibility(View.VISIBLE); 不可见(invisible) XML文件:android:visibil

Threejs 官网 - 不可见对象(Invisible objects)

太阳火神的美丽人生 (http://blog.csdn.net/opengl_es) 本文遵循"署名-非商业用途-保持一致"创作公用协议 转载请保留此句:太阳火神的美丽人生 -  本博客专注于 敏捷开发及移动和物联设备研究:iOS.Android.Html5.Arduino.pcDuino,否则,出自本博客的文章拒绝转载或再转载,谢谢合作. 不可见对象 Invisible objects gero3 edited this page on 8 Dec 2012 · 1 revision

android visible invisible和gone的区别

android中UI应用的开发中经常会使用view.setVisibility()来设置控件的可见性,其中该函数有3个可选值,他们有着不同的含义: View.VISIBLE--->可见 View.INVISIBLE--->不可见,但这个View仍然会占用在xml文件中所分配的布局空间,不重新layout View.GONE---->不可见,但这个View在ViewGroup中不保留位置,会重新layout,不再占用空间,那后面的view就会取代他的位置, 所以在使用时要小心,尤其要善用I

Android中visibility属性VISIBLE、INVISIBLE、GONE的区别

转载自:http://blog.csdn.net/chindroid/article/details/8000713 在Android开发中,大部分控件都有visibility这个属性,其属性有3个分别为“visible ”.“invisible”.“gone”.主要用来设置控制控件的显示和隐藏.有些人可能会疑惑Invisible和gone是有什么区别的???那么,我们带着这个疑问看下面: 其在XML文件和Java代码中设置如下: 可见(visible) XML文件:android:visibi

View.VISIBLE、INVISIBLE、GONE的区别

android中UI应用的开发中经常会使用view.setVisibility()来设置控件的可见性,其中该函数有3个可选值,他们有着不同的含义: View.VISIBLE--->可见View.INVISIBLE--->不可见,但这个View仍然会占用在xml文件中所分配的布局空间,不重新layout View.GONE---->不可见,但这个View在ViewGroup中不保留位置,会重新layout,不再占用空间,那后面的view就会取代他的位置, 所以在使用时要小心,尤其要善用IN

Creating an Invisible Index

查看sqlserver被锁的表以及如何解锁 查看被锁表: select   request_session_id   spid,OBJECT_NAME(resource_associated_entity_id) tableName from   sys.dm_tran_locks where resource_type='OBJECT' spid   锁表进程 tableName   被锁表名 解锁: declare @spid  int Set @spid  = 57 --锁表进程 decl

Making a view in a listview invisible android

问题: I have a ListView that's using a custom adapter. I want to dynamically add/remove items from the ListView. I've tried everything inside the getView() method in my view adapter. I've tried doing setVisiblity(View.GONE) on the view I'm returning. A