Chapter 2 Open Book——19
He bent over and began scraping together a pile of the white mush.
他弯下腰,开始团起一个白色的雪球。
"I'll see you at lunch, okay?" I kept walking as I spoke. "Once people start throwing wet stuff, I go inside."He just nodded, his eyes on Eric's retreating figure.
我能在中饭看见你,好吗? 我边走边说着。人们一开始打雪仗我就跑进去。他点点头,但是他的眼睛已经盯上了艾瑞克的背影。
Throughout the morning, everyone chattered excitedly about the snow;apparently it was the first snowfall of the new year.
整个早晨,每个人都在激动的谈论着这场雪,显然这是今年的第一场雪。
I kept my mouthshut. Sure, it was drier than rain — until it melted in your socks.
我一直抿着嘴唇。当然这比下雨要干燥一些,直到它在你的靴子里融化开。
I walked alertly to the cafeteria with Jessica after Spanish. Mush ballswere flying everywhere. I kept a binder in my hands, ready to use it as ashield if necessary.
在西班牙语课之后我和jessica一起走到了自主餐厅,雪球在各个地方飞着。我手里拿着以恶搞文件夹,准备用它做一些必要的防御。
Jessica thought I was hilarious, but something in myexpression kept her from lobbing a snowball at me herself.
jessica看见我有点恶搞,但是看到我的表现,她放弃准备扔我一个雪球的打算。
Mike caught up to us as we walked in the doors, laughing, with icemelting the spikes in his hair.
我们刚进们mike就追上了我们,笑着,头发沾满了冰渣。
He and Jessica were talking animatedly about the snow fight as we got in line to buy food.
他和jessic正在谈论刚刚那场雪仗在我们排队买食物的时候。
I glanced toward that table in the corner out of habit. And then I froze where I stood. Therewere five people at the table.
我习惯性朝着角落的桌子瞟了一眼。然后僵在了那里。那里有五个人坐在那张桌子那里。
Chapter 2 Open Book——19的更多相关文章
- Chapter 1 First Sight——19
"I'm headed toward building four, I could show you the way…" Definitely over-helpful. &quo ...
- Chapter 5 Blood Type——19
"Are you feeling faint?" “你感觉头晕吗?” "Yes, sir," I muttered, internally kicking my ...
- CHAPTER 19 Ordering the World 第19章 分类世界
CHAPTER 19 Ordering the World 第19章 分类世界 Our planet is home to a bewildering variety of plants and an ...
- 零元学Expression Blend 4 - Chapter 19 如何让做好的Blend专案变Silverlight网页
原文:零元学Expression Blend 4 - Chapter 19 如何让做好的Blend专案变Silverlight网页 本章将教大家如何把制作好的Blend专案变为可以让任何人在网际网路浏 ...
- MySQL Crash Course #10# Chapter 19. Inserting Data
INDEX BAD EXAMPLE Improving Overall Performance Inserting Multiple Rows INSTEAD OF Inserting a Singl ...
- Chapter 4 Invitations——19
After I hung up, I tried to concentrate on dinner — dicing the chicken especially; I didn't want to ...
- Chapter 3 Phenomenon——19
His unfriendliness intimidated me. 他的不友好恐吓到了我. My words came out with less severity than I'd intende ...
- MySQL Crash Course #19# Chapter 27. Globalization and Localization
Globalization and Localization When discussing multiple languages and characters sets, you will run ...
- [转]第四章 使用OpenCV探测来至运动的结构——Chapter 4:Exploring Structure from Motion Using OpenCV
仅供参考,还未运行程序,理解部分有误,请参考英文原版. 绿色部分非文章内容,是个人理解. 转载请注明:http://blog.csdn.net/raby_gyl/article/details/174 ...
随机推荐
- Python入门学习
1.访问www.python.org/download下载并安装Python3版本 2.命令行输入python启动交互式命令shell,>>>代表当前行用户的输入 3.基本算数运算: ...
- 用angular实现$.param()
首先介绍一下$.param() 功能: 序列化对象或数组,返回字符串 eg: var params = { width:1900, height:1200 }; var str = jQuery.pa ...
- svn的基本配置及安装
1.检查是否已安装 rpm -qa subversion 如果要卸载旧版本: yum remove subversion 2.安装 yum install subversion 3.检查是否安装成功 ...
- c++实现快速排序详细分析
快速排序坑挺多的,今天有空记录一下自己的实现,并加上详细的注释和举例 #include<iostream> using namespace std; int partion(int num ...
- [折腾纪实]JAVA的坑
开贴记录使用JAVA踩的坑-- P.S. 学习编程最好的方法就是用一个贴心的IDE写,然后隔着屏幕都能感觉到IDE在骂自己SB-- Overridable method calls in constr ...
- Devstack single node Installation on VM
Last three days, I want to install devstack on my virtual machine on Vmware Workstation.The VM'syste ...
- Linux 朝花夕拾
.bash_profile和.bashrc .bashrc要保存个人的一些个性化设置,如命令别名.路径等. 每次修改.bashrc后,使用source ~/.bashrc(或者 . ~/.bashrc ...
- javascript 日期对象
1.日期对象定义 var Udate=new Date();//获得当前日期 2.Date对象中处理时间和日期的常用方法: 3.返回/设置年份 var mydate=new Date();//当前时间 ...
- 【ORACLE】“System.Exception: System.Data.OracleClient 需要 Oracle 客户端软件 version 8.1.7 或更高版本。”解决办法
我的电脑是win10.64位.问题如题,在网上找了很多办法都没搞好,如下: 1.给oracle目录设置“Authenticated Users”用户的“读取/写入”权限 2.IIS网站物理路径凭据添加 ...
- 《JS权威指南学习总结--8.8.4 记忆函数》
内容要点: 可以将上次的计算结果缓存起来.在函数式编程当中,这中缓存技巧叫做 "记忆". 需要注意的是,记忆只是一种编程技巧,本质上是牺牲算法的空间复杂度以换取更优的时间复杂度 ...