由买买提看人间百态

topics

全部话题 - 话题: scope
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)
m*******e
发帖数: 14
1
大家好,
我在ubuntu11.10上安装opencv2.3.1a,使用make命令后,出现错误如下:
*****************
/usr/OpenCV-2.3.1/OpenCV-2.3.1/modules/highgui/src/cap_ffmpeg_impl.hpp:921:
10: error: ‘AVERROR_NOFMT’ was not declared in this scope
/usr/OpenCV-2.3.1/OpenCV-2.3.1/modules/highgui/src/cap_ffmpeg_impl.hpp:923:
10: error: ‘AVERROR_IO’ was not declared in this scope
/usr/OpenCV-2.3.1/OpenCV-2.3.1/modules/highgui/src/cap_ffmpeg_impl.hpp:925:
10: error: ‘AVERROR_NOMEM’ was not declared in this scope
*****************
好像是ffmpeg的问题,... 阅读全帖
z***e
发帖数: 5393
2
来自主题: Programming版 - 问问C++的diamond problem
他是问D.foo()怎么调A.foo();
我一开始就说用scope operator(那个::是不是叫scope operator?)?他就问不用
scope operator怎么搞,我说那就只能改B和C了,他又说不能动A\B\C...然后我就晕菜
了...
我怀疑电话里面communication出了问题...
X****r
发帖数: 3557
3
来自主题: Programming版 - in-class static member question
9.4.2 Static data members
2 The declaration of a static data member in its class
definition is not a definition and may be of an incomplete
type other than cv-qualified void. A definition shall be
provided for the static data member if it is used in the
program.
...
4 If a static data member is of const integral or const
enumeration type, its declaration in the class definition
can specify a constant-initializer which shall be an
integral constant expression. In that case, the m... 阅读全帖
d****p
发帖数: 685
4
That's error prone,still.
The thing is you need to pair the new/delete calls in every execution path,
really annoying. In C++, we could ensure the pointer will be released either
in local scope or in global scope. One reason I like C++ is its RAII
semantics.

