由买买提看人间百态

topics

全部话题 - 话题: boundaries
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
T*******y
发帖数: 6523
1
I told you that you had no boundaries, nor standard on 善恶, neither on
small things, nor on big things.
"他说过的,我不觉得他会在意"
That's what I meant that you never respect others' boundaries. It's okay
that you say your own things, and others say others' things, but when you
mention others' personal lives without their consent while assuming that it'
s okay with others, you are crossing their boundaries.
"当事人如果有意见,我道歉."
A dent is a dent, it's not always amendable to be new.
"既然玩,就真诚点,不真诚,换不到真心的."
To add o... 阅读全帖
p****e
发帖数: 2
2
理论上每个模型确实存在一个最优的参数,这个参数一般是由你样本来自的概率分布决
定的。实际中那个概率分布没法知道。于是我们还是只能通过cross validation来获得。
至于选哪种核的问题,还是跟那个概率分布有关。rbf核的好处是decision boundary可
以逼近任意连续函数,所以适应性很广(bias偏小)。但是这种核得到的boundary较复
杂(variance较大),如果decision boundary能被低阶多项式甚至线性函数刻画时,低
阶的多项式核效果会更好。到底哪种核更合适,还是只能由cross validation知道。
B****x
发帖数: 17
3
ACM Paris Kanellakis Theory and Practice Award奖励对计算机应用有重大影响的理论
发现. http://awards.acm.org/kanellakis/
2008
Cortes, Corinna
Vapnik, Vladimir
Paris Kanellakis Theory and Practice Award
2008 – Vladimir Vapnik
Fellow of NEC Laboratories/Columbia University (2008)
Citation
For the development of Support Vector Machines, a highly effective
algorithm for classification and related machine learning problems.
Full Citation
In their 1995 paper titled "Support vector networks," Cortes and Vapnik
introduced ... 阅读全帖
p********n
发帖数: 11
4
来自主题: Database版 - sql的2个问题 (转载)
Here is another solution using T-SQL:
declare @acct as table (AcctNbr smallint, DayNbr smallint, Status char(1))
insert @acct values
(1, 3, 'A'),(1, 6, 'B'), (1, 11, 'C'), (1, 15, 'D'),
(2, 2, 'A'),(2, 7, 'B'), (2, 13, 'C'), (2, 18, 'D')
--select * from @acct
;with Boundary as (
select MIN(DayNbr) min_, MAX(DayNbr) max_ from @acct
),
AcctBoundary as (
select AcctNbr, MIN(DayNbr) min_, MAX(DayNbr) max_ from @acct group by
AcctNbr
),
tally AS (
SELECT cast(min_ as smallint) as n ... 阅读全帖
O*******d
发帖数: 20343
5
来自主题: Programming版 - random number generator in C++
These lines have problem. You will not get random numbers between lowest
and highest. You will, instead, get random numbers between lowest inclusive
and highest+1 exclusive. Take example highest = 3, lowest = 2, then range
is 2. The lower boundary of random number is 2.0 + 2.0 * 0.0 = 2.0. The
upper boundary of random number is 2.0 + 2.0 * 1.0 = 4.0. Because rand()/(
RAND_MAX + 1.0) can never be 1.0, the random numbers generated have upper
boundary of 4.0 exclusive.
int range=(highest-low
l*******G
发帖数: 1191
6
来自主题: Programming版 - 这个PERL表达式干啥的?

m! !o means to search the thing in between ! ! and compile once
[1] (?: ) Means to group but not catch the things found into
$1,$2,$3 etc internal expressions
[2] ld\w+p\b Means to match ld*p ended by a word boundary , where
* is any one or more char of a-z,A-Z,0-9 or _
[3] m\w+sel\b Means to match m*sel followed by a word boundary where
* is same as above,
\b means word boundary
[4] aaa, bbb, ccc are plain string of aaa, bbb, ccc
the who... 阅读全帖
f********x
发帖数: 99
7
The world beyond batch: Streaming 101: A high-level tour of modern data-
processing concept
http://radar.oreilly.com/2015/08/the-world-beyond-batch-streami
by Tyler Akidau August 5, 2015
Editor’s note: This is the first post in a two-part series about the
evolution of data processing, with a focus on streaming systems, unbounded
data sets, and the future of big data.
Streaming data processing is a big deal in big data these days, and for good
reasons. Amongst them:
Businesses crave ever more tim... 阅读全帖
s*********n
发帖数: 8
8
来自主题: ChemEng版 - summer intern in CFD
NOTE: To submit an application please go to www.hp.com, navigate to the "
Jobs" link in the lower right side of the page and follow instructions to
submit your application for job #931219. Alternatively use the link http://www8.hp.com/us/en/jobsathp/index.html to get to the "Jobs" page directly.
Job description
The incumbent will assist the HP engineers to develop a volume of fluid (VOF
) and adaptive mesh refinement (AMR) based three-dimensional multiphase flow
solver. The Cartesian grid is u... 阅读全帖
d****a
发帖数: 23
9
It is an 3D elliptic problem with periodic boundary conditions in lateral
boundaries and fixed top and bottom boundary condtions. After discretizing
by finite difference method, I get a big coefficient matrix with 39 nonzero
elements in each row. The matrix has dimension about 75,0000. Now the
problem is to solve the sparse linear system. However, this matrix elements
have a large numerical range, spaning 10 orders of magnitude. It is
nonsymmetric, not diagonally dominant, and not positive defin
l*******n
发帖数: 344
10
来自主题: Computation版 - how to undo triangulation?
second Majia:
Final result: the nodes belong to boundary have one and only one connect to
it. so you start from any boundary node say s1, n1=line(s1,1) will be next
node, go n2=line(n1,1),go line(n2,1)...until come back to s1.
This is a very interesting problem. Actually, it is used by me as a
interviews question. Nobody could give a good answer. If you understand
boundary means one side have something, another side is empty, solution is
obvious.
l*******n
发帖数: 344
11
来自主题: Computation版 - how to undo triangulation?
second Majia:
Final result: the nodes belong to boundary have one and only one connect to
it. so you start from any boundary node say s1, n1=line(s1,1) will be next
node, go n2=line(n1,1),go line(n2,1)...until come back to s1.
This is a very interesting problem. Actually, it is used by me as a
interviews question. Nobody could give a good answer. If you understand
boundary means one side have something, another side is empty, solution is
obvious.
y*********d
发帖数: 1013
12
来自主题: GeoSpace版 - 如何在ENVI里面用SHAPEFILE做MASK?
我的BOUNDARY文件是从SHAPEFILE文件转的RASTER文件,用这个RASTER文件做MASK去
RESIZE LANDSAT IMAGE,可是位置对不上,两个文件在ENVI里面可以LINKED,所以说明
是在一个IMAGE里面,但BOUNDARY应该位于IMAGE的右半部分,但现在在左半部分,有什
么方法可以移动吗,让BOUNDARY MASK在对的地方?
不知道自己说清楚了没,谢谢大家了....
B********e
发帖数: 10014
13
来自主题: Mathematics版 - proof need help
a bounded nice domain \Omega in R^N, n is the normal unit vector at boundary;
a vector function q with N components satisfying q\cdot n=0;
a scalor function f on \Omega satisfying f=0 at boundary;
show that q\cdot grad(f)=0 at boundary.
thanks!
R********n
发帖数: 519
14
来自主题: Mathematics版 - 请问一个几何问题
谢谢~~对,应该assume M没有boundary,或者先不考虑close to boundary的情况
我想Tubular neighborhood theorem的成立也是没有考虑boundary的case?
因为T.N.T.只是对close to M的points成立,可以假设噪声e的variance
很小,或者它的support就在一个很小的ball里面。比如,points y=x+e都几乎
属于M的tubular neighborhood

a
doubt
l******r
发帖数: 18699
15
实际上eigenfunctions都是属于无穷次连续可导的空间的,
虽然我们考虑的是4阶微分方程,可是这个4阶方程加上boundary condition刚刚吻合2
阶sobolev空间。一般来说2m阶微分方程加上类似的boundary condition刚好吻合m阶
sobolev space,用的是integration by parts.我越来越认为这是一个research topic
,其答案不是一两句话能说的清楚的。要想给出完整解答,恐怕得写一个20页的paper
才行。下面是一个背景paper,其中讨论的是这里面q(t)=1的情形,发在journal of
approximation上面。
Boundary Effects on Convergence for Tikhonov Regularization (by FLORENCIO I.
UTRERAS). JOURNAL OF APPROXIMATION THEORY 54, 235-249 (1988)
w*********h
发帖数: 664
16
我也收到猎头的电话了
此人联系方式是
Ryan Urban
Work: 732-447-1232 E-mail: r****[email protected]
具体内容如下
FEA Engineer Job Description
Looking for a development engineer to perform advanced finite element analys
is for solution of complex structural problems related to development of eme
rgency slide systems.
This individual acts as the primary FEA analyst for the company, therefore r
equiring a very solid understanding of FEA functions, such as modelling, mes
hing, element limitations, setting of boundary conditions,... 阅读全帖
s*********n
发帖数: 8
17
来自主题: ME版 - summer intern in CFD
NOTE: To submit an application please go to www.hp.com, navigate to the "
Jobs" link in the lower right side of the page and follow instructions to
submit your application for job #931219. Alternatively use the link
http://www8.hp.com/us/en/jobsathp/index.html to get to the "Jobs" page directly.
Job description
The incumbent will assist the HP engineers to develop a volume of fluid (VOF
) and adaptive mesh refinement (AMR) based three-dimensional multiphase flow
solver. The Cartesian grid is u... 阅读全帖
c****e
发帖数: 2097
18
the stupid somebody happens to be einstein, i believe.
well, if the universe is closed (in some way of foliating by spacelike
hypersurfaces), then it simply does not have a boundary.
if it's asymptotically flat or something else, there might be a asymptotic
or conformal boundary, but again, there isn't a outside.
the blackhole has a horizon. in that sense there's a outside. but there's
no singularity at the horizon. coordinates do not invent new spaces or
boundaries. your understanding is not se
s*****u
发帖数: 164
19
来自主题: Physics版 - 还是说说香蕉球是咋回事吧
http://en.wikipedia.org/wiki/Magnus_effect
When a body (such as a sphere or circular cylinder) is spinning in a viscous
fluid, it creates a boundary layer around itself, and the boundary layer
induces a more widespread circular motion of the fluid. If the body is
moving through the fluid with a velocity V, the velocity of the thin layer
of fluid close to the body is a little greater than V on the forward-moving
side and a little less than V on the backward-moving side. This is because
the induce... 阅读全帖

发帖数: 1
20
来自主题: Physics版 - QUANTUM SPACE ELEMENTS (QSE)
QUANTUM SPACE ELEMENTS (QSE)
INTRODUCTION
This is a non-mathematical proposal introducing a cosmological model that is
cyclic, deterministic and infinity-free. For the purpose of achieving this
objective a number of new concepts are introduced. The framework of this
proposal is structured over a number of assumptions, leading to various
considerations of cosmological concerns. Furthermore, verification methods
are suggested of both, observational and mathematical nature.
ASSUMPTIONS
Space is dis... 阅读全帖
n****e
发帖数: 629
21
来自主题: Quant版 - A martingale question
This is a nice solution and should be marked.
我前几天胡思乱想也考虑过这道题。事实上有几种情况:
1.如果是random walk(discrete), 那么给定boundary A,B 期望stopping time?
2.如果是biased,往上走概率p,那么给定boundary A,B 期望stopping time?
3.如果改成brownian motion(with/without drift) 那么给定boundary A,B 期望
stopping time?
如果把A->\infty, 就是面试很常见的题了。
都可以用martingale来解。先放在这里大家讨论一下,hehe

B)
W*****k
发帖数: 158
22
来自主题: Quant版 - 问个题,CIR process hitting zero
看karlin&taylor的第二卷 15章
讲如何通过计算expected time to boundary和其他一些quantity来刻画boundary prop
erty
0点对符合feller condition的CIR过程是entrace boundary

:(
w******n
发帖数: 645
23
来自主题: Quant版 - 一道面试题 求解
This one should be solved by PDE approach
There is a theorem called reflection principle in PDE. If V(t,s) is a option
price satisfying B-S PDE, then let a=1-2r/sig^2, where r is interest rate
and sig is volatility, we will have (s/B)^a*V(t, B^2/s) also satisfies B-S
PDE. Here B is constant, which can be our barrier value. You can verify this
easily.
If interest rate is 0, we get a=1, we can verify that (s/B)*V(t,B^2/s) still
satisfies B-S PDE.
Now for up-and-out put option, it's value V(t,s) wi... 阅读全帖
b***n
发帖数: 6
24

Yes, Casimir effect can be described by square well. Suppose
the plane wave solutions are restricted by the boundary
condition, so only some of them survive. The lost zero
energy
will give a force, if it changes with changing the boundary
condition.
Of course, if the boundary is not a square well, other
solutions
other than plane waves should be considered. But I don't
think
the original problem has anything to do with this. It is a
'1D infinite harmonic oscillator', what else can it be????
Num
w***t
发帖数: 96
25
来自主题: Science版 - 一个数学题
that's trivial la, since you started from an infinite small triangle abc
inside the curve. enlarge it or move it, it will touch the boundary at one
point. denote it by A. construct a equilateral triangle Axy inside abc.
enlarge Axy with A fixed, it will touch the boundary at another point,
denoted it by B. construct an equilateral triangle ABC inside Axy.
ABC is contained in Axy, contained in abc. it remains in the curve, with
AB on the boundary. quite obvious, and it is strict la.
j*****e
发帖数: 182
26
来自主题: Statistics版 - linear regression的时候
Actually, if you are sure that X and Y are linearly related, the optimal way
to estimate the model parameter is to measure Y at X=lower boundary and X=
upper boundary (The proportions of X at low and upper boundary are equal).
This is a classical result in optimal experimental design.
However, if the relationship between Y and X are not linear, you will be in
deep trouble for having a design like this. There are ways to allocate the
design points for quadratic models. Please refer to a response
p********a
发帖数: 5352
27
☆─────────────────────────────────────☆
cici (full house) 于 (Mon Nov 7 08:33:47 2011, 美东) 提到:
对于logistic regression
log(pi/1-pi)=b0+b1x1+b2x2
我现在已知independent variables和response variable{log(pi/1-pi)}
我要怎么做才能把参数b0,b1,b2 fit出来?非常感谢
☆─────────────────────────────────────☆
sleephare (I+don't+know.) 于 (Mon Nov 7 14:16:38 2011, 美东) 提到:
SAS, R?

☆─────────────────────────────────────☆
cici (full house) 于 (Mon Nov 7 16:19:05 2011, 美东) 提到:
R,thanks
☆────────────────────────────────────... 阅读全帖
p*********e
发帖数: 32207
28
☆─────────────────────────────────────☆
yeemartin (猪头) 于 (Mon Aug 17 05:10:38 2009, 美东) 提到:
看了一篇的文章
有解释为啥Shell Rotella T、Mobil Delvac这些heavy duty diesel oil的Used oil
analysis结果都很突出的原因,普通engine oil是S certification,例如SJ、SM。商
用truck engine oil是C certification, 目前是CI、CJ。C的additive package比S的
牛x很多,但有可能会不兼容乘用车上的catalytic converter。
我的G35目前就在用Shell Rotella T,摩托车下次换油也准备用这个。mobil的
synthetic motorcycle oil 1 quart 12刀,受不了。
Commercial (Diesel) Oil
The additive packages for C (commercial) certification... 阅读全帖
q********g
发帖数: 10694
29
来自主题: _Molecular_Simulation版 - 热导率计算的in文件
相关搜索: 热导率, 文件, 计算
作者: zhxlhdd2008 于 2010-10-28 16:23
看到有不少人在找热导率计算方面的in文件,我就贡献三个in文件吧,仅供参考。
同时,附件里贴出了我的计算结果。EMD的输出结果(compute heat/flux command
+compute tc command的计算结果)中, “ac.dat”(见附件中的"ac.wmf")是热流自
相关函数(我已经修改了compute_tc.cpp,目前输出的是normalized HCACF,但结果中
给出的还是没有归一化的热流自相关函数,但形状和归一化的是一样的,请注意!)随
m的变化,"tc.dat"(见附件中的"tc.wmf")是热导率随m的变化(m的涵义请参看热导率
计算的Green Kubo离散化公式,见附件"Comparison of atomic-level simulation
methods for computing thermal conductivity”中的(9)式),"tc_time.dat"(见附
件中的"tc_time.wmf")是热导率随时间的变... 阅读全帖
c**i
发帖数: 6973
30
You are mistaken. No place on earth is immune from earthquake.
(1) In my previous posting, in (2)(a) The difference between (i) and (ii) is
that (ii) is "detailed" map.
(2) Earthquake
http://en.wikipedia.org/wiki/Earthquake
Whose section 1.2 with heading "Earthquakes away from plate boundaries"
states that "many earthquakes occur away from the plate boundary and are
related to strains developed within the broader zone of deformation caused
by major irregularities in the fault trace * * * All tec
s********n
发帖数: 26222
31
【 以下文字转载自 Military 讨论区 】
发信人: smokinggun (硝烟), 信区: Military
标 题: Bernstein原著和方舟子剽窃文的对应分析ZT
发信站: BBS 未名空间站 (Thu Aug 25 02:01:14 2011, 美东)
China\'s Science Cop Plagiarized His Professor
While a PH.D. Student at MSU
Fang Shimin (aka Fang Zhouzi) is a well known figure in the world of
academia. Science magazine and Nature journals have several times reported
his fraud busting, whistleblowing activities in China. Science magazine
alone has given him the titles of “China’s science misconduct watchdog... 阅读全帖
u****n
发帖数: 7521
32
评价最高(35人顶)的comment:
价值是文化的孩子,不同的文化必然有不同的价值观。Values are the children of a
culture.
Kwin wrote:
Sep 30th 2010 9:02 GMT
What values are "universal"? Is the right to bear arms one of them? How
about the entitlement to jobs? health care? death penalty? privacy? Are
democracy in the US, in Japan are in UK the same? Should the US bring back a
queen or a king, who is above everyone else simply because a luck sperm
finds the correct target? Is this "universal" enough?
And who can claim that the Western m... 阅读全帖
i*****y
发帖数: 3449
33
来自主题: Military版 - 小将说,英联邦承认过西藏独立
英国2008年才承认中国对西藏的主权。之前之承认宗主权
http://www.telegraph.co.uk/news/worldnews/asia/tibet/3385803/UK-recognises-Chinas-direct-rule-over-Tibet.html
UK recognises China's direct rule over Tibet
The British Government has been accused of undermining the Dalai Lama in
negotiations with China by recognising Beijing's direct rule over Tibet for
the first time.
Foreign Secretary David Miliband said: "Like every other EU member state,
and the United States, we regard Tibet as part of the People's Republic of
Chi... 阅读全帖
s********n
发帖数: 26222
34
China\'s Science Cop Plagiarized His Professor
While a PH.D. Student at MSU
Fang Shimin (aka Fang Zhouzi) is a well known figure in the world of
academia. Science magazine and Nature journals have several times reported
his fraud busting, whistleblowing activities in China. Science magazine
alone has given him the titles of “China’s science misconduct watchdog”,
“China’s Fraud Buster”, “Chinese Whistleblower”. [1-4] These articles
have been widely circulated in China, and Fang himself has been u... 阅读全帖
w*********g
发帖数: 30882
35
美国的房市即将迎来再次的大幅下跌 2012-04-04 21:33:47
【古风按】古风准确地预见了现在发生的状况。请阅读下面
的资讯,早做准备,少受损失。同时请记住:当美国国内的
smart money不入市而国外的傻钱开始接盘的时候,这个
市场已经接近崩盘的边缘了。
请继续阅读下面的博文:
古风解读《股市崩盘五部曲》
http://blog.wenxuecity.com/myblog/46947/201204/204.html
古风解读2012年1月份美国的房市
http://blog.wenxuecity.com/myblog/46947/201202/27828.html
古风再次解读美国房市
http://blog.wenxuecity.com/myblog/46947/201203/2752.html
古风解读最新的美国新屋开工图
http://blog.wenxuecity.com/myblog/46947/201203/18691.html
----------------------------------------------------------------... 阅读全帖
xt
发帖数: 17532
36
来自主题: Military版 - 三锅说我们(亲客) has lost mind!
革命的史学考证来了:
kishoranand Sharma (Patliputra,Newyork)
2 hrs ago (09:17 PM)
Now time has come to claim Tibet and COK. The boundary India enjoyed and
called Ashoka boundary then Tibet and China was part of India, latest
journal published by european scienstist as per the latest excavation done
in Tibet. If they claimsouth China as per their Ming dynasty then we also
had great kingdom of Patliputra when Tibet was part of India. Tibet has our
most sacared place Masarovar we do not need to give proof to... 阅读全帖
m********5
发帖数: 17667
37
【 以下文字转载自 WaterWorld 讨论区 】
发信人: mitbbs2715 (好吃不懒做), 信区: WaterWorld
标 题: 末日象?温哥华上万乌鸦离奇消失 仅剩大量羽毛
发信站: BBS 未名空间站 (Mon Sep 3 03:29:36 2012, 美东)
位于本拿比Boundary Road夹Grandview HWY附近的树林,过去曾是乌鸦栖息的大本营,
傍晚时分动辄成千上万的乌鸦群飞的景象,现已不复见,仅剩下安全岛草地上的大量羽
毛,以及「小鸟两、三只」独自觅食。有居民认为是生态异象,并担心很有可能禽流感
来袭,甚至怀疑为天灾来临的前兆。
来自台湾的曹汉章定居加国逾16年,目前是一名书法老师和艺术家,现居于本拿比白金
汉区。他为了拥有绝佳创作灵感,长期试图和大自然融合一体,因此小鸟和松鼠便成为
他最好的朋友。
蓝鸟、黑头山雀 消失
曹汉章表示,他于上月15日下午,在自家前院发现一只死掉的小鸟躺在地上,基于对大
自然事物的长久观察习惯,对于鸟只的莫名死亡,也百思不得其解。
他续称,在家门口发现鸟尸的前一周,已先察觉在清晨左右,并未听到过去的孜孜鸟鸣
,和以... 阅读全帖
s*****n
发帖数: 839
38
来自主题: Military版 - 钓鱼岛solution suggestion
The negotiation can go like this:
Let's start with:
The boundary line: Follow Japan's suggesion
But: In Chun Xiao3-- oil wells' number 1:9 for Japan:Mainland China
If both sides can make agreement, then done.
If not, what if 1:8, 1:7, 1:6, 1:5, 1:4, 1:3, 1:2, 1:1?
Any time can reach an agreement then done.
Or, if any proposal above can't make the deal:
How about:
The boundary line: Follow Mainland China's suggesion
But: In Chun Xiao3-- Oil Well's number 1:9 for Mainland China: Japan
If 1:9 doesn... 阅读全帖
s*****V
发帖数: 21731
39
来自主题: Military版 - 【转载】Penrose的新衣 (转载)
【 以下文字转载自 Physics 讨论区 】
发信人: saturnV (土星五号), 信区: Physics
标 题: 【转载】Penrose的新衣
发信站: BBS 未名空间站 (Fri Jun 21 02:52:45 2013, 美东)
Penrose在新书《The Road to Reality》用了两章讨论宇宙学。
第28章的题目是Speculative theories of early universe。
他质疑了暴涨理论,认为弱电统一中的对称性破缺也许不存在,讨论了人择原理,
Hartle-Hawking的no-boundary proposal,宇宙学参数,等等。
我反过来质疑他的一些质疑。
Penrose的质疑:
首先,关于为弱电统一中的对称性破缺。标准模型认为,弱电的对称群是 SU(2)times
U(1),通过Higgs场取一定的真空期待值,这个群被破缺到我们熟悉的电磁群 U(1)。
Penrose 认为,假如弱电破缺真的存在的话,那么在宇宙的早期,当温度低于破缺能标
时,弱电对称就破缺了。在那个时候,我们现在可以观测到的两个区域可以没有因果联
系,这样破缺... 阅读全帖
t*******e
发帖数: 1633
40
【 以下文字转载自 USANews 讨论区 】
发信人: taylorlee (轻型农民), 信区: USANews
标 题: 奥巴马要求公立学校无条件接收非法移民上学
发信站: BBS 未名空间站 (Fri May 9 14:01:24 2014, 美东)
奥巴马以及其鹰犬Eric Holder要求公立学校无条件免费接收非法移民上学。非法移民
不需要提供任何年龄,身份,以及住址的证明,就可以任意选择公立学校。当然公立学
校的开销是当地居民的地产税支付的。
形成鲜明对比的是,一名Ohio的美国公民却因为伪造住址证明把孩子送到更好的学区上
学而进了监狱。http://www.cnn.com/2011/OPINION/01/29/martin.ohio.mother/
民主党损害中产的利益来讨好非法移民的丑恶嘴脸再一次暴露无遗。
The Obama administration pointedly told American public schools on Thursday
that they must enroll the children of illegal immigran... 阅读全帖
t********i
发帖数: 7856
41
来自主题: Military版 - 英国当时为什么要归还香港?
香港(港岛和周围一些小岛) 和 九龙(九龙半岛Boundary St(界限街)以南)是无
限期割让,新界(Boundary St以北至深圳河)是租借,租期99年,1898/07/01~1997/
06/30。
就算按照Thatcher说的三个条约有效,那么中国有权要求英国归还新界。否则就是英国
违约。
但事实上,经过几十年的发展,香港九龙新界经济政治上早就成为一体,不可能把新界
单独分出去。
所以选项只有两个:要么英国续租新界,要么整个香港全部归还中国。后来的中英谈判
也证明了这一点:双方都没有考虑单独归还新界这一选项。
所以如果谈判失败,TG在1997/07/01用武力强行收回香港,并非没有法理依据。
a*****y
发帖数: 33185
42
http://www.washingtontimes.com/news/2013/aug/6/chellaney-chinas
CHELLANEY: China’s salami-slicing strategy
Beijing works incessantly to redraw political boundaries
By Brahma Chellaney - - Tuesday, August 6, 2013
China’s furtive, incremental encroachments into neighboring countries’
borderlands have emerged as a key destabilizing element in Asia. While China
’s navy and a part of its air force focus on asserting revanchist
territorial and maritime claims in the South China and East China seas, it... 阅读全帖
l*****i
发帖数: 20533
43
由非法的‘法庭’做的所谓裁决终于出台了。这种时候中国应该再次表明这个所谓‘法
庭判决’的非法之处:
中国于2006年根据海洋法相关规定明确声明了自己拒绝海洋法法庭的自动争端判决机制
。也就是说,任何关于海洋划界及权益的判定,根据情况,不能自动立刻由unclos法庭
裁决。(需要注意的是,这并不是让任何单方拒绝实行海洋法的借口,而是规定有一个
具体程序。具体见下面的详细分析。所以这种拒绝自动裁判的声明不是耍流氓,也被多
国所采用,比如法国之类。而且这本身就是unclos包含的条款之一。)
具体条文如下:
Article 298. Optional exceptions to applicability of section 2
"1. When signing, ratifying or acceding to this Convention or at any time
thereafter, a State may, without prejudice to the obligations arising under
section 1, declare in writing tha... 阅读全帖
b********o
发帖数: 1241
44
来自主题: Military版 - 我爸妈怕我妹想不开
管的过界了。父母和成年子女,也是有boundary的。
既然他们不要boundary, 执意要指挥他人的生活,那就跟你爸妈说,推娃不如推自己,
把自己推成富豪,女儿自然不愁嫁。叫他们快点成富豪,不成富豪元旦不要回家......
d***e
发帖数: 3497
45
India Talks Tough, Asks China To Withdraw Troops
BY Edit Platter Desk | PUBLISHED: 20 July 2017
FacebookTwitterGooglePinterestWhatsapp
New Delhi: In a toughening of its stand, India on Thursday asked China to
withdraw its troops from Doklam on the Bhutan-China border if it wanted New
Delhi to pull out its Army from the area.
Iran Releases 15 Indian fishermen: Sushma Swaraj
In the first exhaustive Indian comment on the border row between India and
China that began over a month ago, External Affai... 阅读全帖
y***k
发帖数: 9459
46
基本答应了印度同时撤军的条件
印度时报
http://timesofindia.indiatimes.com/india/china-lowering-belligerence-before-dovals-meeting-with-xi/articleshow/59778241.cms
---
HIGHLIGHTS
Doval will meet Xi along with NSAs of other BRICS countries.
Also, Doval will have a meeting on the border standoff with Yang Jeiche.
Yang Jeiche is the State Counsellor and advisor of boundary matters to the
Chinese government.
---
BEIJING: China is giving signs of lowering its belligerence towards India
ahead of the visit of Ajit Doval, ... 阅读全帖
s*x
发帖数: 8041
47
NEW DELHI: India has sidestepped a Chinese attempt to delink the Dokalam
standoff from the Special Representative mechanism to find a solution to the
4,057-km-long Line of Actual Control that divides the two nations.
Beijing had said that the current standoff was ‘out of the purview’ of the
Special Representatives, according to officials. Beijing claimed that since
the boundary at Sikkim Sector had already been delimited, as per Chinese
version, by the 1890 convention between UK and China, the S... 阅读全帖
S*******l
发帖数: 4637
48
http://timesofindia.indiatimes.com/india/bhutan-rejects-beijings-claim-that-doklam-belongs-to-china/articleshow/60001311.cms
NEW DELHI: The Government of Bhutan on Thursday refuted Chinese foreign
ministry claims about Thimpu telling Beijing that the trilateral border
stand-off area in Doklam in the Sikkim sector is not Bhutan's territory.+
A top Chinese diplomat Wang Wenli had claimed that Bhutan had conveyed to
Beijing through diplomatic channels that the area of the standoff is not its
territ... 阅读全帖
W***n
发帖数: 11530
49
India says troops 'disengaging' from stand-off with China
AFP AFP 3 hours ago
India said Monday it had agreed with China to end a months-long military
stand-off at a strategically important disputed area in the Himalayas and
troops had begun disengaging.
India's foreign ministry said it had reached an "understanding" after talks
with Beijing about the tense confrontation in an area near the Indian border
that is claimed by both China and Bhutan.
Its statement suggested that both sides had agree... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)