由买买提看人间百态

topics

全部话题 - 话题: executor
1 2 3 4 下页 末页 (共4页)
J********n
发帖数: 560
1
做EXECUTOR在纽约好象有钱拿,20%的房产(银行里的现金不算),欠的债不用你来
还。
o**2
发帖数: 168
2
来自主题: Java版 - 工作中遇到的并行处理问题
我完全没有被offensed,你讨论的态度非常positive and professional。
关于我对executor framework的看法,我已经在和goodbug的讨论中(link below)陈述
过了。(goodbug silently退出了讨论。)
FMP vs ExecutorService/Future
http://www.mitbbs.com/article_t0/Programming/31258897.html
简单地说,我的意见和你的相左。Java executor framework比不上C#的async keyword
,就按你说的限制在Java之内的话,也比不过Spring Framework的@Async。
至于你提到的硬件加速等performance boost,那是FMP不care的东西。因为FMP卖的是
spec是标准,你没有注意到我的project是自称为reference implementation吗?
就象C不会去和汇编比速度、也不会自称是汇编代码的management一样,FMP也是自成体
系的。FMP追求的重点是降低程序员写并... 阅读全帖
y*******o
发帖数: 6632
3
Read:Java Concurrency In Practice
just google, threadlocal is not
should be these four:
LOCK OBJECTS
Lock objects work very much like the implicit locks (monitors) used by
synchronized code. As with implicit locks, only one thread can own a Lock
object at a time. Lock objects also support a wait/notify mechanism, through
their associated Condition objects. All the lock objects are defined in the
java.util.concurrent.lock package. The biggest advantage of Lock objects
over implicit locks is their... 阅读全帖
w**z
发帖数: 8232
4
我只用三句:
ExecutorService executor = Executors.newFixedThreadPool/
newCachedThreadPool
Future future = executor.submit(worker)
future.get()
Threadpool executor makes multithread programming in Java much much easier,
just make sure worker is thread safe.
r******r
发帖数: 700
5
来自主题: Java版 - 多线程真头疼,但也挺有趣
有点点长啊。
有一个 tool, 以前处理的数据比较少,所以速度,时间都不成问题。但现在需要处理
的数据增大,速度问题就突出了。费了好大一番力气,总算弄通了,一次处理的时间由
原来的 24 个小时,减小为 3 个小时。
第一次弄多线程,很费劲。但弄通了(只是这个小 task 弄通了,并非多线程弄通了)
,又觉得很有意思,小有成就感。分享一下,希望对 beginner 有帮助,也希望有经验
的多指教。其中有些地方,还没有完全明白,正在学习-ing。
程序其实也简单,就是在单机上运行的一个程序。过去单线程的,即使在多 core 的机
器上运行,也只能利用处理器的少部分能力。现在就是要改为多线程,多核处理。
数据存在 10 个文本文件中,每个大约 40M.程序从每个文件逐行读取,逐行处理,很
多信息被保存到不同的数据结构中。最后输出处理报告,中间还要将部分处理信息输出
到一个 XML 文件中。
经过一番 google search 和研究,所做的改动包括:
1) 将原来的逐行读取,逐行处理,改为先将每个文件的所有行读到一个新建的
DataStore 中,这个结构比较简单。就是保持原来的每行文... 阅读全帖
s******e
发帖数: 493
6
来自主题: Java版 - 工作中遇到的并行处理问题
Haha if you can wait... I might write my own executor framework if I really
wanna kill my spare time.
Just do me a favor, go read the book. your code is almost the exact example
they use to show what a bad code will be.
No offense, I know you put tons of efforts in your project and I admire it.
Since I did not really spend any time on looking at your project, I cannot
comment on it. But I have written several wrappers on top of executor
framework for some specific tasks. I really feel that execu... 阅读全帖