Most C code I read simply follow OO principles - allocation/deallocation are
managed by a pair of functions, e.g. if there is a function alloc_matrix,
then there should be free_matrix that release all related resources, and
there is usually... 阅读全帖
d****n
发帖数: 1637
5
来自主题: Programming版 - 很大的C++程序怎么去读啊?
Assume that,
1. your part is in relative smaller scope.
2. the global is too big to read
My suggestion,
pull out any api&data type in your scope only when you can't figure out
what it is and in/out format.
text search the prototype in the global, at any higher level, once you
understand or partially confident with it. STOP. go back your scope,
solve the next one.
Sure, if you you got a tutor that will help you alot.
c****e
发帖数: 1453
6
来自主题: Programming版 - server side language 统计,java:.Net = 1:5
这个报道也是听风就是雨。HPC一直是个很小的team, 凭他们做hadoop替代品有点吹牛
的成分。他们本来就是搞几个500强的cluster,挣个PR.后来发现市场太小了,就撤了。
真正处理大数据的部门还是用Cosmos, SCOPE。除了Google,不觉的别的公司会超过微软
的数据量。这个产品本身还是很成功的。但是天下大势变化很快,hadoop气候已经成了
。Server要推BI的solution,支持hadoop是必须的。
最终,Cosmos, SCOPE会不会成为微软的一个单独产品,还很难说。
微软这两年确实有点赶不上趟。不完全是技术原因,商业模式的变化(从软件到
service)导致很多内部的产品找不准市场定位。比如这个Cosmos/SCOPE当solution卖,
除了walmart这样的大头一般公司买不起。以微软的商业模式,也不能开源挣服务费。
比较尴尬。现在微软所有的软件基本都转到云上了,SB算是回过味来了。
上次忘了提maven的对应产品,.net有Nuget.可以建自己的package server,和CI集成都
没问题。
x*j
发帖数: 271
7
有点无知者无畏了。我就是做SCOPE的。HIVE真心不行。SCOPE这一套不敢说性能第一,
秒杀HADOOP还是分分秒秒的事。易用性和可扩展性,用过的人应该都知道。现在的HIVE
PIG在扩展性上就是渣。写个UDF还要先DDL注册才能用都是什么年代的了。SCOPE里面
对C#的integration我真心在BIGDATA的世界里没有见过第二家。我不是吓吹牛用过的人
都知道。
x*j
发帖数: 271
8
有点无知者无畏了。我就是做SCOPE的。HIVE真心不行。SCOPE这一套不敢说性能第一,
秒杀HADOOP还是分分秒秒的事。易用性和可扩展性,用过的人应该都知道。现在的HIVE
PIG在扩展性上就是渣。写个UDF还要先DDL注册才能用都是什么年代的了。SCOPE里面
对C#的integration我真心在BIGDATA的世界里没有见过第二家。我不是吓吹牛用过的人
都知道。
z****e
发帖数: 54598
9
来自主题: Programming版 - 春运火车票2个方案比较
again
回头把scope先定义一下
否则blablabla很烦
跟阿三一样,一堆bla
没有point,不知道丫的要干嘛
先分析问题,其次定义scope,最后再考虑implementation
否则做什么都是空的
先告诉别人,你要干什么
是做一个website呢还是做一个票的内存处理
我同意条条大路通罗马
问题是,丫貌似不是朝着罗马去的
楼主有一个很不错的开头,貌似打算告诉我们scope和背景
但是下面一段bla了半天之后,又不知道转哪里去了
swjtuer已经给出了项目背景
请你贴出来ok?
啥项目背景,目标,范围什么都不知道
上来就solution,解决啥?
d****n
发帖数: 1241
10
static和const是不同的。
static是一个storage specifier, 表示两层含义,(1)linkage, (2) storage
duration. 例如有类似下面的定义:
/* global scope */
static int g; /* g的visibility是file-scope */
那么表示变量g的linkage是internal的,在你所定义的文件外是不可见的;其次g具有
static duration storage, 意思是说,g只能在程序开始的时候,初始化一次,同时,
g这个对象在程序运行的过程中都是存在的.
你也可以在一个函数里定义一个static的变量,在这种情况下,这个static变量是
function-scope的。
const是type qualifier, 表示只读性。比如
const int g;
那么g所代表的对象是只读的,对g进行任何形式的写操作(比如直接写或者通过指针)
是undefined behavior.
w*s
发帖数: 7227
11
来自主题: Programming版 - Angular ng-include not working
statusApp.js
var app = angular.module('HelloModule', []);
app.controller('HelloCtrl', function($scope, HelloService) {
//$scope.countries = [{code : "US", name : "United States",
population : "11223344"}];
HelloService.getJson().then(function(result) {
$scope.countries = result;
}, function(error) {
alert("Error");
} );
});
app.factory('HelloService', function($http, $q) {
return {
getJson: function() {
var deferred = $q.defer();
var br... 阅读全帖
w*s
发帖数: 7227
12
my js
var app = angular.module('RedirectLocation', []);
app.controller('MainCtrl', function($scope, $location) {
$scope.name = 'World';
$scope.go = function() {
//$window.location.href = 'http://www.google.com';
$location.path('/systemStatus');
//$location.url('systemStatus');
}
});
s******o
发帖数: 298
13
来自主题: Astronomy版 - Small Wonder: The Meade ETX-60 AT[zz]
by Rod Mollise (R******[email protected])
Well, I just couldn't resist the allure of an ETX-60, Meade's little-bitty
goto scope, for $197.00 US$ (from the U.S. retailer, Wal-Mart). This small
scope actually has more attraction for me than its bigger and considerably
more expensive brother, the ETX-90, since a wide-field portable scope is more
useful for my deep sky touring than a (very) long focal length one like the
90 MCT. What are my impressions of the little thing after a first session
under the nig
S*A
发帖数: 7142
14
来自主题: Astronomy版 - 买了个天文望远镜 :)
You should get a 7x50 or 10x50 astronomy binoculars.
Even if you buy more telescope later. You are still going to use
the binoculars.
Don't rush into buying telescope. Hang out with your local
astronomy club first. Try to see the objects in other's scope.
Find out what you like to use and carry. Don't buy scope if
you can't recognized most of the sky yet.
First scope I recommend Orion XT8. About $350. 8 inch should be
able to keep you going for a long while. You should able see
all of the Messie
J********h
发帖数: 93
15
今天收到一编辑Email,如果在这个领域,想写这方面文章的童鞋,请发站内信,我回信
推荐下你。
Dear Dr. *,
I hope this email finds you well. Since you are an expert in the field, I
would like to introduce myself as the Editor of the imminent Future Science
Group publication, the International Journal of Pharmacokinetics.
Launching in the coming months, the International Journal of
Pharmacokinetics encompasses the full scope of this interdisciplinary field
and, where relevant, features insights from related areas of endeavour, such
as pharmac... 阅读全帖
T******T
发帖数: 3066
16
来自主题: EE版 - 请问哪里可以修示波器?
that's not an old scope, you should have seen my old scope...lol..
you can get the same 500MHz, 1Gas/s, 4 channel scope from Tek for < $5000.
Agilent stuff's good, but too expensive.
T******T
发帖数: 3066
17
Probably need to determine the noise source 1st before your act. Is it due
to crosstalk between your high switching digital signals and or is it really
power supply related due to the high switching current sourced from the
supply as your suspicion indicates ?
If the noise indeed manifests itself on power and ground then decoupling
near the power supply would help to mitigate it. If your glitch is on the
signal only, then decoupling the supply won't help, and instead you should
try to look at p... 阅读全帖
m******r
发帖数: 3
18
来自主题: Engineering版 - Staff/senior R&D Engineer J&J 苏州招聘
Contact information:
Susan Shu
舒婷婷
[email protected]
/* */
T +86 0512 88859133-120
Randstad
Room 2407-2408, Suzhou Sovereign Building,
No.8 Suzhou Avenue West
Suzhou Industrial Park, China,210521
苏州市苏州大道西8号中银惠龙大厦2407-2408室
POSITION INFORMATION/职位信息
Title/职位: Staff R&D Engineer or Senior Staff R&D Engineer
Department/部门: DePuy Synthes R&D
Location/地点: Suzhou, Jiangsu Province, P.R. China
Reports to (Title)/ 汇报对象 (职位): R&D Manager or Director
SCOPE OF THE ... 阅读全帖
b*******7
发帖数: 82
19
来自主题: Environmental版 - One position - System Project Engineer
以下是一个猎头发来的消息,在Minnesota.
如果有兴趣请站内留言,留下电话,EMAIL 我转发给猎头。
Responsible for design wastewater treatment systems (including SBR,
Oxidation Ditch, Fixed Film Media, and DAF systems) following receipt of
purchase order.
Prepare approval submittals information, certified drawings, and O&M Manuals
consistent with the project plans and specifications and scope of supply.
Major Areas of Responsibility:
Project Engineering
Read and understand customer project drawings including electrical
schematics, mecha... 阅读全帖
m******r
发帖数: 3
20
【 以下文字转载自 JobHunting 讨论区 】
发信人: mouseear (mouseear), 信区: JobHunting
标 题: Staff/senior R&D Engineer J&J 苏州招聘
发信站: BBS 未名空间站 (Thu May 7 13:06:56 2015, 美东)
Contact information:
Susan Shu
舒婷婷
[email protected]
/* */
T +86 0512 88859133-120
Randstad
Room 2407-2408, Suzhou Sovereign Building,
No.8 Suzhou Avenue West
Suzhou Industrial Park, China,210521
苏州市苏州大道西8号中银惠龙大厦2407-2408室
POSITION INFORMATION/职位信息
Title/职位: Staff R&D Engineer or Senior Staff R&D Engineer
Department/部门: ... 阅读全帖
J********h
发帖数: 93
21
今天收到一编辑Email,如果在这个领域,想写这方面文章的童鞋,请发站内信,我回信
推荐下你。
Dear Dr. X,
I hope this email finds you well. Since you are an expert in the field, I
would like to introduce myself as the Editor of the imminent Future Science
Group publication, the International Journal of Pharmacokinetics.
Launching in the coming months, the International Journal of
Pharmacokinetics encompasses the full scope of this interdisciplinary field
and, where relevant, features insights from related areas of endeavour, such
as pharmac... 阅读全帖
o****o
发帖数: 8077
22
来自主题: Statistics版 - SAS Technical Interview Questions
ZT from :
http://www.globalstatements.com/sas/jobs/technicalinterview.htm
*****************************************
SAS Technical Interview Questions
You can go into a SAS interview with more confidence if you know that you
are prepared to respond to the kind of technical questions that an
interviewer might ask you. I do not provide the specific answers here, both
because these questions can be asked in a variety of ways and because it is
not my objective to help those who have little actual int... 阅读全帖
s**********8
发帖数: 25265
23
来自主题: MedicalDevice版 - FDA Modernization Act of 1997
Overview of FDA Modernization Act of 1997, Medical Device Provisions
CDRH FDA Modernization Act of 1997 Page1
Foreword
Preface
Introduction
Investigational Device Exemptions
Premarket Approval
Premarket Notification [510(k)]
Device Classification
Device Labeling
Device Tracking
Postmarketing Surveillance
Global Harmonization
Medical Device Reporting and Recall Reports
Establishment Registration
Device Standards
Other Sections Related to Medical Devices
Foreword
The Center for Devices and Radiolo... 阅读全帖
s********o
发帖数: 3319
24
【 以下文字转载自 MedicalCareer 讨论区 】
发信人: herby (小臭宝), 信区: MedicalCareer
标 题: [合集] 你有生以来做出的最佳临床诊断是什么?
发信站: BBS 未名空间站 (Thu Jun 2 00:01:26 2011, 美东)
☆─────────────────────────────────────☆
Aplusplus (Hakuna Matata) 于 (Sun Mar 27 11:11:49 2011, 美东) 提到:
首先我申明,我放弃我的ignore list, 欢迎所有ID参加。
每个医生护士或者其他相关人员, 无论在中国还是美国, 肯定都有一些case刻骨铭心
。 请大家把你印象最深的一例写出来, 与大家分享。 比方说, 清华男被鉈杀案,
那个中国来的护士就是诊断的关键, 相信本例就是她一辈子也忘不了的诊断。
我觉得这样的讨论有助于大家提高学医热情,丰富医学知识,开拓临床思维, 间接帮
助考版医生复习,准备CS,和 interview. 你要是能从中挑一个case让你PD
impressed,我想我的... 阅读全帖
s********o
发帖数: 3319
25
【 以下文字转载自 MedicalCareer 讨论区 】
发信人: herby (小臭宝), 信区: MedicalCareer
标 题: [合集] 你有生以来做出的最佳临床诊断是什么?
发信站: BBS 未名空间站 (Thu Jun 2 00:01:26 2011, 美东)
☆─────────────────────────────────────☆
Aplusplus (Hakuna Matata) 于 (Sun Mar 27 11:11:49 2011, 美东) 提到:
首先我申明,我放弃我的ignore list, 欢迎所有ID参加。
每个医生护士或者其他相关人员, 无论在中国还是美国, 肯定都有一些case刻骨铭心
。 请大家把你印象最深的一例写出来, 与大家分享。 比方说, 清华男被鉈杀案,
那个中国来的护士就是诊断的关键, 相信本例就是她一辈子也忘不了的诊断。
我觉得这样的讨论有助于大家提高学医热情,丰富医学知识,开拓临床思维, 间接帮
助考版医生复习,准备CS,和 interview. 你要是能从中挑一个case让你PD
impressed,我想我的... 阅读全帖
l*****w
发帖数: 344
26
来自主题: Medicalpractice版 - 信教跟精神病的差別
one more cent
醫學 is only 客觀的科學 within its defined scope.
so a lot of what you described, like "如果一個人老相信沒證據的事,常常聽到有
人直接對他腦子說話,也經常對著空氣禱告,有時還會 大呼大喊"
if people do it as religious practice, they would not be considered as 精神病
because these are allowed and are considered normal by the society,
otherwise it may be considered as abnormality and maybe treated.
The definition of normal behavior is not within the scope of medicine. It is
relative and it is within the scope of 社会 &文化 etc.
If people are do... 阅读全帖
s**********t
发帖数: 217
27
来自主题: Medicalpractice版 - 用 ENT endosopy 之前会消毒吗?
The answer is yes. It will take about a hour to clean the scope. But it is
different from the methods cleaning the GI scope or bronchoscope which needs
special machine. For the NPL scope, you just dip into the cleaning solution
and sit for at least one hour.
p*****n
发帖数: 97
28
这位同志只是个验光师,刚推出一个议案要让验光师to perform vaccinations and
surgical and non-surgical primary care procedures。广大眼科医生反对也没有用
,也已经在参议院通过了。
此人篡改法律的劲头挺大的,把美国的法律当自己家门口的黑板了,随擦随写。
上网搜索这次加州的事件,实在是没有任何非中文的谋体报道,除了一个白人至上组织
的网站提了一句。又一个主流谋体选择性集体失语。可怜的亚洲人!看来要出点大事,
才能会有动静。
http://calwatchdog.com/2013/06/17/sen-hernandez-authors-bills-t
Sen. Hernandez authors bills to benefit his optometry business
June 17, 2013
By admin
Hernandez OptometryJune 17, 2013
By John Hrabe
When he isn’t in Sacramento, state Sen. Ed Hernandez ... 阅读全帖
n****r
发帖数: 1568
29
来自主题: Medicalpractice版 - 想进入骨外的新途径, 同学们要努力
Healio
Orthopedics
SPECIALTIES
HEALIO MINUTE
ADOLESCENT MEDICINE
ALLERGY/IMMUNOLOGY
CARDIOLOGY
DERMATOLOGY
ENDOCRINOLOGY
GASTROENTEROLOGY
GERIATRIC MEDICINE
HEALTH PROFESSIONS
HEMATOLOGY/ONCOLOGY
HEPATOLOGY
INFECTIOUS DISEASE
OPHTHALMOLOGY
OPTOMETRY
ORTHOPEDICS
ORTHOTICS/PROSTHETICS
PEDIATRICS
PSYCHIATRY
RHEUMATOLOGY
SPINE SURGERY
SPORTS MEDICINE
Orthopedic assistant profession promotes policy change, recognition
Orthopedics Today, March 2014
Jason S. Mazza, MSc, OA-C, CSA, SA-C, OTC, CCRC
In a ... 阅读全帖
P*****J
发帖数: 1745
30
来自主题: Animals版 - 攒观鸟设备,高手达人请进
楼主让我来这里发表意见,实际我是外行。我和Bobolink一样,是观鸟为主,照照片一
般是记录性质的。要单纯追求好照片估计还得上DSLR+大炮。Digiscoping虽说观鸟打鸟
两者兼得,还是有不少的局限性,毕竟不是为了往芯片上成像设计的。这两个都得花不
少钱,不过这东西是一分钱一分货。所以我建议楼主哪怕得多攒会钱,也最好一次到位
。Buy once,cry once这句话还是有道理的。
楼主的视频里那个是Swarovski的spotting scope,如果你买了他家的HD80mm,其它的
观鸟望远镜就基本没啥可惦记着的了。这个镜子加上比较好的相机(比如近两年出现的
mirrorless相机),可以拍出来不错的照片(见下面连接)。我就是攒了两年的钱,才
攒够个好spotting scope的钱。货比三家,看了Kowa,Zeiss,Zen-Ray,最后选定
Swaro家的。不光是光学质量好,而且很轻,用着方便。
http://www.birdforum.net/showthread.php?t=175763
如果楼主现在钱没攒够,而且认鸟还没多久的话,我建议先花个一年的时间学认鸟。等... 阅读全帖
l*******l
发帖数: 13923
31
来自主题: Animals版 - 攒观鸟设备,高手达人请进
学习要收藏

楼主的视频里那个是Swarovski的spotting scope,如果你买了他家的HD80mm,其它的
观鸟望远镜就基本没啥可惦记着的了。这个镜子加上比较好的相机(比如近两年出现的
mirrorless相机),可以拍出来不错的照片(见下面连接)。我就是攒了两年的钱,才
攒够个好spotting scope的钱。货比三家,看了Kowa,Zeiss,Zen-Ray,最后选定
Swaro家的。不光是光学质量好,而且很轻,用着方便。
http://www.birdforum.net/showthread.php?t=175763
如果楼主现在钱没攒够,而且认鸟还没多久的话,我建议先花个一年的时间学认鸟。等
认鸟入了门,你对怎么找鸟,想拍什么鸟,对设备有什么要求估计就清楚了。到时候钱
也攒的差不多了,上DSLR+大炮还是digiscoping的选择就理性多了。
关于相机/镜头和spotting scope/相机选择,楼主可以去bird forum的相关论坛看看:
http://www.birdforum.net/forumdisplay.php?f=111
http://www.... 阅读全帖
M******a
发帖数: 6723
32
来自主题: Mod_CHN_Hist版 - 奉天兵工厂
https://wwiiafterwwii.wordpress.com/2017/04/03/mukden-arsenal-after-wwii/
Mukden Arsenal after WWII
April 3, 2017 jwh19752 Comments

(Zhang's Gate, the old entrance to Mukden Arsenal)
For people interested in Japanese firearms of WWII, the name Mukden Arsenal
is familiar. The history of the facility after Japan's defeat is less well
known. Under various names, it did survive for some time, producing an odd
mix of WWII weapons after the war's end.
(Mukden Arsenal proofmark during WWII)
Mukden an... 阅读全帖
e***y
发帖数: 1152
33
来自主题: CellularPlan版 - 捣鼓王写个详细的axon 7 review??
关于那个hotspot via vpn, 大体上我们有需要运行类似这样的脚本
iptables -t filter -F FORWARD
iptables -t nat -F POSTROUTING
iptables -t filter -I FORWARD -j ACCEPT
iptables -t nat -I POSTROUTING -j MASQUERADE
ip rule add from 192.168.42.0/24 lookup 61
ip route add default dev tun0 scope link table 61
ip route add 192.168.42.0/24 dev rndis0 scope link table 61
ip route add broadcast 255.255.255.255 dev rndis0 scope link table 61
来实现。我记得你搞过一个一键运行的widget, 可那个链接失效了, 可否再贴一次?
目前运行很麻烦, 要开terminal,然后su,再cd, 在sh。。。


: 我自己还没... 阅读全帖
w*******y
发帖数: 60932
34
BushnellElite3200 Riflescopes 4-12x40 $159.99 reg $319.99 + Free Rain
Suit
$5.00 shipping with promo code WHOLIDAY
Multicoated optics
100% waterproof/fogproof/shockproof construction
Elite Bullet-Proof Warranty
Multicoated optics coupled with the innovative Rainguardcoating ensures
maximum clarity in all field and weather conditions. These scopes have
audible and resettable 1/4-MOA click windage and elevation adjustments. Each
has an ultrastrong, dry-nitrogen filled, one-piece, hammer-forged tub... 阅读全帖
w*******y
发帖数: 60932
35
RigolNA.com has the Rigol DS1052E:
http://www.rigolna.com/products/digital-oscilloscopes/ds1000e/d
50MHz Oscilloscope for $315 shipped (+tax in OH).
This is the lowest price I've seen on this scope and it's direct from the
manufacturer's US side for quicker shipping and warranty support.
If you don't know much about scopes this has quickly become the most popular
model for hobbies due to it's great value for money and hackability.
Dave Jones on the EEVblog detailed a firmware hack that transfo... 阅读全帖
s******o
发帖数: 298
36
来自主题: _Astronomy版 - Small Wonder: The Meade ETX-60 AT[zz]
by Rod Mollise (R******[email protected])
Well, I just couldn't resist the allure of an ETX-60, Meade's little-bitty
goto scope, for $197.00 US$ (from the U.S. retailer, Wal-Mart). This small
scope actually has more attraction for me than its bigger and considerably
more expensive brother, the ETX-90, since a wide-field portable scope is more
useful for my deep sky touring than a (very) long focal length one like the
90 MCT. What are my impressions of the little thing after a first session
under the nig
S*A
发帖数: 7142
37
来自主题: _Astronomy版 - 买了个天文望远镜 :)
You should get a 7x50 or 10x50 astronomy binoculars.
Even if you buy more telescope later. You are still going to use
the binoculars.
Don't rush into buying telescope. Hang out with your local
astronomy club first. Try to see the objects in other's scope.
Find out what you like to use and carry. Don't buy scope if
you can't recognized most of the sky yet.
First scope I recommend Orion XT8. About $350. 8 inch should be
able to keep you going for a long while. You should able see
all of the Messie
c**i
发帖数: 6973
38
来自主题: ChinaNews版 - Hillary
(1) 伍德瑟姆, 美中关系将是克林顿亚洲之行重点. VOA Chinese, Oct. 27, 2010.
http://www.voanews.com/chinese/news/20101027-US-Clinton-Asia-105913233.html
("美国国务卿希拉里·克林顿星期三开始为期两周的亚洲之行,她将前往越南、柬埔寨
、马来西亚、巴布亚新几内亚、新西兰、澳大利亚和中国。克林顿此行预期将加强美国
与其亚洲盟友之间的关系,并寻求平衡中国在该地区的影响。")
My comment:
(a) Until days ago, Hillary's itinerary does not include China, which was
added in the last minute--and to Hainan to meet only with 戴秉国, China's
foreign policy czar but not in the politburo. Sentence 2 of the quote says
it all.
(b) The above is tra... 阅读全帖
c**i
发帖数: 6973
39
来自主题: Military版 - Senkaku Islands Remain Bone of Contention
(1)
(a) 希拉里戴秉国海南非正式会晤. BBC Chinese, Oct. 30, 2010.
http://www.bbc.co.uk/zhongwen/simp/world/2010/10/101030_clinton_dai_meet.shtml
("在 [河内] 与杨洁篪的会面中,克林顿 * * * 说美国愿意做中日的中间人排解纠纷
。* * * 杨洁篪 * * * 没有承诺接受美国当调停人")
(b) 克林顿:东亚海洋争端应按国际法解决. BBC Chinese, Oct. 30, 2010.
http://www.bbc.co.uk/zhongwen/simp/world/2010/10/101030_china_japan_clinton.shtml
("克林顿国务卿星期六在河内出席东亚峰会期间会晤中国外长杨洁篪时,以及稍后在海
南三亚会晤国务委员戴秉国期间,向中国表示,美国在钓鱼岛(日本称尖阁列岛)问题上
无意干涉任何国家的主权,但是,由于美国要遵守美日安保条约,她愿意与中日外长举
行三方会谈,商讨钓鱼岛争端")
(2) 美提议美中日会谈解决钓鱼岛争端. VOA ... 阅读全帖
l*****7
发帖数: 8463
40
来自主题: Military版 - 造假: 美国第一!!! 哈哈
http://www.gwu.edu/~nsarchiv/NSAEBB/NSAEBB80/
home | about | documents | news | publications | FOIA | research |
internships | search | donate | mailing list
Iraq and Weapons of Mass Destruction
National Security Archive Electronic Briefing Book No. 80
Updated - February 11, 2004
Edited by Jeffrey Richelson
Originally posted December 20, 2002
Previously updated February 26, 2003
Documents - Press release - Further reading
Between Iraq's invasion of Kuwait in August 1990, and the commencement of... 阅读全帖
w**********2
发帖数: 764
41
http://www.nytimes.com/2012/04/29/opinion/sunday/terrorist-plot
Terrorist Plots, Hatched by the F.B.I.
By DAVID K. SHIPLER
Published: April 28, 2012
THE United States has been narrowly saved from lethal terrorist plots in
recent years — or so it has seemed. A would-be suicide bomber was
intercepted on his way to the Capitol; a scheme to bomb synagogues and shoot
Stinger missiles at military aircraft was developed by men in Newburgh, N.Y
.; and a fanciful idea to fly explosive-laden model planes ... 阅读全帖
t**a
发帖数: 442
42
1. Purpose
After the introduction of SCA 5 by State Senator EdHernandez(D), the bill
has been read in various committees and the senate floor as well. In this
process, a few bill analysis documents were published. By commenting on
these documents, people will get a more complete picture of the issues at
hand. A thorough debate on relevant issue helps people cast their votes
better reflecting their common core interests.
The published bill analysis can be found online at
(deleted to avoid deletio... 阅读全帖
m****a
发帖数: 1257
43
现在这群政府的傻叉们为了political correctness,用词太可笑了:
4. Will undocumented immigrants be eligible for full-scope Medi-Cal?
An immigrant who meets all eligibility requirements, but is not in a
satisfactory immigration status for full scope Medi-Cal is entitled to
emergency and pregnancy-related services and, when needed, state-funded long
-term care.
"undocumented immigrants"??
"not in a satisfactory immigration status"??
我靠。这群非法移民的非法身份成了不可以说的词了?还TMD的 "not satisfactory".
赤裸裸的舔啊。
g***j
发帖数: 40861
44
来自主题: Military版 - 美中西部夏季流感爆发
http://www.cnn.com/2014/09/07/health/respiratory-virus-midwest/
(CNN) -- A respiratory virus is sending hundreds of children to hospitals in
Missouri and possibly throughout the Midwest and beyond, officials say.
The unusually high number of hospitalizations reported now could be "just
the tip of the iceberg in terms of severe cases," said Mark Pallansch, a
virologist and director of the Centers for Disease Control and Prevention's
Division of Viral Diseases.
"We're in the middle of looking into... 阅读全帖
G*******n
发帖数: 6889
45
来自主题: Military版 - 高卢鸡总统也被NSA偷窥了
krauts帮NSA偷窥高卢鸡,高卢鸡偷偷联络krauts反对党领导人
http://www.wsj.com/articles/hollande-calls-defense-cabinet-meet
PARIS—French President François Hollande plans to convene top defense
advisers on Wednesday after WikiLeaks published documents that purportedly
show that the U.S. spied on him and his two predecessors.
The six documents, also published late Tuesday by two French publications,
describe purported U.S. surveillance of internal deliberations and
conversations of Mr. Hollande and former French pr... 阅读全帖
t******e
发帖数: 2504
46
如果按GDP计算,应该不包括。 如果包括进去了,那是GNI。
GDP can be contrasted with gross national product (GNP) or, as it is now
known, gross national income (GNI). The difference is that GDP defines its
scope according to location, while GNI defines its scope according to
ownership.
w*********r
发帖数: 42116
47
来自主题: Military版 - 民间单兵防御,武器基本要求
semi-automatic rifle + bump fire stock,很难买到全自动的,只能靠半自动加撞火
枪托来弥补。撞火枪托可以选择ON或者OFF。可以根据情况选择。
bipod,保证设计的稳定性和准确度,千万别琢磨着站姿扫射,浪费子弹,还暴露自己。
scope red dot combo,一上一下的可以,看着酷点儿,就买Flip to Side Magnifier
的。用铁瞄瞄不准,用scope你没法打移动目标,所有来个组合,保证你能不瞎打。
drum magazine,保证能有持续火力。
众将按这个要求去准备吧。如果想把全家都组织起来的话,一定要保证使用同一子弹。
C******y
发帖数: 3249
48
作为敌国的一部分,美国公民可以由美国武装力量直接处死。推测处死张是美国军方,
NSA,CIA 多方的联合行动。
这样的处死不需要任何审判,不需要对媒体公布细节,不需要承认或否认。
目前还不清楚处死的细节,有未经证实的消息说,张跳楼后,看到有两个戴着黑色墨镜
的亚裔从楼后门匆匆离去。
Lawyers for the Obama administration, arguing for their ability to kill an
American citizen without trial in Yemen, contended that the protection of US
citizenship was effectively removed by a key congressional act that blessed
a global war against al-Qaida.
Known as the Authorization to Use Military Force (AUMF), the broad and
controversial 2001 law playe... 阅读全帖
d******w
发帖数: 2213
49
你们知不知道微软也有人曾经为了工作review这些乱七八糟的事情跳楼?谁现在记得这
事?关于业绩的那些事,我可以肯定的说,一个公司里有好多不努力工作的没有被PIP
,努力工作的反而被P I P。被搞了,基本上是得罪吗内急了。唯一可能的办法就是马
内机的老板支持你。问题是,如果你能让马内机的老板支持你,你怎么可能会得罪吗内
急。整人手段太多了。你技术好,说你交流不行。你技术好交流好,说你scope不够大
。你scope有了,说你做的不够深入。这种情况唯一能做的就是离开其实没什么大不了
H****r
发帖数: 16240
50
又去看了A老兄的文
发现我记性太差,再次把tier几理解成各个单位的战斗能力问题了……
按照他的解释——“光猜就知道多半是被这个tier 2给理解成2流了。tier 1的一个重
要属性是管的范围是全球”
“像普通印章和FR啥的是tier 2不能简单理解为2流。”
“事实上很关键的一点是有没有支援单位”
The modern approach to SOF coalition warfare involves the designation of a
Lead Nation for a given operation or campaign. That nation provides a major
force contribution, as well as the nucleus of the command and control, staff
and support infrastructure. The Lead Nation is also expected to provide or
assist in the provision of key capabilities, ... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)