avatar
w*s
2
【 以下文字转载自 WorldNews 讨论区 】
发信人: whiteclouds (/ 参考消息 /), 信区: WorldNews
标 题: The New American Century - PNAC Exposed
发信站: BBS 未名空间站 (Thu Nov 11 13:13:38 2010, 美东)
http://video.google.com/videoplay?docid=-3776750618788792499&hl=en#
The New American Century - PNAC Exposed
By Massimo Mazzucco. NAC.
New American Century
Sunday, Oct 31, 2010
This film goes in detail through the untold history of The Project for the
New American Century with tons of archival footage and connects it right
into the present. This film exposes how every major war in US history was
based on a complete fraud with video of insiders themselves admitting it.
This film shows how the first film theaters in the US were used over a
hundred years ago to broadcast propaganda to rile the American people into
the Spanish-American War.
This film shows the white papers of the oil company Unocal which called for
the creation of a pipeline through Afghanistan and how their exact needs
were fulfilled through the US invasion of Afghanistan. This film shows how
Halliburton under their "cost plus" exclusive contract with the US
Government went on a mad dash spending spree akin to something out of the
movie Brewster's Millions, yet instead of blowing $30 million they blew
through BILLIONS by literally burning millions of dollars worth of hundred
thousand dollar cars and trucks if they had so much as a flat tire.
"A stunning film. It should be seen as widely as possible, in cinemas,
bars, clubs, at meetings and, of course, through the internet. I'm sure the
film will continue to be a source of debate and political education for many
years. Maybe until the war criminals have been brought to trial."
- Ken Loach
While Massimo Mazzucco’s first political documentary, GLOBAL DECEIT (2006),
focused on the long list of inconsistencies in the official version of the
9/11 attacks, THE NEW AMERICAN CENTURY explores the historical,
philosophical and economic background that suggests a matrix for such events
that is much closer to home than the so-called "Islamic terrorism". The
film provides solid evidence for the true reasons behind the Afghanistan and
Iraq wars, whose unfolding is described in chilling detail in a document
called "Project for the New American Century", published in the year 2,000,
that seems to have served as the actual blueprint for such dramatic events.
Editor's Note: We offer this video in two forms. The first appears below in
10 clips from the film documentary. This may appeal to those of you who don'
t have time to sit down and watch a 2 hour movie, but may want to return to
it in the form of 10 portions that are compatible with your schedule. For
those of you who want to view it in one documentary uninterrupted, we
provide it intact below these 10 segments. However you view this video, we
think most Axis readers will find it to be worth the time required to watch
it. The film makes a strong case for the "blood for oil" and world dominance
motives of the PNAC for the US wars in Iraq and Afghanistan. In our
judgement, the only weakness in the documentary is that it omits the
important role Israel and Zionism plays in drawing the U.S. into these wars.
- Les Blough, Editor
avatar
n*s
3
神奇的买卖提
avatar
m*n
4
a=[1]*3
print(a)
a[0]=100
print(a)
结果是
[1, 1, 1]
[100, 1, 1]
这当然没问题
b=[[1] * 3] *3
print(b)
b[0][1] = 100
print(b)
结果是
[[1, 1, 1], [1, 1, 1], [1, 1, 1]]
[[1, 100, 1], [1, 100, 1], [1, 100, 1]]
啊??????
avatar
m*a
5
这个是CS的,我们的lattice就是一系列数学坐标,square lattice直接就可以用
matrix表示就行了,不知道其他形状的hexagonal lattice怎么在Matlab里面用数学表
avatar
z*n
6
没看懂,请明示,那神奇了?
avatar
x*i
7
用*号建的list是引用

【在 m******n 的大作中提到】
: a=[1]*3
: print(a)
: a[0]=100
: print(a)
: 结果是
: [1, 1, 1]
: [100, 1, 1]
: 这当然没问题
: b=[[1] * 3] *3
: print(b)

avatar
l*1
8
Sorry, didn't got your major is not CS but Math,
here you go,
one 2013 Univ Arizona PhD dissertation,
by Martin Leslie
http://math.arizona.edu/gradprogram/people/grads_phd.html
PDF link:
HTTP://arxiv.org/pdf/1310.5376.pdf

【在 m*******a 的大作中提到】
: 这个是CS的,我们的lattice就是一系列数学坐标,square lattice直接就可以用
: matrix表示就行了,不知道其他形状的hexagonal lattice怎么在Matlab里面用数学表
: 示

avatar
n*s
9
已离线,但仍能选择讨论区

【在 z******n 的大作中提到】
: 没看懂,请明示,那神奇了?
avatar
s*n
10
同一个数组被指向了3次。
应该这么写:
b=[[1] * 3 for i in range(3)]
avatar
s*n
11
Nice!

【在 l**********1 的大作中提到】
: Sorry, didn't got your major is not CS but Math,
: here you go,
: one 2013 Univ Arizona PhD dissertation,
: by Martin Leslie
: http://math.arizona.edu/gradprogram/people/grads_phd.html
: PDF link:
: HTTP://arxiv.org/pdf/1310.5376.pdf

avatar
y*n
12
同时用web和term的话经常会这样 :)

【在 n***s 的大作中提到】
: 已离线,但仍能选择讨论区
avatar
y*4
13
Python里面所有都是对象,等号只是赋予指针,你就理解了。

【在 m******n 的大作中提到】
: a=[1]*3
: print(a)
: a[0]=100
: print(a)
: 结果是
: [1, 1, 1]
: [100, 1, 1]
: 这当然没问题
: b=[[1] * 3] *3
: print(b)

avatar
c*t
14
为啥就你嚼得神奇呢?
罚个包子,看东西不仔细,你把那句话的时间状语再认真读一下。

【在 n***s 的大作中提到】
: 神奇的买卖提
avatar
a*g
15
Immutable跟mutable的区别
Integer是immutable, list是mutable

【在 m******n 的大作中提到】
: a=[1]*3
: print(a)
: a[0]=100
: print(a)
: 结果是
: [1, 1, 1]
: [100, 1, 1]
: 这当然没问题
: b=[[1] * 3] *3
: print(b)

avatar
c*t
16
不用term 的飘过。

【在 y*****n 的大作中提到】
: 同时用web和term的话经常会这样 :)
avatar
m*n
17
我也没看懂啊
avatar
i*i
18
哈哈,真神奇!
快赶上贵州神奇了!!
谢谢小问号和洋金,
我以前都没注意过。。。

【在 n***s 的大作中提到】
: 神奇的买卖提
avatar
n*p
19
同情要对付这种坑的程序员
avatar
l*u
20
list comprehension 正解,楼上的方法可行:
b = [[1]*3 for _ in range(3)]
avatar
g*t
21
我直接emacs一个快捷键,paste出来for loop
从来不用这种高级的东西。


: 同情要对付这种坑的程序员



【在 n***p 的大作中提到】
: 同情要对付这种坑的程序员
avatar
s*n
22
大牛你也用Python吗?

【在 g****t 的大作中提到】
: 我直接emacs一个快捷键,paste出来for loop
: 从来不用这种高级的东西。
:
:
: 同情要对付这种坑的程序员
:

avatar
g*t
23
我不是大牛。我每天都用。
我买了个pythonista在iOS app,非常好用。
可以随时单手在iphone写python 。


: 大牛你也用Python吗?



【在 s*********n 的大作中提到】
: 大牛你也用Python吗?
avatar
C*l
24
list comprehension效率更高

【在 g****t 的大作中提到】
: 我直接emacs一个快捷键,paste出来for loop
: 从来不用这种高级的东西。
:
:
: 同情要对付这种坑的程序员
:

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。