《冰雪奇缘》 主题歌曲

        The snow glows white on the mountain tonight

Not a footprint to be seen.

A kingdom of isolation,

and it looks like I'm the Queen

The wind is howling like this swirling storm inside

Couldn't keep it in;

Heaven knows I've tried

Don't let them in,

don't let them see

Be the good girl you always have to be

Conceal, don't feel,

don't let them know

Well now they know

Let it go, let it go

Can't hold it back anymore

Let it go, let it go

Turn away and slam the door

I don't care

what they're going to say

Let the storm rage on.

The cold never bothered me anyway

It's funny how some distance

Makes everything seem small

And the fears that once controlled me

Can't get to me at all

It's time to see what I can do

To test the limits and break through

No right, no wrong, no rules for me,

I'm free!

Let it go, let it go

I am one with the wind and sky

Let it go, let it go

You'll never see me cry

Here I stand

And here I'll stay

Let the storm rage on

My power flurries through the air into the ground

My soul is spiraling in frozen fractals all around

And one thought crystallizes like an icy blast

I'm never going back, the past is in the past

Let it go, let it go

And I'll rise like the break of dawn

Let it go, let it go

That perfect girl is gone

Here I stand

In the light of day

Let the storm rage on

The cold never bothered me anyway!

随机推荐

  1. 【CF827F】Dirty Arkady's Kitchen DP

    [CF827F]Dirty Arkady's Kitchen 题意:给你一张n个点,m条边的有向图,每条边长度为1,第i条边在[li,ri)的时间内可以进入,求1到n的最短路. $n,m\le 5\t ...

  2. 获取页面所有链接的JS

    写了一个实用的JS脚本,获取当前页面所有的JS: var str = " \n"; var list = document.getElementsByTagName("a ...

  3. Django---项目如何创建

    首先是安装好Django,找到 Scripts 目录配置环境变量: 只要添加到环境变量,在任何目录执行 django-admin startproject mysite 就可以创建 Django 程序 ...

  4. 7.22 python线程(3)

    2018-7-22 10:28:29 回来啦! 6.条件 # !/usr/bin/env python # !--*--coding:utf-8 --*-- # !@Time :2018/7/20 1 ...

  5. Laravel 查询包括软删除的记录

    查询结果包括已被软删除的记录: Model::withTrashed()->get(); 只查询软删除记录: Model::onlyTrashed()->get(); PS:个人博客-La ...

  6. SPOJ - DWARFLOG Manipulate Dwarfs 线段树+想法题;

    题意:给你2e5个矮人,编号1~N.有2e5个操作:操作1 读取x,y,交换编号为x,y的矮人.操作2 读取AB 判断编号为A,A+1····B的矮人是否连续(不必有序). 题解:首先用pos[i]保 ...

  7. Linux下搭建hadoop开发环境-超详细

    先决条件:开发机器需要联网 已安装java 已安装Desktop组 1.上传安装软件到linux上: 2.安装maven,用于管理项目依赖包:以hadoop用户安装apache-maven-3.0.5 ...

  8. grpc protobuf

    1.ProtoBuffer是google的一款非常高效的数据传输格式框架 2.一个方法仅能接受一个参数 3.对于定义的message,每个值都有一个唯一的number类型的数字,根据官方文档的解释:它 ...

  9. 青蛙的约会---poj1061(扩展欧几里德)

    题目链接:http://poj.org/problem?id=1061 就是找到满足 (X+mt)-(Y+nt) = Lk 的 t 和 k 即可 上式可化简为 (n-m)t + Lk = X-Y;满足 ...

  10. JSON Web Token – 在 Web 应用间安全地传递信息

    出处:子回 使用 JWT 令牌和 Spring Security 来实现身份验证 八幅漫画理解使用JSON Web Token设计单点登录系统