T**********e 发帖数: 29576 | 1 For someone who has worked extensively in Hollywood and produced and
directed countless films, Steve Bannon has a very dim view of the
entertainment industry.
"By the way, you've got to understand something: These actors and actresses,
they're all dumb as ticks — and they're all lazy," the former White House
chief strategist said on the Breitbart News Daily radio show on Thursday.
He continued: "Right, they're like pieces of furniture. They're all dumb as
ticks. By the way, that's why movie atte... 阅读全帖 |
|
x****1 发帖数: 118 | 2 Google onsite归来,回馈本版,贡献一点面经和体会。记题的能力不是太好,就捡记
得住的说吧。废话不说,直接上题:
Phone screen:
先问了10道左右的小题,都是概念性的。
包括OOP,hashtable,BST,big O问题, 多线程,都是基本知识,没有什么tricky的地方。
有一道程序改错题,程序大概是替换一个字符串里面的pattern,不知道是谁写的,不是很
organized,估计是其他面试的同学的程序,我看了半天虽然觉的code写得很别扭,但也没找出什
么大错,面试官看我卡住了,就说我们继续吧。好在后来的题都答得比较顺利。
接下来又问了问现在做的项目,根据我的项目问了些问题,如server端如何实现session,项目中
有没有多线程,怎么实现。
最后还有5分钟结束的时候,给留了两道coding题,让我明早之前发给他。
一个就是binary search,不用多说了。
另外一个就是如何查找rotated sorted array (这也是很常见的题,因为面试官讲的是
cyclic,所以一开始我理解成{123456456},后来email问了才明白题意)... 阅读全帖 |
|
a***r 发帖数: 93 | 3 LZ的这个题目, 我搞不懂什么意思,难道不是在两个arraylist中求common movie吗?
谁能说说为什么要用graph及怎么用graph来解?
==================================================================
第二个人是个大牛,言谈举止比较古怪,有点高傲,但还算gentle。
大牛废话特别多,讲题blabla一大堆,都没听明白,不知道重点是什么要让我做什么
。交流过后才大概清楚是一道貌似google题库题(我没见过,但是后面的面试官又提到
过这题)题目大概是这样的:actor和actor之间用同时参演的movie连接,给你两个方
法, getActorsByMovie() 和getMoviesByActor(), 让你去找连接两个actor的movies。
上来先问我这两个方法返回值用什么collection比较好,我说arraylist,然后解释为
什么。接下来开始解题,我说可以看成图,节点是actor,路径是movie,然后用广度或
者深度去遍历。我就回忆cracking the coding上4.2那... 阅读全帖 |
|
g**********y 发帖数: 14569 | 4 看这个描述,我对问题的理解就是直译:
找出连接两个演员的电影,就是两个演员共同参演的电影。
如果针对这个问题,最方便写code的结构是hashset,
public List getCommonMovies(String actor1, String actor2) {
HashSet hs1 = getMoviesByActor(actor1);
HashSet hs2 = getMoviesByActor(actor2);
ArrayList common = new ArrayList();
for (String movie : hs1) {
if (hs2.contains(movie)) common.add(movie);
}
return common;
}
本来这是个简单题,我想大牛可能打算展开来说,变换问题和条件。后来Interview演
变成写那个实现。
从图的角度,这就是个简单的二分图。左边演员,右边电影。
没准大牛本来打算变化个max-flow出来让你解。
》》》》... 阅读全帖 |
|
c*****o 发帖数: 1702 | 5 今天收到人生第一个onsite后的据信。这次onsite面试在2周前,看起来还是很干脆的据
信。痛定思痛,决心以后再也不靠运气吃饭了。努力准备!
发面经攒人品:
电面1:
important features of OOP: encapsulation,inheritance and polymophism. what
is abstract class,interface. are we able to inherit from multiple abstract
class or interface. So basically all OOP definitions.
电面2:
still OOP, can C++/Java/C# use multiple inheritances? 然后就一堆废话,后来
知道第一轮都答对,第二轮就很水
onsite 3:早上11点开始,45分中一轮,一共见了6个人,本来要见的COO不在。分别是
director, senior developer,developer,senior developer, archtecter,还有
managin... 阅读全帖 |
|
C*O 发帖数: 389 | 6 设计actor and movie,主要就是要实现选择一个movie,就能找到里面的actor以及各个
actor的角色,选择一个actor就返回该人参加过的电影以及在电影中的角色
多谢大家了, 明天onsite,很有可能问这个 哈哈 |
|
l*****a 发帖数: 14598 | 7 why your System need to hold two map?
two list will be enough, Movie Name is already a property of a Movie object
Class Movie
{
list alist;
hash_map hm;
}
Class Actor
{
list mlist;
hash_map hm;
}
Class System
{
list alist;
list mlist;
} |
|
e******g 发帖数: 51 | 8 刚刚收到Amazon的Offer消息,下周谈Offer细节.
我是Fresh MS,被recruiter骚扰参加了Online Test,然后上周五去Seattle On-site的
,四轮面试。
第一轮是个中国大哥,7年exp。
一开始谈了下他的项目,问了下我的经历,最后半个小时给了道题。
题目:Given Movies,Actors. Each movie includes some actors. How to find all
shortest paths between two given actors?
e.g.
Movie: A, B, C
Actor: a, b, c
relation: A(a,b),B(b,c)
from: a, To: c
Ans: a-b-c
这就是一道BFS问题,写完OK。他也很满意。
第二轮也是个中国大哥,Bar Raiser, 4年exp。
简单介绍下他自己后开始问我问题,都是关于OOD的一些概念。
然后让我设计一个在web doc页面上的画图程序,要求能够处理各种图形(增添,删除
,编辑,染色等等)。
用了Observer,Factory... 阅读全帖 |
|
x****1 发帖数: 118 | 9 Linkedin
phone1:烙印
lowest common ancestor w/ and w/o parent pointer
phone2:国人
search in rotated sorted array
onsite:
1.两个国人
implement addInterval(start, end) and getcoverage(),
2.两个国人
talk projects and some behavior question
3.烙印
lunch, talk about technologies interest
4.亚裔,不确定是否国人
Manager, talked a lot of behavior questions, interest and projects
5.烙印
Design: tinyurl
6.烙印+小白
1.exclusive array, give an arr1, return a new arr2, arr2[i] is the
multiplication of all elements in arr1 except arr1[i]
... 阅读全帖 |
|
f******h 发帖数: 45 | 10 也找工作了一段时间了,从版上学了很多,上周G家面完了,求个bless。
之前的一些都挂了,还在继续找其他的。等定下来之后一定发面经回报本版。
谢谢大家啦!!
1. http://www.mitbbs.com/article_t/JobHunting/32005597.html
1) Implement a simple calculator (+,-,*,/);
2) Implement "+1" for a large integer;
3) How to match Ads to users;
4) How to extract useful information from a forum webpage (list all
kinds of useful signal you can think of)
5) How to detect the duplicate HTML pages (large scale);
6) Find all the paths between two places on Google map;
7)... 阅读全帖 |
|
p*****2 发帖数: 21240 | 11
想了一下,还是应该用actors
import akka.actor._
case class Foo(times: Int)
case class Bar(times: Int)
case object Foo
case object Bar
class FooActor(barActor: ActorRef) extends Actor {
def receive = {
case Foo(times) if times>0 =>
print(Foo)
barActor ! Bar(times)
}
}
class BarActor() extends Actor {
def receive = {
case Bar(times) =>
println(Bar)
sender ! Foo(times-1)
}
}
object test extends App{
val system = ActorSystem()
val barActor = system.actorOf(Props(new... 阅读全帖 |
|
T*********e 发帖数: 9208 | 12 texas castle doctrine:
(a) Except as provided in Subsection (b), a person is justified in using for
ce against another when and to the degree the actor [he] reasonably believes
the force is immediately necessary to protect the actor [himself] against t
he other’s use or attempted use of unlawful force. The actor’s belief that
the force was immediately necessary as described by this subsection is pres
umed to be reasonable if the actor:
注意关键词immediately necessary, 小偷逃跑时开枪是immediately necessary fo |
|
c*******r 发帖数: 334 | 13 因为回那个关于从国内才过来的4岁男孩是否要上幼儿园的帖子,说到可以在家看看动
画片什么的,然后刚才发现有个朋友发信给我,希望能有些具体的名录,我想,既然努
力了一次,不妨也贴出来,就算是给有此需求的家长一点点帮助吧。
我的女儿已经13 岁多了,只好凭着记忆到Amazon上看看,还不错,基本上我们看过的
也喜欢看的,都找到了。下面列出来的算是我推荐的一些吧。我觉得孩子在看、乐、学
英语的同时,对于他们人格、性格、脾气、礼貌、社交等等的培养也是都有帮助的,算
是很不错的寓教于乐的东东。我当初还跟着看了不少,也因此学会了不少英语口语呢,
呵呵
先说故事片:
Once Upon a Forest (1993) Michael Crawford (Actor), Ben Vereen (
Actor), Charles Grosvenor (Director) | Rated: G | Format: DVD 到
现在都觉得这个片子好,告诉小朋友要互帮互助,要爱学习知识并且学以致用,要勇敢
,学会爱护小动物,爱护自然环境
Peter Pan (Two... 阅读全帖 |
|
S*******s 发帖数: 13043 | 14 兴冲冲的看了看TJ的wiki却有点困惑了,费这么大劲上名校,让孩子玩命苦读值吗?
楼主上的tj,很难考,进去了也需要花很大劲生存,这是wiki上这个学校的Notable
alumni:
Ashley Miller, 1989, screenwriter, "Thor", X-Men: First Class" , and "
Andromeda"
Chris Avellone, 1989, game designer, Fallout 2 and Planescape: Torment.
Anne Toth, 1989, Head of Privacy at Google+, previously Chief Trust Officer
at Yahoo!.
Ehren Kruger, 1990, screenwriter, Arlington Road, Reindeer Games, Scream 3,
The Ring, The Brothers Grimm, The Skeleton Key.
Owen Thomas, 1990, executive editor of Val... 阅读全帖 |
|
W***n 发帖数: 11530 | 15 Forex Investors May Face $1 Billion Loss as Trade Site Vanishes
By David Evans Nov 12, 2014 11:01 PM CT
Michael Sterling, identified as Secure's CEO on an infomercial that aired on
the site... Read More
Related
Video Touts Secure Investment's Forex Trading
The first time Rajibuddin Mandal, a family doctor in Birmingham, England,
tried his hand at trading currencies online, he lost 2,000 British pounds.
From that experience, he concluded that the foreign-exchange market was too
big, too compl... 阅读全帖 |
|
y*******0 发帖数: 2352 | 16 帮一个朋友发的,有兴趣的话请直接联系他本人,谢谢!
另:据朋友说电影并没有诋毁/丑化中国人/中国政府的意图,谢谢!
SHORT FILM--filming in New York City
CASTING CALL for Chinese General
and LOCATION SCOUT for Hospital Room.
Hello my name is Kerey Viswanathan. I'm the production manager on a short
film directed by my good friend and fellow awesome filmmaker Khenrab Palden
S.
The story centers around a Tibetan immigrant named Tenpa, who was arrested
by the Chinese government and spent several years of his life at Drapchi
prison. He lives in New York City... 阅读全帖 |
|
h****a 发帖数: 5058 | 17 Well,这个要看怎么理解leader的含义了。
如果你把leader加上一个s,我比较同意你的看法。
但是我的感觉是final MVP相当于是academy awards的best leading actor,
那么Kb呢,相当于三次拿了best supporting actor,其他龙套呢,是没有奖的。
best supporting actor不是leader,
即使是三次,我也不会算他一次leading actor,因为奖项不同,呵呵 |
|
b******o 发帖数: 5644 | 18
2C:3-4,(2)-(b)-(I)
http://law.onecle.com/new-jersey/2c-the-new-jersey-code-of-crim
2C:3-4. Use of force in self-protection.
(2) The use of deadly force is not
justifiable under this section unless the actor reasonably believes that
such force is necessary to protect himself against death or serious bodily
harm; nor is it justifiable if:
(a) The actor, with the purpose of
causing death or serious bodily harm, provoked ... 阅读全帖 |
|
t***u 发帖数: 20182 | 19 很多明星啊
England Team
Harry Redknapp ( Manager ) - Tottenham Hotspur manager
James Corden (Assistant Manager) - BAFTA winning actor and writer
Bryan Robson (Coach) - former England captain
Robbie Williams (Captain) - singer, songwriter, UNICEF ambassador
Jamie Theakston - radio & tv presenter
Jonathan Wilkes - tv presenter
Ben Shephard - tv presenter
Bradley Walsh - actor & comedian
Rupert Penry-Jones - actor
Damian Lewis - actor
Ricky Hatton - boxer
Danny Cipriani - rugby player
Paddy McGuiness - |
|
k***r 发帖数: 13724 | 20 mad men这一季竟然没提名,就有个男主,也许是胃口吊太久的原因。
the newsroom在我看来有点意外,sorkin那么赤裸裸的助选奥巴马看来很和好莱坞的胃
口。
BEST TELEVISION SERIES – DRAMA
a. BREAKING BAD
AMC
Sony Pictures Television
b. BOARDWALK EMPIRE
HBO
Leverage, Closest to the Hole Productions, Sikelia Productions
and Cold Front Productions in association with HBO Entertainment
c. DOWNTON ABBEY: SEASON 2
PBS
A Carnival / Masterpiece Co-Production
d. HOMELAND
SHOWTIME
SHOWTIME, Teakwood Lane Productions, Cherry Pie Product... 阅读全帖 |
|
k********k 发帖数: 5617 | 21 http://walnuthillarts.org/
Walnut Hill School for the Arts
12 Highland Street
Natick, MA 01760
Phone: 508.650.5020
Phone:(508) 653-4312
Walnut Hill School for the Arts is an independent boarding school for the
arts located in Natick, Massachusetts.
History and programs[edit]
Boarding School[edit]
Walnut Hill was founded in 1893 by Florence Bigelow and Charlotte Conant as
a college preparatory school for women and a feeder school for Wellesley
College. Even as a traditional private boarding schoo... 阅读全帖 |
|
L*******s 发帖数: 15925 | 22 本来想发在小杜的不说废话俱乐部的
没想到那边要加入才能发言
记得那边讨论过全是对话的小说
这篇全是短信的小说 拼写一堆错 但读得太乐了 很有Michael Cera的风格
买卖提排版不好
你们直接去链接看吧
http://www.newyorker.com/humor/2013/11/25/131125sh_shouts_cera?
MY MAN JEREMY
by Michael Cera
Whenever a friend asks me if I have any interesting tales involving text-
messaging, I think of Jeremy. Jeremy, a man I am no longer in touch with,
was someone I once considered a friend. It started out very simply: one day
I received a text message from a phone number I did not recognize. Intrigued
,... 阅读全帖 |
|
p****r 发帖数: 9164 | 23 MOTION PICTURES
Best Drama
"Boyhood"
"Foxcatcher"
"The Imitation Game"
"Selma"
"The Theory of Everything"
Best Comedy
"Birdman"
"The Grand Budapest Hotel"
"Into the Woods"
"Pride"
"St. Vincent"
Best Director
Wes Anderson, "The Grand Budapest Hotel"
Ava Duvernay, "Selma"
David Fincher, "Gone Girl"
Alejandro González Iñárritu, "Birdman"
Richard Linklater, "Boyhood"
Best Actress in a Drama
Jennifer Aniston, "Cake"
Felicity Jones, "The Theory of Everything"
Julianne Moore, "Still Alice"
Rosamun... 阅读全帖 |
|
w*m 发帖数: 29 | 24 I have to say that you don't really know him.
Some of the awards he won:
1988 Nominated Golden Globe Best Performance by an Actor in a Motion Picture
- Comedy/Musical
for: Moonstruck (1987)
Catalonian International Film Festival, Sitges, Spain
Year Result Award Category/Recipient(s)
1989 Won Best Actor
for: Vampire's Kiss (1989)
1996 Won Oscar Best Actor in a Leading Role
for: Leaving Las Vegas (1995)
1996 Won Golden Globe Best Performance by an Actor in a Motion Picture -
Drama
for: Leaving |
|
i***0 发帖数: 8469 | 25 Academy Awards
Main article: Academy Awards
Year Nominated work Category Result
1994 What's Eating Gilbert Grape Best Supporting Actor[1]
Nominated
2005 The Aviator Best Actor[2] Nominated
2007 Blood Diamond Best Actor[3] Nominated
2014 The Wolf of Wall Street Best Actor[4] Nominated
Best Picture, as producer[5] Nominated |
|
l****z 发帖数: 29846 | 26 The Terminator Genisys Movie Review for Geeks… Arnie Is Back, Unfortunately
Written by Andre Infante July 3, 2015
All the while I was watching Terminator Genisys, the same phrase kept coming
back to me… “We have to go back in time and kill the screenwriter.”
Terminator Genisys is the latest edition of the Terminator series, a
property rivaled only by the Alien series for turning two great films into
an awful franchise. The last two entries, Terminator 3: Rise of the Machines
and Terminator Salva... 阅读全帖 |
|
l******a 发帖数: 3803 | 27 Charlie Sheen is HIV-positive, two sources confirm to E! News.
Amid rumors about his health, Sheen is scheduled to give a live, in-studio
interview with Today's Matt Lauer in Studio 1A Tuesday. A press release
issued Monday said the 50-year-old actor "will make a revealing personal
announcement."
The interview will be available on Today.com after it airs.
Reps for Sheen did not respond to E! News' request for comment.
The troubled actor has five children, ranging in age from 6 to 30, in
addition... 阅读全帖 |
|
m*****d 发帖数: 13718 | 28 best actor
prize-winning actor
king actor
emperor actor |
|
l*****a 发帖数: 38403 | 29 Michael Brea, bit-part 'Ugly Betty' actor, says, 'I didn't kill her. I
killed the demon inside her'
BY MATTHEW LYSIAK / DAILY NEWS STAFF WRITER
Michael Brea says he killed his mom Yannick Brea with a sword after she
asked him to pour water from a pot in which she was cooking chickens in.
Michael Brea says he killed his mom Yannick Brea with a sword after she
asked him to pour water from a pot in which she was cooking chickens in.
An unhinged actor Thursday calmly described hacking his beloved mo... 阅读全帖 |
|
o**2 发帖数: 168 | 30 从making object active这个角度来说,actor/agent/active object应该都算这一大
类的了。和普通的object比,这是决定性的一点。但在所有的actor-like的系统里,大
家都有这个基本点,所以反而是最不值一提的东西了。
我简单看过Akka的文档,觉得是一个很完善的系统,比如支持transactional
messaging。
FM和其他actor-like的系统比,优势在于:
1)紧抱着OO model的大腿,把自己看成OO的扩展,而不是actor model。作为结果,FM
目前提供在Java,C#和JavaScript上的implementation。
2)紧贴着developer for general programming,而不是research。完全没有陌生的
framework和syntax。
先写这两点,过几天我用FM写一个Akka tutorial里的PI示范程序,来比较比较。 |
|
o**2 发帖数: 168 | 31 可以说核心都是actor的思想,akka用户是使用裸体的actor,FMP的用户是通过
messenger使用active object。这个archtecture上的不同导致了vision的完全不同,
FMP完全是跨语言跨平台。不同语言不同平台上的不同active object可以用自始至终不
变的API互相调用/通讯,比如一个C#写的active object在messenger1里在Windows上可
以这样调用另外一个Java写的active object "calculator"which运行在messenger2在
Linux上:
messenger1.callService("messenger2::calculator:multiply", n1, n2);
(当然前提是messenger1和messenger2已经直接或间接地connected,FMP叫它们
networked messengers。模型和设计都完成了,就等有空的时候,我写一个reference
implementation。)
(n1和n2要是合适的数据,比如可以写成JSON的。FMP不管数据转换的... 阅读全帖 |
|
H****S 发帖数: 1359 | 32 actor是reacting programming的corner stone,这个对于web server design基本就有
天生的优势。它和future的关系实质因该是互补的。我也不觉得actor有什么难的,难
得反而是避免abuse actor,比如很多人先入为主会从线程的角度来理解actor,写出的
code也可象而至是怎样。 |
|
d******e 发帖数: 2265 | 33 说说我的简单的不用锁的对战射击:
1. 所有的对象都改actor,greenlet(python), haskell threads.
2. actor间相互发消息。砍就是砍消息,自己处理自己的状态
3. actor处理完消息把状态delta发给地图线程
4. 地图线程每20ms汇总更新一次,把状态返还用户活着用户的delegate.
特点:完全没锁,现在机器一台host 几百万的actor应该是可以的。对于游戏这种low
latency的饮用,几万肯定可以。
没有基于过于底层的c/C++来实现。 |
|
k**********g 发帖数: 989 | 34
首先所有底层的第三方代码要进行代码审查,看看有没有要修补,要上锁或加倍留意的
地方,例如mutable singleton,thread local data。其中的「锁」会用两种方式确保
正确运作而不锁死∶数据依赖和任务依赖。巩固代码後,下面的工作可分为三方面∶任
务包装,数据包装,界面包装。这包装和encapsulation不同,本质是换汤不换药,不
过是把代码结构稍为修改了。任务包装是把可执行的耗时任务分割为单元,细分为CPU
intensive和IO intensive,再分装为Callable。要确保每一个单元提交到Executor後
,能在任意thread成功执行。数据包装是把数据分类为Write once read many(WORM)或
是mutable。WORM会变成Futures。Mutable按需要可能改写成immutable pattern(类似
copy on modify)或用上述的依赖链使其单线程化。(即使单线程化,不相关的任务仍
可并列执行。)界面包装是把上述的改写用最简洁易用的方式表达,确保接口的组合性
(composability)。
经常会用到 ... 阅读全帖 |
|
R*******e 发帖数: 25533 | 35 5. Waiting for “Superman”
Director: Davis Guggenheim
In a year that gave us three major documentary features about the glaring
need for educational reform in America, Davis Guggenheim’s Waiting for “
Superman” presents the most unavoidably compelling argument. In one of the
biggest eye-openers, he shows that housing a man in prison (where inner city
high school dropouts are statistically likely to wind up) costs three times
as much per year as sending them (as kids) to even the most exclusive
pr... 阅读全帖 |
|
w*******y 发帖数: 60932 | 36 Harry Potter and the Deathly Hallows, Part 1 was released in theaters on Nov
. 19th, 2010, earned over $295 million dollars domestically and over $952
million worldwide, the 38th highest grossing movie ever! Director David
Yates states that this book had so much material in it that could not be cut
or condensed; it had to be split into two parts, the second of which will
be hitting theaters on July 15th, 2011, in 3D!
A recently released featurette showing the making of part two has people
buzzin... 阅读全帖 |
|
S****i 发帖数: 1785 | 37 Chinese actor Zhang Guofeng was arrested by authorities in China on December
8th after a tip revealed that he is actually Ji Siguang, a fugitive who
allegedly attacked a police officer in the city of Qiqihar in 1998.
Sky News reports that, after fleeing the crime scene, he adopted his stage
name and began a successful career as a character actor, gaining most fame
for, irony of ironies, playing a detective on a television show. Zhang has
appeared in over 30 shows and was in the midst of playing ... 阅读全帖 |
|
c******o 发帖数: 1184 | 38 评价的不错
http://www.exurbe.com/?p=2176
“The Borgias” vs. “Borgia: Faith and Fear” (accuracy in historical
fiction)
Posted by exurbe on July 26, 2013 Fandom
BorgiaFrenchTVPoster
A French “Spot the Saint” themed poster for “Borgia: Faith and Fear”
assigning Cesare the attributes: archbishop’s robes, scythe, dagger, bloody
hands, blood. The French caption reads “Don’t have faith in them.” I
can’t argue.
There was a Borgia boom in 2011 when, aiming to capitalize on the commercial
success of The Tudor... 阅读全帖 |
|
a****1 发帖数: 654 | 39 China or Jihadists try to bankrupt America? Pentagon Report.
http://www.dailymail.co.uk/news/arti...mic-crash.html
Did China or Jihadists try to bankrupt America? Pentagon report reveals
financial terrorists may have triggered economic crash
Two mystery investors 'were number one traders in all financial companies
that collapsed or are now financially supported by the U.S. government'
By Daily Mail Reporter
Last updated at 3:48 PM on 2nd March 2011
Comments (12)
Add to My Stories
Terrorists and ... 阅读全帖 |
|
h*i 发帖数: 3446 | 40 By AUSTIN CONSIDINE
Published: July 29, 2011 NYTimes
ASIAN roles in Hollywood have come a long way since Mickey Rooney played a
Japanese neighbor in “Breakfast at Tiffany’s.” But the dearth of Asian
lead characters today suggests that there is still a way to go.
It’s an entirely different story, however, on YouTube, where a young
generation of Asian-Americans has found a voice (and millions of eager fans)
on the democratized platform.
Of the 20 most-subscribed-to channels on YouTube, which inclu... 阅读全帖 |
|
t******t 发帖数: 15246 | 41 Paul Allen: 1600
Microsoft co-founder
Bill Gates: 1590
Microsoft co-founder
Bill O'Reilly: 1585
Political commentator and host of The O'Reilly Factor
James Woods: 1579
Actor (Scary Movie 2, Any Given Sunday)
Ben Stein: 1573
Actor and game show host (Ferris Bueller's Day Off, Win Ben Stein's Money)
Al Gore: 1355
45th Vice President of the United States
Stephen King: 1300s
Author (The Shining, The Green Mile)
Meredith Vieira: 1300s
Television Host (Who Wants to Be a Millionaire, The Today Show)
Ge... 阅读全帖 |
|
I******a 发帖数: 3812 | 42 我打了一个很草的纲要在这里:
1. Assumptions:
• Anarchy
• Offensive power.
• Unpredictable intention
• Survival
• Rational Actor.
•
• Play on possibility.
•
2. Behavior
o Seek help, helpless because of no higher authority.
o Self help. Israel not counting on America when their interests diverge.
o Be the biggest and baddest dude on the block, hegemony. Maximizing
relativepower.
Drug example, legalization create... 阅读全帖 |
|
l*x 发帖数: 891 | 43 提到这次波士顿爆炸案,就不得不提去年12月15日发生的桑迪•胡克小学(Sandy
Hook Elementary)枪击案。有许多证据怀疑此次枪击案的真实性,背后主谋也是美国
政府。有兴趣的朋友可以看看以下这个视屏:The Sandy Hook Shooting - Fully
Exposed
http://www.youtube.com/watch?v=Wx9GxXYKx_8&bpctr=1366250790
上段录像中最搞笑的莫过于一个“死者”的“父亲”,Robby Parker,在记者发布会上
没有意识到镜头在拍摄自己,满面春风地和旁人聊天开玩笑(08:10开始),然后笑逐
颜开的施施然走到镜头前,一口深呼吸,脸色瞬间变得深沉而悲痛,开始了一长段伤感
的演讲。今年的奥斯卡最佳男主角非他莫属了。
可惜女主角演砸了。救了15个小学生的“犹太英雄女老师”Kaitlin Roig在ABC News的
采访中,虽然竭尽全力表现悲痛,嘴巴眼睛鼻子挤了又挤,愣是没挤下一滴眼泪,只是
象征性的在自己干巴巴的眼角处擦了又擦(从06:00开始):The Sandy Hook Actors
... 阅读全帖 |
|
l*x 发帖数: 891 | 44 边写边贴,今晚是写不完了,大家将就着看看吧,争取明天写完:
深度分析:
提到这次波士顿爆炸案,就不得不提去年12月15日发生的桑迪•胡克小学(Sandy
Hook Elementary)枪击案。有许多证据怀疑此次枪击案的真实性,背后主谋也是美国
政府。有兴趣的朋友可以看看以下这个视屏:The Sandy Hook Shooting - Fully
Exposed
http://www.youtube.com/watch?v=Wx9GxXYKx_8&bpctr=1366250790
上段录像中最搞笑的莫过于一个“死者”的“父亲”,Robby Parker,在记者发布会上
没有意识到镜头在拍摄自己,满面春风地和旁人聊天开玩笑(08:10开始),然后笑逐
颜开的施施然走到镜头前,一口深呼吸,脸色瞬间变得深沉而悲痛,开始了一长段伤感
的演讲。今年的奥斯卡最佳男主角非他莫属了。
可惜女主角演砸了。救了15个小学生的“犹太英雄女老师”Kaitlin Roig在ABC News的
采访中,虽然竭尽全力表现悲痛,嘴巴眼睛鼻子挤了又挤,愣是没挤下一滴眼泪,只是
象征性的在自己干巴巴的眼角处擦... 阅读全帖 |
|
l*x 发帖数: 891 | 45 写到波士顿爆炸案,我突然想到,为了让各种惨案更加真实,更加有说服力,美帝从来
都是毫不犹豫使用各种血淋林的图片,而且从来都是怎么血腥怎么来,怎么暴力怎么来
(如下图)。
唯独在Sandy Hook小学枪击案中,还没有找到任何一张带有枪击结果的的照片,如血迹
,弹孔痕迹等。再加上上百个“遇难者家属老师朋友”们的荒唐而漏洞百出的表演(见
我1楼的分析和下面的录像链接),我不得不怀疑Sandy Hook小学枪击案压根就没有发
生过。为了证明我是错的,我又不得不在我的原帖的第53楼发文倾尽包子征图:“为了
证明我是错误的,特征一张能证明Sandy Hook小学枪击案中任何带有血迹的照片,包括
受伤的小孩、教师,流血的地板,草坪,操场,墙角,卫生间,停车坪…我说过,任何
照片!”
我在这里提这些,想说得是美帝敢在全世界人面前使用上百个群众演员合力演出这样一
场震惊世界而且漏洞百出的枪击案,他还有什么不敢做不能做的事呢?
信美帝,得永生!
The Sandy Hook Actors PART 1:
http://www.youtube.com/watch?v=8_b9hh2lp3I
The San... 阅读全帖 |
|
t**********8 发帖数: 1683 | 46 本土恐怖分子更危险 恐怖活动是为了推动禁枪案
文章来源: 世界新闻网 于 2013-04-18 08:09:26 - 新闻取自各大新闻媒体,新闻内容
并不代表本网立场!
打印本新闻 (被阅读 20024次) 2
「福斯新闻」对全美选民进行的民调显示,美国民众对波士顿马拉松大赛遭到炸弹攻
击,愤怒多于恐惧,并相信作案者迟早会落网。而且美国东北部居民担心遭到攻击,会
因此改变生活习惯的比率也比西部居民高。
58%的人对爆炸案表示愤怒,比感到忧心的人(27%)多出一倍以上,79%的人相信政
府会逮到炸弹客。
62%的人认为这个事件很可能是国内恐怖分子干的,只有20%认为可能是伊斯兰恐怖
分子的「杰作」。
51%的人认为像奥克拉荷马市炸弹案兇手麦克维(Timothy McVeigh)这种本土恐怖分
子,对美国构成的威胁较大,只有26%的人认为伊斯兰恐怖分子构成的威胁较大。
34%的人担心当地发生恐怖攻击,65%的人没有这种顾虑。东北部民众有42%担心发
生这种事情,西部民众这种比率最低,只有25%。
69%的人认为当地有关当局对应付恐怖攻击已有准备。81%的人宣称炸弹案不会改变
他们的日常... 阅读全帖 |
|
p********7 发帖数: 18007 | 47 Where have all the scientists gone, long time passing?
Where have all the scientists gone, long time ago?
Where have all the scientists gone?
You have told moon landing to everyone.
Oh, when will they ever learn?
Oh, when will they ever learn?
Where have all the young PhD gone, long time passing?
Where have all the young PhD gone, long time ago?
Where have all the young PhD gone?
Gone for food stamps everyone.
Oh, when will they ever learn?
Oh, when will they ever learn?
Where have all the actor... 阅读全帖 |
|
p********7 发帖数: 18007 | 48 Where have all the scientists gone, long time passing?
Where have all the scientists gone, long time ago?
Where have all the scientists gone?
You have told moon landing to everyone.
Oh, when will they ever learn?
Oh, when will they ever learn?
Where have all the young PhD gone, long time passing?
Where have all the young PhD gone, long time ago?
Where have all the young PhD gone?
Gone for food stamps everyone.
Oh, when will they ever learn?
Oh, when will they ever learn?
Where have all the actor... 阅读全帖 |
|
|
z**********e 发帖数: 22064 | 50 http://cn.nytimes.com/china/20140722/c22tibettweet/dual/
It’s Another Perfect Day in Tibet!
By ANDREW JACOBS July 22, 2014
杰安迪 2014年07月22日 BEIJING — There’s a lot to admire about Tom Hugo,
and not just the washboard abs that are a glaring feature of his Twitter
account profile photo.
北京——Tom Hugo有很多东西值得赞赏,不仅仅是他Twitter账户头像里展示的令人艳
羡的搓衣板式腹肌。
For starters, Tom Hugo seems to be well-versed in Chinese, and he evidently
cares deeply about the Tibetan people, judging from the profusion of
messages he ha... 阅读全帖 |
|