由买买提看人间百态

topics

全部话题 - 话题: executor
首页 上页 1 2 3 4 下页 末页 (共4页)
j***a
发帖数: 832
1
最近,Father-in-law问我老公能不能做他们的遗嘱执行人 (when both of the in-
laws die.) 他们就是一般退休的人。主要希望平时比较负责的老公能最后通知各个方
面(亲戚,银行,IRS等等),把房子卖掉这类的。
问题是老公有一个弟弟,工作不稳定,人也不是很能打算,还比较爱欠债,那么大了没
钱的时候,还20,30的问他妈妈借。他是小儿子,她妈妈相对比较疼爱,所以和我们抱
怨几句之后,一般没有不答应的。因为年龄和健康的关系,他爸爸会先走一步,他妈妈
会愿意和这个弟弟住。我和老公都觉得如果他能够在他妈妈身边,有个照看也不错,另
一方面他妈妈和我们可以在经济方面资助他些。但是还有一种可能是,如果照他这样下
去,说不定会把他妈妈的积蓄都用完了还给她欠一堆卡债,有的时候人老了就比较好说
话,什么都会答应。
到时候会不会COLLECTOR分不到钱,来骚扰执行遗嘱的人。
a*w
发帖数: 4495
2
毕竟是亲兄弟,如果他不赌不抽,能帮还是帮一把。
j***a
发帖数: 832
3
你 拿 钱 帮 他 , 他 还 心 理 不 痛 快 。 他 妈 妈 有 天 敲 打 他 , 要 他
学 学 他 哥 哥 的 样 子 。 他 还 说 , 我 才 不 要 那 样 的 生 活 呢 。 酸
酸 的 。 平 时 电 话 也 不 打 个 。 那 里 是 把 我 们 当 亲 兄 弟 。
o*****d
发帖数: 609
4
就是一个自私的法盲。遗嘱执行人与死者的利益和债务毫无关系。遗嘱执行人拿不到一
分钱,也不会欠一分钱。
l*****1
发帖数: 109
5
顶,女人无知点没啥,加上自私就太恐怖了。
s*m
发帖数: 877
6
外x?

