Chapter 4 Invitations——24
"How do you do that?" I asked in amazed irritation.
“你是怎么做到的?”我惊讶的问道。
"Do what?" He held my key out as he spoke. As I reached for it, he dropped it into my palm.
“做什么?”他拿着我的钥匙说道。当我准备拿的时候,他把它扔到了我的手掌里。
"Appear out of thin air."
“从空气中出现。”
"Bella, it's not my fault if you are exceptionally unobservant." His voice was quiet as usual — velvet, muted.
“Bella,如果你只是意外的没注意到这不是错。” 他的声音像平常一样轻,天鹅绒般的,缓和的。
I scowled at his perfect face. His eyes were light again today, a deep, golden honey color.
我怒视着他完美的脸。他的眼睛今天又明亮了,一种深邃、金蜜般的颜色。
Then I had to look down, to reassemble my now-tangled thoughts.
让我不得不低头,重新组织我纠结的想法。
"Why the traffic jam last night?" I demanded, still looking away.
“昨晚的交通堵塞是什么回事?”我严肃地说道,任然看向别处。
"I thought you were supposed to be pretending I don't exist, not irritating me to death."
“我想你应该是假装我不在,而不应该是想把我气死。”
"That was for Tyler's sake, not mine. I had to give him his chance." He snickered.
“那是Tyler的主意,不是我的。我不得不给他属于他的机会。”他窃笑道。
"You…" I gasped. I couldn't think of a bad enough word.
“你。。。”我喘着气。不想不到足够坏的词来形容他。
It felt like the heat of my anger should physically burn him, but he only seemed more amused.
这就像我的怒火应该热到烫伤他,但是他反而看起被逗乐了。
"And I'm not pretending you don't exist," he continued.
“我也不是假装你不存在的,”他继续补充道。
Chapter 4 Invitations——24的更多相关文章
- Chapter 4 Invitations——28
"Oh, thanks, now that's all cleared up." Heavy sarcasm. “哦,真感谢,现在一切都清楚了.” 我很讽刺的说道 I realiz ...
- Chapter 4 Invitations——27
"Myself, obviously." He enunciated every syllable, as if he were talking to someone mental ...
- Chapter 4 Invitations——26
"I wanted to ask you something, but you sidetracked me," he chuckled. He seemed to have re ...
- Chapter 4 Invitations——25
"So you are trying to irritate me to death? Since Tyler's van didn't do the job?" "所以 ...
- Chapter 4 Invitations——23
The next morning, when I pulled into the parking lot, I deliberately parked as far as possible from ...
- Chapter 4 Invitations——22
"Are you going all by yourself?" he asked, and I couldn't tell if he was suspicious I had ...
- Chapter 4 Invitations——21
"Dad?" I asked when he was almost done. “爸?”我当他快吃完的时候问道. "Yeah, Bella?" “怎么了,Bel ...
- Chapter 4 Invitations——20
Well, that was fine. I could leave him alone. 行吧,但愿一切都好.我能让他一个人. I would leave him alone. 我也会让他一个人的. ...
- Chapter 4 Invitations——19
After I hung up, I tried to concentrate on dinner — dicing the chicken especially; I didn't want to ...
随机推荐
- java中的反射整理
1,什么是反射 反射机制是java语言提供的一种基础功能,它能够赋予成语在运行时进行自省的能力.通过反射我们可以直接操作类或者对象,例如:可以通过反射去获取某个对象的类的定义,属性,方法,还可以修改类 ...
- Influxdb+Grafana+Telegraf及docker中运行
目录 参考资料 1. InfluxDB 1. 特征: 2. 特点: 3. 功能及默认 4. 主要概念 1) 与SQL的名词做比较 2) InfluxDB的独有概念 5. 常用命令 1. 用户管理: 6 ...
- NOIP2012提高组day2 T2借教室
这题骗分可以骗到满分(可能是数据不太强给强行过去了) 这道题如果是按照题意去模拟用循环去修改区间的话只有45分,正解是二分+差分数组,骗分也是差分数组但是没有使用二分,时间复杂度在最坏的情况下是O(n ...
- BZOJ 2169
$f_{ij}$ 表示加入 $i$ 条边, $j$ 个点的度数是奇数的方案数,然后暴力 #include<bits/stdc++.h> using namespace std; #defi ...
- 登录RabbitMQ的方法
一:(运行RabbitMQ之前需要先打开docker 容器)打开相应的路径,在windows Powershell 管理员下打开 输入:docker-compose -f .\docker-compo ...
- Vue 入门. 如何在HTML代码里面快速使用Vue
概述 browserify是一个 CommonJS风格的模块管理和打包工具,上一篇我们简单地介绍了Vue.js官方基于browserify构筑的一套开发模板.webpack提供了和browserify ...
- CommonsChunkPlugin
CommonsChunk 插件的作用就是提取代码中的公共代码,然后将公共模块打包到一个独立的文件中,以便在其它的入口和模块中使用,原理就是把多个入口共同的依赖都给定义成一个新入口 多种打包情况: 单一 ...
- Java使用BufferedImage修改图片内容
1.修改图片的架包 <dependency> <groupId>commons-io</groupId> <artifactId>commons-io& ...
- centos7防火墙配置
一.在工作中远程连接经常通过堡垒机连接,不能直接开启防火墙.所以就需要写入配置文件中 编译配置文件 /etc/firewalld/zones/public.xml <?xml version ...
- Python基础之面向对象思维解决游戏《天龙八部》
一.程序设计思维: 以面向对象的思维设计<天龙八部>游戏技能,使得技能效果在增加或者减少时,游戏技能整体框架不改变,仅仅增加或者减少技能效果 二.思路流程图如下: 三.变成框架实现代码: ...