https://www.youtube.com/watch?v=qHm9MG9xw1o

I need another story
Something to get off my chest
My life gets kinda boring
Need something that I can confess

我需要另一段故事

讓我卸下心上大石

我的生活很是無趣

需要可以信仰的事

'Til all my sleeves are stained red
From all the truth that I've said
Come by it honestly I swear
Thought you saw wink, no
I've been on the brink, so

直到所有袖子都染紅

始於我所有說過的事實

我發誓所說皆真

你認為我說謊 不是的

我就快要崩潰 所以

Tell me what you want to hear
Something that were like those years
Sick of all the insincere
So I'm gonna give all my secrets away

說 你想聽些什麼

從前的時光

隱瞞讓我們疲憊

所以我將坦承

This time, don't need another perfect line
Don't care if critics never jump in line
I'm gonna give all my secrets away

這一次 不再需要完美方針

也毋須在意見血的批評

我將坦承

My God, amazing how we got this far
It's like we're chasing all those stars
Who's driving shiny big black cars

天哪 能堅持到此讓我驚訝

像是追逐天上繁星

我們駕駛著閃亮的黑卡

And everyday I see the news
All the problems that we could solve
And when a situation rises
Just write it into an album
Singing straight, too cold
I don't really like my flow, no, so

每天都有新聞可看

不管什麼問題都有解決辦法

若情勢變得嚴峻

就將它寫成專輯

用力的唱 天冷

我不喜歡自己的飄蕩

Oh, got no reason, got not shame
Got no family I can blame
Just don't let me disappear
I'ma tell you everything

喔 沒有理由 沒有愧疚

沒有誰是我可以批判

別讓我沮喪

我會對你坦承

Secrets的更多相关文章

  1. ASP.NET Core 优雅的在开发环境保存机密(User Secrets)

    前言 在应用程序开发的过程中,有的时候需要在代码中保存一些机密的信息,比如加密密钥,字符串,或者是用户名密码等.通常的做法是保存到一个配置文件中,在以前我们会把他保存到web.config中,但是在A ...

  2. dig out secrets beneath AirSig

    My sister installed AirSig last week. She is so exciting about this new techknology and she won't st ...

  3. 《Secrets of the JavaScript Ninja》:JavaScript 之运行时代码

    最近,在阅读 jQuery 之父 John Resig 力作:Secrets of the JavaScript Ninja(JavaScript忍者秘籍).关于第九章提及的 JavaScript 之 ...

  4. CodeForces 173B Chamber of Secrets spfa

    Chamber of Secrets 题目连接: http://codeforces.com/problemset/problem/173/B Description "The Chambe ...

  5. .NET Core程序中使用User Secrets存储敏感数据

    前言 在开发中经常会用到一些敏感数据,比如AppSecret或数据库连接字符串,无论是硬编码还是写在配置文件中,最终都要push到svn或git上.对于开源项目,这些敏感数据就无隐私可言了,对于私有项 ...

  6. 在.NET Core console application中使用User Secrets(用户机密)

    微软很坑地只在Microsoft.NET.Sdk.Web中提供了VS项目右键菜单的"管理用户机密"/"Manage User Secrets"菜单项,在使用Mi ...

  7. ubuntu中使用机密数据Secrets

    目录 AptNetCore使用Secrets管理私密数据 前言 使用 设置UserSecretsId 设置机密 代码中访问机密 脚注 AptNetCore使用Secrets管理私密数据 前言 在项目中 ...

  8. the secrets

    prime time productions: my life had collepes arround me? i have worked myselft into exhaustion. my f ...

  9. MySQL Workbench在archlinux中出现 Could not store password: The name org.freedesktop.secrets was not provided by any .service files的错误

    MySQL Workbench在archlinux中出现 Could not store password: The name org.freedesktop.secrets was not prov ...

随机推荐

  1. Oracle性能优化

    (1) 选择最有效率的表名顺序(只在基于规则的优化器中有效): ORACLE的解析器按照 从右到左的顺序处理FROM子句中的表名,FROM子句中写在最后的表(基础表 driving table)将被最 ...

  2. Mysql常用命令详解

    Mysql安装目录 数据库目录 /var/lib/mysql/ 配置文件 /usr/share/mysql(mysql.server命令及配置文件) 相关命令 /usr/bin(mysqladmin ...

  3. UML 类关系及画法

    1 泛化 [泛化关系]:是一种继承关系,表示一般与特殊的关系,它指定了子类如何特化父类的所有特征和行为.例如:老虎是动物的一种,即有老虎的特性也有动物的共性. [箭头指向]:带三角箭头的实线,箭头指向 ...

  4. Android中设定EditText的输入长度(转)

    如何限定Android的Text中的输入长度呢? 方法一:可以在layout xml中加上属性android:maxLength 比如: <EditText         android:id ...

  5. ios摇一摇截屏代码

    #import "ViewController.h" @interface ViewController () @end @implementation ViewControlle ...

  6. struct 类型重定义

    类型定义的那个头文件只需要在功能源文件里#include 开始在主函数源文件里也#include,所以出现了重定义

  7. Android基本认识

    AndroidManifest.xml file missing! 是因为开始想当然的用中文当project名 no launcher activity found 第一次运行出了点问题,no lau ...

  8. jq获取后台json并解析

    参考: $(function () { $.ajax({ url: 'tsconfig.json', type: 'GET', dataType: 'json', timeout: 1000, cac ...

  9. LoadRunner 接口测试

    Action1() { int i; lr_rendezvous("rend"); lr_start_transaction("get"); ;i<;i+ ...

  10. UVA 11987 Almost Union-Find (并查集+删边)

    开始给你n个集合,m种操作,初始集合:{1}, {2}, {3}, … , {n} 操作有三种: 1 xx1 yy1 : 合并xx1与yy1两个集合 2 xx1 yy1 :将xx1元素分离出来合到yy ...