最近,Father-in-law问我老公能不能做他们的遗嘱执行人 (when both of the in-
laws die.) 他们就是一般退休的人。主要希望平时比较负责的老........
★ Sent from iPhone App: iReader Mitbbs Lite 7.26
b****o
发帖数: 387
7
Absolutely not
在 jabba (一日无事一日仙?) 的大作中提到: 】
i*****k
发帖数: 2576
8
不大懂。不过感觉这种角色应该找个没有利益关系的第三者来做比较好。你LG也是遗嘱
受益人之一,又当执行人,不怕被认为不公正吗?
n*****k
发帖数: 2801
9
死外F
m******g
发帖数: 1103
10
做自己父母的遗嘱执行人还要考虑吗? 有点人性的人都知道该怎么做。
H**r
发帖数: 10015
w********0
发帖数: 333
12
re
w********0
发帖数: 333
13
RE
x*****p
发帖数: 1707
14
来自主题: JobHunting版 - multi-threading guru们
Yes.
Suppose you define two Runnable objects r1 and r2. They share the same
object of C. r1 calls method1 and r2 calls method2 in their run method.
Then you can use
ExecutoreService es = Executors.newSingleThreadExecutor();
es.execute(r2);
es.execute(r1);
Then it is guaranteed that r2 finishes running method2 first and r1 runs
method1 second.
g**e
发帖数: 6127
15
来自主题: JobHunting版 - 问个thread synchronization的问题
抛砖引玉,写了一个lock free的,经grass的指点,终于写对了...
class Account {

private final AtomicLong value = new AtomicLong();

public Account(double b) {
this.value.set(Double.doubleToLongBits(b));
}

public double getBalance() {
return Double.longBitsToDouble(value.get());
}

public void transferMoneyLockFree(double amount) {

while (true) {
... 阅读全帖
y*******o
发帖数: 6632
16
1. like serializable, it is mark the status or charateristics of a class
rather than providing a fucntional interface
2. lock, threadlocal, executor
z****e
发帖数: 54598
17
因为两个check用的是同一个判断,都是singleton==null
而synchronized关键字是夹在两个判断中间
所以导致其它线程执行外面那个check的时候不需要synchornized
所以导致其它线程有可能在拿到一个未完成初始化的对象引用
从理论上说,那个double checked的代码其实也是错的
所以这个尝试其实是错误的,理论上就是有瑕疵的

loading
Executor
z****e
发帖数: 54598
18
不过这个既然用inner class就可以搞定了,跟1.5有什么关系?

loading
Executor
f********d
发帖数: 51
19
来自主题: JobHunting版 - Java编程讨论:LinkedIn的H2O
如果允许我大展身手的话。我会用EIP Aggregator pattern
http://www.eaipatterns.com/Aggregator.html
如果要考我java,我就用 new concurrent package, 简单明了
public class H2O {
private BlockingQueue hq = Queues.newArrayBlockingQueue();
private BlockingQueue oq = Queues.newArrayBlockingQueue();
public H2O H() {
CountDownLatch latch = new CountDownLatch(1);
hq.add(latch);
latch.await();
return this;
}
public H2O O() {
CountDownLatch latch = new CountDownLatch(1);
oq.add(latch);
lat... 阅读全帖
i*******6
发帖数: 107
20
来自主题: JobHunting版 - Java编程讨论:LinkedIn的H2O
My 5 cents:
import java.util.concurrent.*;
class MyO implements Runnable{
int index;
CountDownLatch lock;
public MyO (int index, CountDownLatch lock) {
this.index = index;
this.lock = lock;
}
public void run() {
try {
Thread.sleep((long) (Math.random() * 1000));
lock.await();
System.out.println("Take O:" + index + " to form an H2O!");
} catch (Exception e) {
e.printStackTrace();
}
}
}
... 阅读全帖
f********d
发帖数: 51
21
来自主题: JobHunting版 - Java编程讨论:LinkedIn的H2O
如果允许我大展身手的话。我会用EIP Aggregator pattern
http://www.eaipatterns.com/Aggregator.html
如果要考我java,我就用 new concurrent package, 简单明了
public class H2O {
private BlockingQueue hq = Queues.newArrayBlockingQueue();
private BlockingQueue oq = Queues.newArrayBlockingQueue();
public H2O H() {
CountDownLatch latch = new CountDownLatch(1);
hq.add(latch);
latch.await();
return this;
}
public H2O O() {
CountDownLatch latch = new CountDownLatch(1);
oq.add(latch);
lat... 阅读全帖
i*******6
发帖数: 107
22
来自主题: JobHunting版 - Java编程讨论:LinkedIn的H2O
My 5 cents:
import java.util.concurrent.*;
class MyO implements Runnable{
int index;
CountDownLatch lock;
public MyO (int index, CountDownLatch lock) {
this.index = index;
this.lock = lock;
}
public void run() {
try {
Thread.sleep((long) (Math.random() * 1000));
lock.await();
System.out.println("Take O:" + index + " to form an H2O!");
} catch (Exception e) {
e.printStackTrace();
}
}
}
... 阅读全帖
g**e
发帖数: 6127
23
从最简单的executor + blocking queue开始
s*****r
发帖数: 43070
24
常用的util里面的数据结构,string各种操作,各种io如何应用,network这些package
,能写出访问网站的程序。高端的有concurrency,executor,nio等package,熟悉里
面每个class的interface。
Java的语法,JVM的主要参数和工作机理,三种内存和garbage collection是core Java
必须要了解的。
b*******d
发帖数: 750
25
来自主题: JobHunting版 - 面经
最近面了几个公司,大的如LG,中等的PDB,小的有20~30个人的三个,tiny的7,8个
人的两三个,人不错,但太risky。
最想去的没有中, 水平问题。从一个,凑活300K过日子。
拿到卡后的骑驴找马。太累,收山,生娃。
1. numPath from top left to bottom right.
写没想到这个居然栽了,被对方态度搞的不能focus,写出来但总出错。水平问题。
2. find median in 2 sorted arrays
3. find median in very large file of LONGs in many machines.
global value space binary search; bucket stats; reduce number of passes of
files.
4. implement web crawler in java
不是project,就是 task queue, executor。
5. implement Timer, Timer Task in java
prirotity queue; num... 阅读全帖
g**e
发帖数: 6127
26
来自主题: JobHunting版 - 求问一道multithreading问题
也对,哈哈。我只是想写个不用semaphore的,肯定要麻烦点,而且容易写错。这个应
该对了。。。
public class PrintFooBar2 {
public void print(int n) {
AtomicBoolean flag = new AtomicBoolean(true);
ExecutorService exec = Executors.newCachedThreadPool();
exec.execute(new Worker("foo", flag, n / 2, true));
exec.execute(new Worker("bar", flag, n / 2, false));
exec.shutdown();
}
public static void main(String[] args) {
new PrintFooBar2().print(6);
}
}
class Worker implements Runnabl... 阅读全帖
s*i
发帖数: 5025
27
来自主题: JobHunting版 - 求问一道multithreading问题
没怎么写过multithreading程序。不过,学习了gate的几点:
1. 用Executor和worker (thread pool)
2. 用一个function body
3. wait的话,总要catch
g*****g
发帖数: 34805
28
来自主题: JobHunting版 - 这题怎么做?
Executors.newFixedThreadPool(1);
class PrintTask extends Callable {
public PrintTask(DeviceEnum device, int printTime);
}
record current timestamp and use finish time to come up with statistics is
enough.
Not rocket science.
b******n
发帖数: 851
29
来自主题: JobHunting版 - 这道题, 到底怎么做?
这个能用类似Executor。newSingleThreadExecutor这种东西做么?
l***i
发帖数: 1309
30
来自主题: JobHunting版 - MS Azure组面试
hadoop那一套不懂multithreading也可以搞啊,java知道blockingqueue加上executor
就可以做一些简单的东西了。真正高技术的thread自然有组里的大牛来,小菜鸟也没机
会做这种项目。
r******y
发帖数: 21
31
来自主题: JobHunting版 - Cloudera 面经 (电面 + onsite)
这是楼主第二次onsite他家,希望这次能有好结果吧。
面的组是内部维护hadoop和数据的组。
第一次电面,hiring manager,纯聊天,简历。谈得还不错。于是就有了接下来的下一
步。
第二次电面,依然是问简历,相关工作经历。主要问了问对开源项目的理解,尤其是他
家的impala。还有avro, thrift, nifi, hbase也都问了一些。
下一步是做了个oa,codility的oa,不难,三题,第三题时间不够,第二题有个小bug
,修了以后就提交了。
接下来是onsite,每轮一个小时。
onsite第一面,是个很资深的engineer,还是详细问简历,之前做的project的
architecture,要在白板上画出来。最后题问题的时候问cloudera在这方面也是不是这
样处理的,对方说是很相似的设计。
onsite第二面,大组的manager。详细聊聊hdfs,以及实时data ingestion进hdfs这方
面的设计。主要是考察系统设计以及对开源项目的了解。
onsite第三面,一个刚从ops转到dev的engineer。主要问linux的方方面面,我坦承... 阅读全帖
T****y
发帖数: 264
32
来自主题: Living版 - 关于3520表
原来发在tax版,没有人回复。想着估计家居版对3520表有经验的人比较多,就转到这
里来看看。
今年收到家人资助我买房的钱,在填3520表的过程中遇到些问题不懂,望版上大牛指教
。谢谢!
1)第一页开头
“A Check appropriate boxes: {Initial return} {Initial return (extension
filed)} {Final return} {Amended return}"
instruction上都说的是有关trust return,那我的情况只是收到亲友的钱就什么也不
选?
2)紧接着上面“B Check box that applies to person filing return: {Individual
} {Partnership} {Corporation} {Trust Executor}”
instruction对这部分没解释,我只是report收到的钱,没有return的事,是什么都不
选,还是选{individual}?
3)今年返税是和LD joint的,她要在今年一起申请ITIN,但是这些钱的receive... 阅读全帖
y****i
发帖数: 17878
33
sure you can DIY
Quicken WillMaker is one the best programs
generally speaking you don't have to hire a lawyer. you do need to sign your
will in front of at least two witnesses, and name a person you can trust in
your will as the executor to carry out the terms of your will.
if your situation is complicated, however, it is always a good idea to seek
professional help.
l****i
发帖数: 473
34
我也有这个问题.想汇些钱给爸爸买辆靓车.
IRS说:
May I deduct gifts on my income tax return?
Making a gift or leaving your estate to your heirs does not ordinarily
affect your federal income tax. You cannot deduct the value of gifts you
make (other than gifts that are deductible charitable contributions). If you
are not sure whether the gift tax or the estate tax applies to your
situation, refer to Publication 559, Survivors, Executors, and
Administrators.
so, 想省税几乎是不可能的。
被请去喝茶应该不会,楼主多虑了。

consultant
az
发帖数: 16686
35
来自主题: NextGeneration版 - 关于estate documents,遗嘱遗嘱 (转载)
【 以下文字转载自 Parenting 讨论区 】
发信人: az (邮箱又可以用了), 信区: Parenting
标 题: 关于estate documents,遗嘱遗嘱
发信站: BBS 未名空间站 (Wed Sep 29 23:25:40 2010, 美东)
自闭自闭,天才天才,bso bso,我来点新鲜的吧
最近看遗嘱文件,头昏眼花,胡乱简单总结下吧,我在麻州,听说有些规定是跟州的,
所以如果有误导,大家别怪我啊,就是想给点参考,总结下我大概齐办了点啥。如果说
错了啥,也别怪我哦,不是专业人士,自己也是摸着石头过桥呢,内容都是东拼西凑的
,见谅。如果那里错了不准确,提出来,我来改正,希望大家看了大概齐知道这遗嘱里
头都有哪些咚咚。
1.Will是啥,大家都知道,为啥做大家也都知道,如果俩人同时翘了,娃娃归谁是大家
最关心的事情,这也是我立遗嘱的初衷,anyway,用专业人士的话说will就是 name an
executor (the person who will be responsible for managing the financial
affairs of y
az
发帖数: 16686
36
来自主题: NextGeneration版 - 关于estate documents,遗嘱遗嘱 (转载)
办完了,更新了

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 typical simple will state that upon death, all assets are
left to the surviving spouse, and then to children in equal shares. 通常,
executor和guardian就是对方,如果俩人都死了,就轮到指定的al: ternative person
了。
financial and legal decisions for you if you are unable to m... 阅读全帖
R*********i
发帖数: 7643
37
Ding. Those are the issues that we can proactively take care of for our kids.
The cost for preparing a regular will should be ~$500. You can point someone
oversea to take care of the kids in your will, i.e. the kids do not have to
stay in the US. Only your will executor has to be in local area.
BTW, the life insurance policy as the company benefit will not go with you
if you leave the company. Hence it is sort of necessary to get your own life
insurance policy.
c**********0
发帖数: 624
38
contact an estate lawyer. the court will appoint an executor and will
follow either the will or intestacy law. I think your state is a common law(
seperate property) but you still have spouse's electives shares and annuity
in pensions.
l*********e
发帖数: 5385
39
☆─────────────────────────────────────☆
floatingmoon (floatingmoon2003) 于 (Thu Jul 11 15:09:45 2013, 美东) 提到:
今天惊闻一位波士顿宝宝的爸爸心脏病去世了,很为他惋惜。孩子还很小,宝宝的妈妈
未来一个人拉扯孩子的生活更为不宜。目前,宝妈除了情感的悲痛外,还因为不知道宝
爸银行卡的密码,无法取钱生活。由此,我想到几个法律问题请教。
第一,在美国要办哪些手续,需要花多久时间,遗孀才可以动用里面的钱?
第二,逝者与前妻有一子,那么,银行卡上的钱属于现在的夫妻共同财产归为遗孀所有
吗?还是要作为遗产进行划分?如果要划分的话,划分方法是什么?(国内好像是属于
夫妻共同财产,先将一半归为遗孀所有,然后另一半算遗产,均分给遗孀及所有子女)
第三,如果子女中有成年子女和未成年子女,遗产分配是不是不同?
第四,有没有相关税收问题?
还有没有其他应考虑的问题?
☆─────────────────────────────────────☆
mantoubaozi (馒头包子) 于 (T... 阅读全帖
az
发帖数: 16686
40
来自主题: Parenting版 - 关于estate documents,遗嘱遗嘱
自闭自闭,天才天才,bso bso,我来点新鲜的吧
最近看遗嘱文件,头昏眼花,胡乱简单总结下吧,我在麻州,听说有些规定是跟州的,
所以如果有误导,大家别怪我啊,就是想给点参考,总结下我大概齐办了点啥。如果说
错了啥,也别怪我哦,不是专业人士,自己也是摸着石头过桥呢,内容都是东拼西凑的
,见谅。如果那里错了不准确,提出来,我来改正,希望大家看了大概齐知道这遗嘱里
头都有哪些咚咚。
1.Will是啥,大家都知道,为啥做大家也都知道,如果俩人同时翘了,娃娃归谁是大家
最关心的事情,这也是我立遗嘱的初衷,anyway,用专业人士的话说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 t
az
发帖数: 16686
41
来自主题: Parenting版 - 关于estate documents,遗嘱遗嘱
基本上完全搞定了,只差把一些咚咚转入trust了,稍微更新了下,希望对大家有帮助

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 typical simple will state that upon death, all assets are
left to the surviving spouse, and then to children in equal shares. 通常,
executor和guardian就是对方,如果俩人都死了,就轮到指定的al: ternative person
了。
financial and legal decisio... 阅读全帖
S****d
发帖数: 43
42
来自主题: Parenting版 - 关于estate documents,遗嘱遗嘱
大赞!
不过找个trustee不容易啊

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 typical simple will state that upon death, all assets are
left to the surviving spouse, and then to children in equal shares. 通常,
executor和guardian就是对方,如果俩人都死了,就轮到指定的al: ternative person
了。
financial and legal decisions for you if you are... 阅读全帖
l**********e
发帖数: 138
43
来自主题: Parenting版 - 关于estate documents,遗嘱遗嘱
楼主能不能详细讲讲如何把assets放到trust里面去?是去银行办理吗还是在律师那里
写个什么文件就行?谢谢。

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 typical simple will state that upon death, all assets are
left to the surviving spouse, and then to children in equal shares. 通常,
executor和guardian就是对方,如果俩人都死了,就轮到指定的al: ternative person
了。
financial a... 阅读全帖
M******m
发帖数: 228
44
来自主题: Parenting版 - 关于estate documents,遗嘱遗嘱
赞。也正准备开始研究这个。
这些,will, POA, trust, 你都全部都办了吗?还是说只办了trust?

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 typical simple will state that upon death, all assets are
left to the surviving spouse, and then to children in equal shares. 通常,
executor和guardian就是对方,如果俩人都死了,就轮到指定的al: ternative person
了。
financial a... 阅读全帖
a****l
发帖数: 6431
45
来自主题: Parenting版 - 关于estate documents,遗嘱遗嘱
how to pick a lawyer?

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 typical simple will state that upon death, all assets are
left to the surviving spouse, and then to children in equal shares. 通常,
executor和guardian就是对方,如果俩人都死了,就轮到指定的al: ternative person
了。
financial and legal decisions for you if you a... 阅读全帖
I********k
发帖数: 1074
46
来自主题: Parenting版 - 关于estate documents,遗嘱遗嘱
az,问两个问题:
1. 这5项是找律师之前自己就要确定好选哪个呢?还是先找律师,律师会解释各种不同
,再指导你按自己的需求选一个呢?
2. 如果trust(item 5)写配偶的名字,那如果车祸或飞机出事,俩人都挂了,会如何呢?

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 typical simple will state that upon death, all assets are
left to the surviving spouse, and then to children in equal shares. 通常,
executor和gua... 阅读全帖
l*********n
发帖数: 4
47
来自主题: Parenting版 - 关于estate documents,遗嘱遗嘱
律师还提醒,如果不是美国公民,life insurance的owner最好要写成配偶的名字,否
则的话保险金是要给美国政府交税的,
--------------------
谢谢az,写得这么详细。关于上面这条,不太明白。首先,确认一下,配偶如果不是美
国公民,就还是要交税,是吗?另外,不是说保险的收益是免税的,甚至有人拿这个当
作避税手段吗?看来只适用于美国人?
\【 在 az (邮箱又可以用了) 的大作中提到: 】
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 typical simple will state that upon death, all a... 阅读全帖
R*********i
发帖数: 7643
48
来自主题: Parenting版 - 遗嘱上的人选问题
我所在的州要求executor是本州居民,我选了两家比较亲近的朋友。guardian是LG的妹
妹。要是我们都不在了,自然孩子要送回中国给亲人抚养。
y****i
发帖数: 12114
49
来自主题: Parenting版 - 遗嘱上的人选问题
父母同时挂掉的可能性还是很小的,如果EXECUTOR真如律师(通常是有执照的骗子)所
说就是傀儡,那么我个人倾向于找国内的亲人,找个老美,你能知根知底么?再说了,
你乐意,人家也不一定肯干啊。
m****n
发帖数: 1066
50
来自主题: Parenting版 - 遗嘱上的人选问题
Can the executor, trustee and guardian be the same person?
首页 上页 1 2 3 4 下页 末页 (共4页)