发帖数: 1
7
来自主题: Java版 - spring mvc 静态文件访问不了
found the following error in catalina log file:
SEVERE [localhost-startStop-1] org.apache.catalina.core.ContainerBase.
addChildInternal ContainerBase.addChild: start:
org.apache.catalina.LifecycleException: Failed to start component [
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/wechatEE]]
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:158)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase
.java:724)
at org.apache.catali... 阅读全帖
k**********g
发帖数: 989
8
来自主题: Programming版 - C++并发和Java并发有多大区别?

Start with Java Executors.
Learn how to use it just like the Runnable and Callable class.
http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/E
For example, if your goal is to write Android programs, (1) Executors is
basically all you need - the only other things you need are (2) thread
safety on Android, and (3) understand when and why you need to call Activity
.runOnUiThread() in some situations
C++ didn't have anything in the standard library comparable to Java
Executors. Design-by... 阅读全帖
C*********r
发帖数: 21
9
来自主题: Programming版 - Spark RDD
最近刚开始学Spark,因为没有看过源代码,麻烦大家想请教几个问题。
1. RDD在创建的时候是lazy的,并且有narrow和wide两种类型,例如map,filter是
narrow类型的所以不需要额外的shuffle。但是groupbykey之类的就需要shuffle了。并
且每个RDD会保存有自己所对应的partition信息。我的理解是每个action或者
transformation都会被Spark internally翻译成map reduce job来执行。
我的问题是翻译之后的map reduce job的并行度是和哪些因素有关系呢?partition的
数量还有executor的数量还有executor-core的数量之间是什么样的关系呢?例如
parition越多并行的task也会越多么?
2. 当我groupbykey的时候RDD会记录下我当前的RDD中有多少个key value么?并且这些
key value和上面说的partition有什么样的联系呢,还是完全不想关的两个概念?
3. 一个RDD的action或者transformation会被转换成多少ma... 阅读全帖
O*******d
发帖数: 20343
10
来自主题: Military版 - 人死了,尸体归属权归谁?
Possession of a Dead Body
It is a well-established principle of law that ‘there is no property in a
corpse.’ This means that the law does not regard a corpse as property
protected by rights. In other words there can be no ‘ownership’ of a dead
body. The only exception is where body parts acquire different attributes by
virtue of the application of skill, e.g. dissection and/or preservation
techniques.
However even if there is no legal ownership certain people have the right to
possess the body. ... 阅读全帖
c**i
发帖数: 6973
11
来自主题: USANews版 - Dispute Prevention in Will Probate
Anne Tergesen, A Will and a Way; New laws can help limit court fights over
your estate--before you die. Wall Street Journal, Mar 21, 2011.
http://online.wsj.com/article/SB10001424
052748703628204575619041062257282.html
My comment:
(a) Two decades ago, I chanced upon a trial in a small court room of out-of-
the-way Somerville District Court. I was the sole spector. It was about a
dispute of a caregiver who claimed that the deceased (an old man) promised
to pay her for the care, got nothing from t... 阅读全帖
c****n
发帖数: 271
12
小车祸,在小区门口的路上小白开过中线撞到我租的车
对方责任
车速很慢没有人受伤
我自己背酸痛,第二天去看了urgent care
医生说没事
过去2月+了
对方保险公司(state farm)让签如下文件,赔点钱给我
请问第二段
This release expressly reserves all rights of the parties released to pursue
their legal remedies, if any, against the undersigned, their heirs,
executors, agents and assigns.
应该怎么理解?对方还保存告我们的权力?
有没有人签过类似的文件啊?
谢谢
---------------------
For the Sole Consideration of
XXX dollars the receipt and sufficiency whereof is hereby acknowledged, the
undersigned hereby releases and forever disc... 阅读全帖
s**s
发帖数: 404
13
来自主题: E-Sports版 - 星际争霸10大最后时刻(zz)
http://www.gamerhome.net/bbs/viewthread.php?tid=208831&extra=page%3D1
(zz)
很久没弄点原创东西了,想到NBA也有最后时刻,今天来整理个星际10大最后时刻~
整理来自Pimpest Play 2002 2003 2004以及自己的3个
=
排名不分先后
=
如果有人有兴趣可以排一个
Shadow Jump: eXeCuToR[OrkO] vs TextBooK
利用Dark Templar堵住路口在今天并不是什么稀奇的事情,面对这样的问题eXeCuToR[
OrkO]突发奇想,作出了惊人之举。TextBook仅剩下一个 Pylon在6点,但是Textbook利
用了一个Dark Templar堵住了路口。eXeCuToR把自己的三个Dark Templar也站到路口上
,然后他把下面的两个Dark Templar合体,这样子,就把上面的一个Dark Templar挤过
了敌人堵口的Dark Templar,轻松砍掉了敌人仅剩的Pylon获胜。
Dunaj Tactics: eR43-Dunaj vs BlackMa
z***e
发帖数: 5393
14
也可能是我太白痴哈。
很简单一个东西,我用maven的junit跑几个unit test,就是比较一下linear遍历和
threadpool并发处理,看时间的差异,也就大概是这样的东西:
public void test() {
int N=10000;
List data = new LinkedList();
// 先initialize
data.add(new Long[N]);
data.add(new Long[N]);
data.add(new Long[N]);
data.add(new Long[N]);
for(Long[] array :data) {
... //往里面填点数字
}
// 1. linear process
for(Long[] array : data) {
for(int i=0; i if (array[i]%2 == 0) {
// 做一些简单计算
}
}
}
// 2. parallel
ExecutorServ... 阅读全帖
T***B
发帖数: 137
15
来自主题: Java版 - 工作中遇到的并行处理问题
照着mectite,goodbug二位的思路写了一下,代码如下. 试着跑了一下,运行结果和预
期吻合。我有一个问题:我在PredictRequest.call()里面把current thread cast成
PredictorThread从而拿到predictor object. 还有更好的办法把predictor (inside
the thread) 和callable联系起来吗?
Predictor.java
public class Predictor {
private String name;

public Predictor(String name) {
// heavy lifting stuff.
this.name = name;
System.out.println("Created predictor " + name);
}
public synchronized String predict(String input) throws
InterruptedExcept... 阅读全帖
p***o
发帖数: 1252
16
就是比如这样的代码:
... executor ...
... searcher ...
... target ...
Future future = executor.submit(new Callable() {
public String call() { return searcher.search(target); }
});
懒得每次都写那个lambda函数,能不能有个asyncCall可以这样:
Future future = asyncCall(executor, searcher, methodSearch, target);
f********r
发帖数: 304
17
来自主题: Programming版 - Spark RDD
并行数量取决于你的executor数目乘以executor core。这两个数值要根据你的yarn
slave node的数量和配置决定。比如你的cluster有5个node, 每个node 4 core 16G。
那么你的(num_executor,executor_core, executor_memory)可以设为(5, 4,
16)或者(10,2, 8)或者(20, 1,4)
当然exeuctor memory要注意留出一部分overhead大概是0.1,所以实际设置不能直接用
上述例子。每个executor是一个独立jvm process,core的数目是线程并发数。所以一
般core的数目对应cpu的vcore数目。partition的数目就是具体的task 数目,每个core
并行执行一个task。所以,按照上面的例子,如果你有100个partition,你可以同时运
算20个。如果同样你把partition数目增加,每个task理论计算时间会变小,但并行度
还是取决于你的launch config。要注意的是如果数据量很大然后partition很少会导致
内存溢出或GC... 阅读全帖
c**i
发帖数: 6973
18
来自主题: Law版 - Dispute Prevention in Will Probate
Anne Tergesen, A Will and a Way; New laws can help limit court fights over
your estate--before you die. Wall Street Journal, Mar 21, 2011.
http://online.wsj.com/article/SB10001424
052748703628204575619041062257282.html
My comment:
(a) Two decades ago, I chanced upon a trial in a small court room of out-of-
the-way Somerville District Court. I was the sole spector. It was about a
dispute of a caregiver who claimed that the deceased (an old man) promised
to pay her for the care, got nothing from t... 阅读全帖
p******y
发帖数: 166
19
打电话给自己保险公司咨询,说保险处理分两部分,一部分是car damage, 另一部分
是bodily injury, 这两部是独立,互不干涉,所以如果release form是关于人身伤害
,那么签不签都不应该影响我修车,如果是关于车的损伤,那么应该修好以后再签。
和对方保险公司assign的一个adjuster 争论后, adjuster坚持要我先签release form
,说如果有额外的差价,那么保险公司会直接付给修车铺,我修车时,租车的问题也是
由保险公司直接安排。
release form里有这么一句 ”by reason of any and all known and unknown,
foreseen and unforeseen bodily and personal injuries, loss and damage to
property, and the consequences thereof, resulting, and to result from a
vehicle collision.“ 我的理解是我的车也是我的property, 所以我认为这个是... 阅读全帖
b******e
发帖数: 82
20
来自主题: Faculty版 - PCT专利的assignment合同问题
请问学校faculty在通过学校申请国际专利 (PCT),那个assignment的合同最后一段
如下:
“I represent to the Assignee, its successors and assigns, that I have not
and shall not execute any
writing or do any act whatsoever conflicting with this Assignment. I, my
executors or administrators, will at any time upon request, without
additional consideration, but at the expense of the Assignee, its successors
and assigns, execute such additional writings and do such additional acts
as the Assignee, its successors and assigns, may deem... 阅读全帖
a***u
发帖数: 36
21
你列出的 1) 直接用static 是最常用的简单singleton方法;
2)使用static inner class 只多了三行代码而已,也不算什么。是为了lazy loading
省点memory, getInstance 被call时才load the inner class. 这个是我已知的最好
方法了。
要会灵活使用 concurrent package 的各种building block: synchronized原理,
semophor, CountDownLatch, CyclicBarrier, 各种Executors, 如何使用Executor
来增加scalability, Concurrent collections, 如何防止deadlock, ...这些有的
AMFLG Onsite时也有问的
看看咱国内人的水平吧: 以下是道我认为的经典题
淘宝面试题:如何充分利用多核CPU,计算很大的List中所有整数的和 http://flysnow.iteye.com/blog/711162
s******e
发帖数: 493
22
来自主题: JobHunting版 - 下一轮startup是不是mobile为主?
Java executor framework support the real multi-threaded asynchronous
mechanism. Comparing to the single threaded and event driven asynchronous
strategy in js, I will come to an opposite conclusion. For libraries, are
you sure that Node.js has more useful stuff than java? It is true that the
current executor framework is quite powerful already. I rarely even think
about any libraries for that purpose.
b**********5
发帖数: 7881
23
来自主题: JobHunting版 - 求neflix mobile面经 大包子
第四面继续: 现在给你一个
class task implements runable{
void run();
List depedencies;
}
就是有一个task list, 每个task可能depends on some other tasks in the list,
让给个solution, so that tasks are run after their dependent tasks
我说, 不就是topology sort吗。。。 然后就哗啦哗啦用BFS写了一个function。 先
用java 8 filter一个sublist for those that dependencies size is 0. 然后
create一个 Executor。newFixedThreadPool, 把这些sublist给submit掉, 再把
sublist从原来的list里撤掉, 再iterate through the list, 把这个zero
dependecies的task从 每个task的dependency list... 阅读全帖
az
发帖数: 16686
24
来自主题: Parenting版 - 关于estate documents,遗嘱遗嘱
自闭自闭,天才天才,bso bso,我来点新鲜的吧
最近看遗嘱文件,头昏眼花,胡乱简单总结下吧,我在麻州,听说有些规定是跟州的,
所以如果有误导,大家别怪我啊,就是想给点参考,总结下我大概齐办了点啥。如果说
错了啥,也别怪我哦,不是专业人士,自己也是摸着石头过桥呢,内容都是东拼西凑的
,见谅。如果那里错了不准确,提出来,我来改正,希望大家看了大概齐知道这遗嘱里
头都有哪些咚咚。
1.Will就是 name an executor (the person who will be responsible for managing the financial affairs of your estate), a guardian (the person who will be responsible for the care and protection of your minor children), and you will specify the financial distribution terms of your estate. For example, a fairly typ... 阅读全帖
e******l
发帖数: 1416
25
来自主题: Parenting版 - 遗嘱上的人选问题
老公和自己都没有其它亲人在美国的,遗嘱上的executor, trustee and guardian 你
们都选什么样的人呢?
考虑到以后万一处理起来方便的话,选的时候应该注意什么呢?比如我们律师说
EXECUTOR就是个傀儡,但最好在美国,会英文的人。。。
a****l
发帖数: 6431
26
发信人: az (邮箱又可以用了), 信区: Parenting
标 题: 关于estate documents,遗嘱遗嘱
发信站: BBS 未名空间站 (Wed Sep 29 23:25:40 2010, 美东)
自闭自闭,天才天才,bso bso,我来点新鲜的吧
最近看遗嘱文件,头昏眼花,胡乱简单总结下吧,我在麻州,听说有些规定是跟州的,
所以如果有误导,大家别怪我啊,就是想给点参考,总结下我大概齐办了点啥。如果说
错了啥,也别怪我哦,不是专业人士,自己也是摸着石头过桥呢,内容都是东拼西凑的
,见谅。如果那里错了不准确,提出来,我来改正,希望大家看了大概齐知道这遗嘱里
头都有哪些咚咚。
1.Will就是 name an executor (the person who will be responsible for managing
the financial affairs of your estate), a guardian (the person who will be
responsible for the care and protection of your min... 阅读全帖
a****a
发帖数: 26187
27
☆─────────────────────────────────────☆
grapetomato (delicious) 于 (Fri Aug 5 12:28:27 2011, 美东) 提到:
先呸呸呸,大吉大利,然后你们有立遗嘱的吗,特别是有小孩的,害怕两个人一起挂了
。怎么个手续,咨询一下,谢谢!
☆─────────────────────────────────────☆
rorona (Thinking) 于 (Fri Aug 5 12:33:51 2011, 美东) 提到:
貌似前几天华人上面在热烈讨论阿~
☆─────────────────────────────────────☆
blahs (blah) 于 (Fri Aug 5 12:36:19 2011, 美东) 提到:
Yes, we've done that years ago.
☆─────────────────────────────────────☆
grapetomato (delicious) 于 (Fri Aug 5 12:37:41 2011... 阅读全帖
s******e
发帖数: 493
28
来自主题: Java版 - NoThread concurrency
read your blog. what is the difference between your stuff and java 1.5/1.6
executor framework? is it a wrapper on top of executor framework?
s******e
发帖数: 493
29
来自主题: Java版 - 工作中遇到的并行处理问题
well I believe it was understated in this use case. What concern the author
most were performance and memory footprint. By take advantage of the built-
in life cycle mechanism of the executor framework, coders can very much
delegate the predicator instance management to the executor framework. This
will guarantee both the performance (no thread needs to wait for next
available predicator instance) and memory footprint concerns (shrink and
recreates if needed. or fixed...) this provides the exact... 阅读全帖
o**2
发帖数: 168
30
来自主题: Java版 - 工作中遇到的并行处理问题
没有用过code style checking tools。
我把一个thread完全隐含到一个Predictor的instance里面,对这个问题来说,是最符
合OOP设计原则的,同时也符合原要求。虽然内部有很多代码做interleaving的
checking,看起来很繁琐,但原则很简单。会producer/consumer pattern的程序员都
能写和接手这个程序。
Executor framework是基于task的,在这个问题上,只会把class弄的一团糟,后续的
维护和调整将会相当困难,比如一个Predictor的instance有问题了(要检测方便)要
换一个新的instance等。
建议你也动手写一个Executor版本的代码,贴出来我们分析讨论一下。

much
o**2
发帖数: 168
31
来自主题: Java版 - 工作中遇到的并行处理问题
我没有提过让你写“my own executor framework”啊,我是说请你用你认为最好用的
JDK现有的executor framework帮楼主写他的Predictor和PredictorService classes。
我在这个帖子里每次写的code大约都是用十几二十分钟,所以应该不会占用你太多时间。

really wanna kill my spare time.
n******1
发帖数: 3756
32
来自主题: Java版 - 问一个blocking IO的程序
我在网上看到这两段代码,一个写,一个读,但是好像是有问题的.我看写是没问题的
,我把queue打出来,输入的都有,但是reader的读行为非常奇怪,如果文件有内容,
可以读出来,但是重新写入的有时候能读一部分,比如writer写入abcde,可能read到ab
出来,但大部分时间都是null,尝试自己加过在writer加入sleep,wait什么都没用
Writer.java
import java.io.BufferedWriter;
import java.io.Console;
import java.io.FileWriter;
import java.io.PrintWriter;
import java.util.concurrent.BlockingDeque;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.LinkedBlockingDeque;
import java.util.logging... 阅读全帖
S*******e
发帖数: 525
33
来自主题: Programming版 - 如何提高Spark在Yarn上的内存使用率
This is good information --
I'm also puzzled about the executor-cores, num-executors. How to choose the
proper values for these two params?
a********l
发帖数: 980
34
SA weekend patch reboot之后突然就没法build了...
build 的 console output-
> /usr/bin/git fetch --tags --progress /home/user/repositories/git/user.git
+refs/heads/*:refs/remotes/origin/*
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from /home/user/
repositories/git/user.git
at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:735)
at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:983)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1016)
... 阅读全帖
c******n
发帖数: 4965
35
来自主题: Programming版 - Spark RDD
rdd 跟 hadoop MR 的 input split 概念有点像
但是 spark 的独特是, rdd 上带了 transformer, master 可以把不同的 rdd merge
到一起 给 executor. 具体怎么弄我也不清楚, 你只能看 SRC code, 可以 先看 第
一个 release local executor, 很简单
f********r
发帖数: 304
36
来自主题: Programming版 - Spark RDD

money>
16
你还是没有细读我上面的回文啊。并发数目和你的partition数目无关。并发数目之取
决于你的exeuctor数目和executor core数目。如果你的配置是5node4core那么并发数
目就是20,也就是20条thread并行执行20task。假如说你的cpu只有2core,你却设置成
4,那么没两条thread要share一个core,实际并发只有10。这就是为什么total
executor core的数目和你的cluster total 物理core的数目要对应。当然一般情况还
应该留一个core给其他service比如node manager,history server etc。
如果你在reducebykey阶段设置100个partition但是实际有200个不同的名字,那每个
task理论上会处理2个名字。但这不是一定保证的,因为你的data可能是skew的。比如
有的名字对应上千个money,有的只对应一两个。每个task上的任务必须是顺序执行的
,应为只有一条thread。
a*****s
发帖数: 1121
37
来自主题: Programming版 - spark load数据速度
单从你的数据量上看,九个节点已经不错了。aws上的都是VM instance,100个不一定
有你的9个物理机器快。
wdong分析的很到位,个人感觉你的程序需要并行,spark有两级并行,选择executor的
数量,然后,选择每个executor上多少parallelism,spark prefer 大内存fat node,
如果你的机器内存不大, 恐怕效果一般,跟写mapreduce相差不多(你只是parsing),
如果可能,用SSD替换硬盘,加大内存。检查网络速度,是10GE还是1GE,压缩你的数据
(HDFS支持snappy)
用AWS从S3到本地HDFS就把你时间耗去大半,不划算。
光spark的tuning就有很多可做的,而且用spark的目的也就是为了并行。
楼主贴些详细信息,大家也可以帮你分析分析
s*******f
发帖数: 109
38
来自主题: Law版 - 咨询:关于遗产继承
You must go to probate court whether the decedent had a will or not. If he
had a will and designated an executor in the will, property will be handled
by the executor after the court hands down the letters tentamentary; in the
case there is no will, court will appoint an administrator to handle the
property distribution.
For dying intestate situation without spouse and/or children, siblings get
nothing if both parents are alive. All property goes to the parents. This is
the general rule. MA prob
t****f
发帖数: 61
39
中宣部只是一个executor. 还不是党叫干啥就干啥。
g**8
发帖数: 4951
40
来自主题: Military版 - 波兰CS队员辱华事件最新进展
首先,我对这个所谓的中韩主办方一起搞的什么比赛,不是很明白到底是怎么回事。我在网上看到的情况是这个比赛居然是中方与棒子所谓中央日报报社一起搞的。不知道电玩的事情是否因为棒子先进一些还是什么原因,在中国比赛还一定要让棒子成为主办方控制服务器,控制比赛裁判工作,特别是不明白为什么居然还是与对方棒子一个什么报社一起主办。 前面有网友说这次事情起因是波兰人不满棒子裁判,我在网上仔细看了一下,原来这次事件发生在波兰队和棒子队的一场比赛中。现在有各种说法,一种说法是当时波兰人突然连不上服务器,导致他们最终败给了棒子队。而实际已经有人指出是棒子“主办方”在当时的服务器链接上出现了问题。不知道具体情况到底是怎样的,但是我估计恐怕多少和棒子的无耻有些关系。但是这些波兰人如此猖狂,放肆地在中国辱骂中国人,是更加不能接受的。 当时那个辱骂中国的波兰猪不但放肆之极地在中国当着全世界人的面直接辱骂中国,更猖狂地在赛后砸碎了键盘。在网上找到他的照片一看就是一个十足的地痞流氓的感觉,真的应该遭到最严厉的严惩!
冤有头债有主,以下就是具体情况,来自他们自己的团队网站。
姓名: Mariusz Cybulski 电玩比... 阅读全帖
p***n
发帖数: 17190
41
来自主题: Military版 - 马英九的幕僚- 国会监听风暴

那你肯定沒有看到馬英九在國民黨考紀會開會前
開記者會非斬王不可的那幅堅強的表情
台灣人民可都看清楚了
這一下連國民黨考紀會的公正性也被馬給徹底毀了..
國會議長給在野黨關說檢察(不是司法喔)
還不是為了幫馬推服貿過關
馬英九跟共產黨一直沒搞清楚的是
服貿沒過關問題不在這幾個黨魁
問題在於 ECFA 說會發結果跳票
服貿就更不可信了
總統本來就不該出面
有問題就交由檢查機關該起訴就起訴
有黨紀就交由黨內考紀會調查處理
而不是拿了檢察總長的報告自己當了
檢察官兼法官兼行刑手
又不是席威絲史特龍演的那個角色
I am the prosecutor, the jury , the judge , and the executor.
x****u
发帖数: 12955
42

是你错了。外交官必须是在从事和工作有关的行为时才享受豁免权。
维也纳公约关于外交豁免的条款:
Article 31
1.A diplomatic agent shall enjoy immunity from the criminal jurisdiction of
the receiving State. He shall also enjoy immunity from its civil and
administrative jurisdiction, except in the case of:
(a) A real action relating to private immovable property situated in the
territory of the receiving State,unless he holds it on behalf of the sending
State for the purposes of the mission;
(b) An action relating to succession in which the dipl... 阅读全帖
S******4
发帖数: 2865
43
来自主题: USANews版 - Romney's real problem
Good, let's have a mature argument.
Firstly, you misunderstand the role of Presidency.
President is not a manager, he is a leader. He needs to have vision and sets
agenda and gets his agenda through Congress.
That's what I mean that Romney should not be President, his skills qualify
him to be a cabinet member, an executor, a manager, an implementor of policy.
Obama will not have time for 细节工作, that's not his job.
What Obama should do for second term is:
Get off his high horse, play golf, have di... 阅读全帖
t*******s
发帖数: 1016
44
来自主题: Automobile版 - 私了免责文本范文
前两天看到版上有人问,我就发一个我的保险公司曾经给我的的文本把。这里为什么不
能贴PDF?那就txt将就看吧。
Discharge
I (victim/dischargor's name and address,possibly d.o.b.) ACKNOWLEDGE that I
have agreed to accept from the Dischargees named in the Schedule hereto the
sum of $100.00 in full satisfaction and discharge of all actions suits
claims and demands whatsoever brought by me against the Dischargees and/or
their heirs executors administrators and successors in title arising
directly or indirectly out... 阅读全帖
m******n
发帖数: 6327
45
来自主题: Automobile版 - [合集] 私了免责文本范文
☆─────────────────────────────────────☆
toothless (无牙) 于 (Thu Nov 25 09:29:25 2010, 美东) 提到:
前两天看到版上有人问,我就发一个我的保险公司曾经给我的的文本把。这里为什么不
能贴PDF?那就txt将就看吧。
Discharge
I (victim/dischargor's name and address,possibly d.o.b.) ACKNOWLEDGE that I
have agreed to accept from the Dischargees named in the Schedule hereto the
sum of $100.00 in full satisfaction and discharge of all actions suits
claims and demands whatsoever brought by me against the Dischargees and/o... 阅读全帖
n***o
发帖数: 629
46
来自主题: Automobile版 - 从过世的车主的家属买车的问题
应该要一些文件吧,因为过世的老人没办法在title上签名了。。我当时的情况是,有
一封信,证明卖车人(老人的弟弟)是过世老人财产的executor,然后卖车人在title
上签名。。当然我当时还是去了dmv,等一切搞清楚了之后,才把cashier check交给卖
车的人。。
a********o
发帖数: 86
47
来自主题: Automobile版 - 车祸赔偿请教
前段时间我的车被撞了,肇事车同时还撞了另外一辆车。由于肇事车的保险limit只有$
10,000,而两辆被撞车的property damage加起来有$14,635,其中我的property
damage是$4,671,根据肇事车保险公司的pro rata distribution计算,我能拿到$10,
000的31.9%共$3,191,还有接近$1,500的差额,由于我没有买uninsured property
damage保险,这个差额从我的保险公司也拿不到。我的想法是等从肇事车保险公司拿到
$3,191的赔偿后,再去小额法庭告肇事车司机索取1,500的差额。
刚收到肇事车保险公司的property damage release,其中有一段话是这样:
Insured Driver: BBB
For the sole consideration of $3191.82, the receipt and sufficiency of which
are acknowledged, the undersigned XXX ("Claimant"), being of lawful age... 阅读全帖
y*******i
发帖数: 182
48
来自主题: Automobile版 - 保险公司settle的release是否有诈?
对方全责的车祸,一年后对方保险准备settle。发过来的release上除了我放弃诉讼之
外,有这么一句
This release expressly reserves all rights of the parties released to pursue
their legal remedies, if any, against the undersigned, their heirs,
executors, agents and assigns.
是否所有的settle release都会有类似描述,就是非错方放弃诉讼,但过错方保留诉讼
非错方的权利。请问这样正常么?
因为对方是全责,是否签了也没关系?实在是没精力和时间跟保险公司打交道了。多谢
y*******i
发帖数: 182
49
来自主题: Automobile版 - 保险公司settle的release是否有诈?
the parties released = 他们,过错方,对方保险
the undersigned, their heirs,executors, agents and assigns = 我方
请问应该怎么理解?
g***n
发帖数: 14250
50
来自主题: Automobile版 - 保险公司settle的release是否有诈?
搞不懂就去找律师问问
This release expressly reserves all rights of the parties ((who) released to
pursue
their legal remedies, if any, against the undersigned, their heirs,
executors, agents and assigns).
1 2 3 4 下页 末页 (共4页)