由买买提看人间百态

topics

全部话题 - 话题: sibling
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
f********t
发帖数: 6999
1
来自主题: SanFrancisco版 - 被VMWARE鄙视了(面经并求comment) (转载)
【 以下文字转载自 JobHunting 讨论区 】
发信人: lolhaha (长期骑驴,一直找马), 信区: JobHunting
标 题: 被VMWARE鄙视了(面经并求comment)
发信站: BBS 未名空间站 (Tue Apr 8 21:02:44 2014, 美东)
两年没面试了,想出来找找面试的感觉然后冲击一下版上公认的那些dream company,没
想到一出来就遭受当头一棒。
一月初的时候在linkedin上收到V公司recruiter的来信,说是在多伦多搞一个event,问
我有没有兴趣。
于是先做了一个online test,本来说还要有一个phone screen的,正安排的过程中一开
始联系我的猎头说直接来吧
这是2月中旬了,接下来的5-6周忙着手头的一个小project,业余时间大多给公司+网络了
,没什么心思准备。
3月21日开始,项目没什么问题了,开始刷了两周的leetcode,别的几乎什么也没看就匆
忙上阵了,本来只希望
积累点interview经验,为其他公司面试做准备。。。谁成想,两轮就被踢出来了。。。
旅程就不顺利,12点从家出来最后1... 阅读全帖
d**********o
发帖数: 1321
2
来自主题: WebRadio版 - 潜水员冒泡兼征版友意见
hw3 & hw3b与导师邮件
** from: (me~~) <(me~~)@gmail.com>
to: cs445代课老师
date: Sun, Nov 3, 2013 at 12:23 AM
subject: Hw3 problems __ 20131103001216
mailed-by: gmail.com
Hi Dr. cs445代课老师,
I have made some progress with my homework 3, but they are still very
limited and right now, I am blocked 2 problems.
1. How do I set scopes for function parameter declaration list? For example,
int main (int x, char y){ } when x or y has been declared global before
this fu... 阅读全帖
d**********o
发帖数: 1321
3
来自主题: WebRadio版 - 潜水员冒泡兼征版友意见
hw3 & hw3b与导师邮件
** from: (me~~) <(me~~)@gmail.com>
to: cs445代课老师 <[email protected]
/* */>
date: Sun, Nov 3, 2013 at 12:23 AM
subject: Hw3 problems __ 20131103001216
mailed-by: gmail.com
Hi Dr. cs445代课老师,
I have made some progress with my homework 3, but they are still very
limited and right now, I am blocked 2 problems.
1. How do I set scopes for function parameter declaration list? For example,
int main (int x, char y){ } when x or y has been declared global before
th... 阅读全帖
Y********d
发帖数: 1478
4
来自主题: Parenting版 - 论老大、老二性格差异
没有任何抬杠的意思,你列出的几点都有一定的道理。但是因为楼主本来就比较担心老
大的发展,请允许我说几点平衡一下你的论点。

“普天之下”,说明是统计上大样本成立的?有没有具体的文献可以参考?
有以下几个论点:
“受的罪少”定义不是很清楚,指妈妈受的罪少还是胎儿?胎儿受的罪没法知道,妈妈
受的罪从我爱宝宝版来看,怀老二时不一定比老大少,主要是怀孕的年龄上去了,身体
机能可能下降。
经验是有了,但是上心程度会不会低了?还有即便一样上心,会不会因为年龄大了力不
从心?
这个也取决于老大和老二的关系,有的老大太强会不会反而dominate or dwarf老二?
孩子多了以后,父母也可能因为更加疲劳,压力太大而失去耐心?
那么老大的性格会不会更加稳重,富有责任感和领导能力,同样也很有利于将来的成就?
因为觉得你说的和我说的都有一定的道理,而我们每个人都像是在盲人摸象(这只象你
应该真的摸过,我连皮都没有碰到过),所以我只能去找文献解答了。当然也因为楼主
给过我很多启发和帮助,我就给楼主当一次RA。
在 Google Scholar 里面找 birth order and child outc... 阅读全帖
s****y
发帖数: 581
5
有谁知道下面的配置算4个processor吗?是不是也是2 sockets?
>cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 7
model name : Intel(R) Xeon(R) CPU E5405 @ 2.00GHz
stepping : 6
cpu MHz : 1995.018
cache size : 6144 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 4
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 10
wp : yes
flags :... 阅读全帖
K*******g
发帖数: 26
6
来自主题: JobHunting版 - 今天的一道电面题,有点意思
跟你的思路一样,不过找第一个结点可以优化以下
struct Node{
int value;
Node *left;
Node *right;
Node *sibling;
};
void connect_sibling(Node *root){
root->sibling = 0;
Node *cur, *dummy;
dummy = new Node;
while(root){
cur = dummy;
while(root){
if(root->left){
cur->sibling = root->left;
cur = root->left;
}
if(root->right){
cur->sibling = root->right;
cur = root->right;
... 阅读全帖
d*******u
发帖数: 186
7
来自主题: JobHunting版 - 今天的一道电面题,有点意思
这个算法太牛了,不知我的理解对不对?
void connect_sibling( Node *root ) {
root->sibling = null;
Node *cur, *dummy;
dummy = new Node;
while( root ) { //dummy->slibling是指向上次下一层的最左节点。
cur = dummy; //这样保证dummy->slibling总指向最左节点
while( root ) { // 找上一层的最右边节点, 假设当前层sibling已连好。
if( root->left ) {
cur->sibling = root->left;
cur = root->left;
}
if(root->right){
cur->sibling = root->right;
... 阅读全帖
j*r
发帖数: 23
8
来自主题: JobHunting版 - Java面试题求解
public class Person {
Person father;
Person mother;
Gender gender;
Integer age;
List children;
int level = 0;
public enum Gender {
Male,
Female;
}
}
public List getOldestSisters() {
Person parent = father;
if (parent == null) {
parent = mother;
}

if (parent == null) {
return null;
}

Person oldestSister = null;

List siblings = pa... 阅读全帖
s**9
发帖数: 207
9
来自主题: JobHunting版 - 被VMWARE鄙视了(面经并求comment)
有点错,是 父结点的第一个有子结点的sibling的子结点

//for the case where Node current is its parent's right child, or it's the
left child and its parent has no right child:
Node p=parent;
while(p.left==null && p.right==null && p.sibling!=null){
p=p.sibling
}
if(p.left !=null){
current.sibling=p.left;
}else if(p.right !=null){
current.sibling=p.right;
}else{
current.sibling=null;
}
S*******r
发帖数: 11017
10
来自主题: EB23版 - dream act通过众议院了
没有那么严重了,大家请看:
http://en.wikipedia.org/wiki/DREAM_Act
2010
The 111th Congress continued to consider the DREAM Act bill throughout 2010.
S.3992, a new version of the DREAM Act, includes numerous changes to
address concerns raised about the bill. Among other things, S. 3992:
Does not repeal the ban on in-state tuition for undocumented immigrants. The
DREAM Act would not allow undocumented immigrants to receive in-state
tuition. The DREAM Act also continues to prohibit students from obtaining
Pell a... 阅读全帖
l****z
发帖数: 29846
11
by Bruce N. Eimer, Ph.D
The question is often asked, “what is the best handgun for concealed carry?
” There are many valid answers to this question and they usually begin with
, “well, it depends on a number of factors.” However, in my humble opinion
, there is one universally valid answer, and that is, “it is the gun that
you have on you when you need it.” With that said, the purpose of this
brief article is to make you aware of twelve handguns that are so easy to
carry, that there is no excuse... 阅读全帖
l****z
发帖数: 29846
12
October 15, 2012 by Warner Todd Huston
It has been said that the students and faculty of Harvard University are
America’s “best and brightest.” This month they prove this axiom to be
mythological as they once again launch their annual “incest-fest” party
where residents of the famed Kirkland House spend the day trying to have sex
with as many house members as they can. Winners get a hearty handshake of
acknowledgement and perhaps some STDS for their “success.”
Harvard’s denizens inventively cal... 阅读全帖
c*****n
发帖数: 96
13
来自主题: JobHunting版 - Google second phone interview
For the first question:
// Assumption: all node's sibling property is null before calling
// the function.
void linkSibling(Node root){
if (root == null) return;
if (root.left != null){
root.left.sibling = root.right;
}
if (root.right != null ){
root.right.sibling = root.sibling == null ? null : root.sibling.left;
}
linkSibling(root.left);
linkSibling(root.right);
}
c*****n
发帖数: 96
14
来自主题: JobHunting版 - Google second phone interview
For the first question:
// Assumption: all node's sibling property is null before calling
// the function.
void linkSibling(Node root){
if (root == null) return;
if (root.left != null){
root.left.sibling = root.right;
}
if (root.right != null ){
root.right.sibling = root.sibling == null ? null : root.sibling.left;
}
linkSibling(root.left);
linkSibling(root.right);
}
b***d
发帖数: 2695
15
来自主题: Parenting版 - 来请教生日party请谁的事
我们当时K的时候party
1。 K班上的同学
全部发了邀请,根据去别的同学的party观察,预计能来一半到2/3,
结果,只有2个没来;1个没回复也来了;
注明 no sibling
2。after school 中文学校班上的同学
只请了两个,best friends,家长很熟,经常周末一起玩
带了 siblings
3。K同校不同班但同时上after school的小朋友
只请了一个,老外,对我们很热情
4。after school 原来暑假时认识的其他好朋友
只请了一个,best friends,家长很熟,经常周末一起玩
带了sibling
最后一共大大小小25个多孩子吧,反正goodie bag没有准备够。
能来多少,自己心里应该有点谱儿, 如果你跟别的孩子的家长很熟,
估计会来得多一些。
有drop off的,大部分家长都在,我跟他们都比较熟
孩子的一个朋友party,老外,先说带sibling,结果人太多,只好发信
跟大家说超额,不能带sibling。 所以,relax,可以随时调整人数。
good luck~
d**********o
发帖数: 1321
16
来自主题: WebRadio版 - 潜水员冒泡兼征版友意见
关于作业( hw3 & hw3B)
** from: (me~~) <(me~~)@gmail.com>
to: cs445代课老师 ,
profcs445代课老师@gmail.com
date: Thu, Nov 14, 2013 at 9:34 PM
subject: HW3B OpK
mailed-by: gmail.com
Dr. cs445代课老师,
I think I still didn't get the bug fixed yet with the OpK we have worked on
this afternoon.
Could you please help me look into it? I think I need some idea here.
thanks,
(me~~)
** from: cs445代课老师
to: (me~~) <(me~~)@gmail.com>
date: F... 阅读全帖
d**********o
发帖数: 1321
17
来自主题: WebRadio版 - 潜水员冒泡兼征版友意见
关于作业( hw3 & hw3B)
** from: (me~~) <(me~~)@gmail.com>
to: cs445代课老师 <[email protected]
/* */>,
profcs445代课老师@gmail.com
date: Thu, Nov 14, 2013 at 9:34 PM
subject: HW3B OpK
mailed-by: gmail.com
Dr. cs445代课老师,
I think I still didn't get the bug fixed yet with the OpK we have worked on
this afternoon.
Could you please help me look into it? I think I need some idea here.
thanks,
(me~~)
** from: cs445代课老师 <[email protected]
/* */>
to: (me~~) <(me~~)@gmail.com>
d... 阅读全帖
I********e
发帖数: 6130
18
嗯, 我认识的美国人(他们父母双方都是美国人)对他们的half siblings, step
siblings, adopted siblings都跟同父同母的siblings没什么区别. 我以前的一个
intern 有四个siblings,每一个都不和他同父同母,他是最小的,他的哥哥姐姐对他都很
照顾. 我问过几个比较close的朋友,他们说感觉上没区别.
s***n
发帖数: 812
19
来自主题: Poetry版 - In one room
//headdown...呆头鹅自况,难得有感而发一下,我个人环境下:
climb的songs,我期望的sibling代表不稳定又对立的两方。。。songs/birds/父亲
都代表我自身弱(特)点,是“我”的ego,sibling是我期望的携带着我基因的现实,
不过我并没有sibling,那么这虚构的sibling所能承担的期望,虽然诚挚却不能预示任
何行动。我个人的判断是实际还是只能依靠我的鸟儿们了。。。然而我对sibling的期
待又导致我必然有意和这些小鸟保持距离,对小鸟们into的cloud也持怀疑态度,high
固然令人向往,hanging却荒诞滑稽了,hanging的high与其令人向往,不如说教人无奈
罢。
至于这个无奈的ego,大概有飘忽在外的倾向,令前人要死要活的严正问题,那些不同
的clound,在我(ego)这里,也只是某一只bird途径好奇观光之处,所以保持拘谨的
克制,辗转反侧但终归是寤寐不求吧。而即使辗转反侧落到笔下也伤怨全脱了,所以我
吹嘘说小雅么。
本身这小诗,除了短了点(有气无才写不长哈,莫办法),写的时候有个人背景,但读
起来我觉得有空间可以任君嬉... 阅读全帖
t*****r
发帖数: 543
20
靠谱吗?
USA
Sibling rivalry: Parents do have a favorite child, usually the first born
Published: 12 Apr 2016 | 15:32 GMT
Reuters
Siblings who have long suspected they weren’t their parents' favorite
child now have scientific evidence to back up their fears.
A University of California study of 768 parents found 70 percent of mothers
and 74 percent of fathers admitted they had one child they preferred.
Though parents didn’t specify which child made the top of their list,
scientists believe the oldest... 阅读全帖
d*b
发帖数: 4453
21
来自主题: Military版 - 应该是媒体界对亚男的一种歧视
廊坊五毛懂个鸡巴毛美国! 难为你们不懂洋文,google不出来。 那我帮你一下好了。
美国这地方,不象你们廊坊,女的要给领导日,男的要把他妈给党委书记日才能上位。
在美国,只要你有本事,有能力,别说黑人当总统,就是亚裔小黄人照样凭当电视主
播。
Lia Chang: Fox 5 News NY (WNYW-TV) reporter Ti-Hua Chang Receives AAJA
National Journalism Award for story which explores Asian American Poverty in
New York
Lia Chang: Fox 5 News NY (WNYW-TV) reporter Ti-Hua Chang Receives AAJA
National Journalism Award for story which explores Asian American Poverty in
New York
Ti-Hua Chang
Kudos to Fox 5 News NY (WNYW-TV) reporter Ti-Hua C... 阅读全帖
g********d
发帖数: 4174
22
来自主题: QueerNews版 - designer babies
France sees first 'saviour sibling'

PARIS (AFP) – Doctors in France on Monday announced the country's first
birth of a "saviour sibling," selected at the embryonic stage to be a close
genetic match to save a brother or sister suffering from a fatal inherited
disorder.
The baby was born at the Antoine Beclere Hospital in Clamart, in the suburbs
of Paris, said doctors Rene Frydman and Arnold Munnich.
The child, born to parents of Turkish origin and named Umut-Talha (Turkish
for "our ho... 阅读全帖
k*********6
发帖数: 738
23
听起来挺麻烦的,俗话说救济不就穷。你老公是要求你救穷了...
还是按大家出的主义,两边端平,公婆这边拿钱点爆竹也不去管吧。。。。要是只给公
婆这一边,只怕你陷进大黑洞。。。给公婆钱当然可以,但我个人很反感拿我的钱变相
去养公婆其他孩子。帮忙救急可以。 孝顺要是孝到老公sibling上,没这个道理。
我见过这种情况,一对夫妻公婆都觉得老公sibling贫困需救济,其实sibling 满手
apple, ipad, ipod 一应据全,日子过的天天打麻将还嫌累,这边这对夫妻双职工养娃
加班忙的像狗,还舍不得买个ipad...前段时间跟我们打听deal想买ipad了,我说不是
你们去年就买了吗?答曰送sibling了。
w***n
发帖数: 58
24
来自主题: JobHunting版 - 回馈本版 众小公司面经
骑驴找马告一段落 从了某preipo的 在此献上 面经
这次感觉coding题都不难 主要是design 甚至flag preipo的coding题比很多小的公司
都简单 但是design更难
flag 和 preipo的面经不能放上来 主要是不敢得罪这些签了NDA的
很多题目没有正确答案 在于想法 以及tradeoff
sift science (offer):
1 given a nxn chessboard, there are only pawns (white and black) on it. Say
one side is the start and its opposite side is the end. There is one white
pawn on the start row, what are the cells that could be reached on the end
side.
2 given a binary tree, implement sibling (each nodes sibling is the next
node of th... 阅读全帖
t**x
发帖数: 20965
25
来自主题: NextGeneration版 - XYY染色体怎么样?
wiki 上的:
Physical traits
47,XYY boys have an increased growth velocity from early childhood, with an
average final height approximately 7 cm (3") above expected final height.[4]
In Edinburgh, Scotland, eight 47,XYY boys born from 1967–1972 and
identified in a newborn screening program had an average height of 188.1 cm
(6'2") at age 18—their father's average height was 174.1 cm (5'8½"),
their mother's average height was 162.8 cm (5'4").[1][5] The increased gene
dosage of three X/Y chromosome... 阅读全帖
c*******u
发帖数: 12899
26
来自主题: NextGeneration版 - [合集] 一个非独生子女的自白
☆─────────────────────────────────────☆
NONONO123 (no) 于 (Wed Mar 28 18:35:04 2012, 美东) 提到:
这些天板上好多讨论生一个还是生两个的问题
看到很多妈妈说,生两个是为了给孩子一个伴,很是sweet
我是非独生子女,很庆幸有妹妹这个伴
不过我想讲讲自己从小到大的经历,不代表任何人,纯讲故事
我爸妈都是普通市民,我们家就是普通小市民家庭
我们那个generation,很多人都是独生子女
但是爷爷想要孙子,所以爸妈生了第二胎,不过是个妹妹
所以我们家就2孩子,
记得那个时候,同一单位的住在一起,家家收入差不多,
房子也差不多,所以从小我就跟妹妹share房间,share床
穿差不多的衣服,爸妈也尽力给我们提供必需的条件
然后也积极为我们的将来省钱,我想我爸妈应该是我周围的父母中比较辛苦的
吃的穿的也基本上比别人家会差一点,这个还是看的出来的
我从小羡慕其他的朋友有自己的房间,觉得有自己的天地,
可惜我只有自己的一个抽屉
还经常被妹妹撬开偷看我的日子,从此以后我就不写日记了
我跟妹妹小时候关系其实并... 阅读全帖
c**i
发帖数: 6973
27
I have no sympathy for people like you.
You deserve punishment, which God will mete out in due course (see next, for
example).
(1) I myself was abused--both physically and emotionally--when I was a boy
in Taiwan. By my parents. After I grew up, I have turned my back on them. I
have no idea if they are alive or not. Go to hell, I say.
(2) What is wrong with Chinese culture, into which Taiwanese culture may
arguably be subsumed?
subsume (vt): "include, incorporate"
YAN FAN ZHU gained notoriety in ... 阅读全帖
G***Y
发帖数: 9698
28
移民局的网页并没有提及父母的结婚公证, 除非这不是你的亲生妹妹,
Eligibility
To petition to bring your sibling (brother or sister) to live in the United
States as a green card holder, you must be a U.S. citizen and at least 21
years of age. Permanent residents may not petition to bring siblings to live
permanently in the United States.
Required Documentation
To successfully complete the process, the U.S. citizen petitioner (i.e. the
sponsor) must submit:
A completed Form I-130. (Note: You do not need to file a separate Form I-... 阅读全帖
s*****i
发帖数: 5548
29
☆─────────────────────────────────────☆
tonli (--) 于 (Sun Mar 24 00:26:21 2013, 美东) 提到:
小孩被TH Rogers kindergarten 接受了,但是离现在住的地方远(Medical center),
如果去那里上学估计还要搬家。有谁的小孩在TH Rogers 上学,能分享一下第一手的资
料吗?网上看的review都说学生学习成绩很好,不知道其他方面怎么样。还想用这个G/
T考试成绩申请近一点的学校,比如roberts,Horn 或者West U,不知道行不行。
如果去TH Rogers上学,住哪里比较方便一点上学,去Medical center也稍微方便一点?
先谢谢了!
Btw,不知道Medical center周围有没有carpool去TH Rogers的?
☆─────────────────────────────────────☆
yapple (稳似泰山共携手,陶然一笑友情深) 于 (Sun Mar 24 00:55:26 2013, 美东) 提到:
这个学校非常... 阅读全帖
z***y
发帖数: 7151
30
MM表担心。 最重要的是心情放松, 把第一个孩子当成第二个孩子养。
我给你看一篇文章吧:
原文出处:http://washingtonparent.com/articles/1103/parent.php
btw, 我觉得这个group还是很有益处加入地:
Relax and Enjoy
Tips From a Seasoned Parent
By Claire Yezbak Fadden
I didn’t like being the youngest. I’d complain about not being allowed to
do the same things my brothers, George and Paul, and my sister Sadye did. It
wasn’t fair that I had the earliest bedtime. It was no fun being the baby.
My older siblings’ viewed it differently. They thought I had the special
spot... 阅读全帖
t***y
发帖数: 182
31
英文原文对照:
It can be maddening when the planets send mixed messages. This has been
going on since last month, so it is no wonder you may feel anxious and on
the horns of a dilemma, unable to see the road ahead clearly. On one hand
the eclipse season is upon us, and eclipses push us hard to step with the
times and to fix any weaknesses that these lunar and solar events uncover.
They certainly make us attend to things with a sense of urgency.
On the other hand, Mercury is retrograde, and will remain ... 阅读全帖
s*****g
发帖数: 7857
32
来自主题: Biology版 - [bssd]sex chromosome 47xyy
再多一句嘴。
看看孩子口内舌头下面(放口试体温计的地方),有个膜连接舌头和下巴。如果这个膜
宽(或连接舌头和下巴的地方长/多),这个也影响孩子说话(不清楚或晚)。
我sibling小时候就长/宽,我同学妈妈在我sibling说话前就在注射室里(还不是手术
室里)(厂矿卫生院)(前后没有一分钟!)拿把消毒的手术刀给我sibling割了一刀
。(都没有见血)这样膜的连接就少了,舌头就灵活了。我sibling也没有说话晚或说
话不清楚的问题出现。
而我回想起来已经是我家娃四岁左右了,国内外儿童医院都看过。我家娃没有那么严重
。就没有割。但是我想这也是个说话晚的原因,因为娃地舌头比别的孩子发音阻力要大
些,吃力些。但是现在完全没有问题了。还纠正我英语发音呢。(当时我自己都想给孩
子割了,着急啊,可是平时做生物试验毫不含糊,可对自己娃,下不了手。也就没有割
。)
不过我真的感觉你们孩子不会是xyy的问题。放宽心。做父母,恒心和爱心一样都不能
少,磨炼得不得不这样。
我家娃和我小时候以及我家领导小时候一点也不一样。我们都是家长不操心就是学习好
,文体活动好地孩子。还是孩子头或这个“长”,那个“长”... 阅读全帖
w******y
发帖数: 4871
33
来自主题: Neuroscience版 - 侄女发热后抽搐,癫痫治疗
Febrile seizures
Author
Marvin A Fishman, MD
Section Editor
Douglas R Nordli, Jr, MD
Deputy Editor
Janet L Wilterdink, MD
Last literature review version 19.1: January 2011 | This topic last updated:
February 3, 2011 (More)
INTRODUCTION — Febrile seizures are a common cause of convulsions in young
children. They occur in 2 to 4 percent of children younger than five years
of age, but the incidence is as high as 15 percent in some populations. This
incidence has been attributed to closer living arr... 阅读全帖
b******n
发帖数: 837
34
来自主题: _K12版 - 报告一下生日party
多谢多谢!你JCPENNY得能不能给各LINK?我这次没有邀请SIBLING,实在是,sibling
太多了,最好的那个小朋友家里5个!另外两个,家里一个4,一个3。感觉我都亏了,
才俩。如果以后我办滑冰的,也邀请sibling。因为那个要家长陪着,sibling一定的带
着。
W*****B
发帖数: 4796
35
来自主题: Military版 - 现在连Morgan
Moses Farrow Defends Woody Allen, and His Family Pushes Back
Moses Farrow, the adopted son of Woody Allen and Mia Farrow, posted a 4,600-
word essay on Wednesday defending his father against sexual molestation
allegations and claiming his mother was abusive.
In the blog post, titled “A Son Speaks Out,” Mr. Farrow, 40, described
repeated spankings by his mother and other abuse, and what he called “a
deep and persistent darkness within the Farrow family.”
He recalled, too, his version of the event... 阅读全帖

发帖数: 1
36
来自主题: USANews版 - Wikileaks 爆料啦
————————————————————————————
wiki了下John Podesta其人,他是希婆的campain chair,注意他的sibling叫Tony
Podesta:
https://en.wikipedia.org/wiki/John_Podesta
John David Podesta is the Chairman of the 2016 Hillary Clinton presidential
campaign....
Spouse: Mary Podesta
Siblings: Tony Podesta
————————————————————————————
wikileaks里面提到的Podesta Group网站如下,其founder和chairman Tony Podesta正
是John Podesta的sibling:
http://www.podesta.com/talent/tony-podesta
Tony Podesta | Founder & Chairman
————————————————————————————
Podesta... 阅读全帖
l****n
发帖数: 144
37
【 以下文字转载自 NextGeneration 讨论区 】
发信人: loulan (出差出差出差), 信区: NextGeneration
标 题: 说说我周围的美国人怎么养老
发信站: BBS 未名空间站 (Wed Feb 20 11:58:47 2013, 美东)
很多老黑年轻的时候自己都搞不定,就不提他们老了怎么办了。劳模们很多是天主教徒
,家庭观念挺重的,和传统中国家庭挺相似的。我这里主要说说老白,在红脖子州生活
的纯老白们怎么养老的。
1. 我的大老板。
大老板是本地人,但是娶了个澳洲老婆。后来就搬去澳洲住了。现在50多岁,前两年回
来了,因为他妈妈身体不好了。 他妈跟他的sibling临近,在离我们的城市4个小时的
地方。因为行业问题,他只能在这个城市工作。但是他除了特殊情况,经常周四周五请
假,开车带着老婆看老妈去了,周日晚上才回来。坚持了大半年,直到老妈去世。
2. 我的直接老板
直接老板60多岁了,已经退休了又被返聘的。 他的老妈去年90岁去世的。老爸很早就
去世了。 他老妈一直和他哥哥一家住在一起,得了帕金森症10几年。全靠他哥哥一家
照顾。 他也经常去看望,... 阅读全帖
l**a
发帖数: 12455
38
来自主题: Family版 - 夫妻矛盾,有解吗?
你老公实在没事找事
实在不行的话,找你老公的siblings和你公婆私底下谈一谈,让你老公的siblings去劝
老人不要来,可以把在这里可能遇到的问题都说给他们,而且让你老公的sibling感觉
到如果老人来了你们这里,他们的开销也会加大,因为这里医疗很贵,等等
f*******t
发帖数: 7549
39
来自主题: JobHunting版 - large file的一道题
这个是很基本的数据结构,建议看一下wiki
我前几天实现了它,只有基本的insert和search,没有对查找child list进行优化,代
码贴出来供参考:
#include
#define MAX_LENGTH 64
using namespace std;
static char buff[MAX_LENGTH];
class Trie {
public:
Trie();
Trie(char value);
bool Insert(const char *str);
bool Search(const char *str) const;
void PrintAll(int pos) const;
private:
char _value;
Trie *_sibling;
Trie *_child;
};
Trie::Trie()
{
_value = 0;
_sibling = NULL;
_child = NULL;
}
Trie::Trie(char value)
... 阅读全帖
q****x
发帖数: 7404
40
来自主题: JobHunting版 - aixiang面经疑云重重
4. Design a timing mechanism: when a packet is received, cancel the
timing;
otherwise, start timing until time out. Suppose each timing object has
different expiration period?
没看懂。
5. Given an integer, print out its square root
返回整数根?是最接近,还是小于且最接近?
6. An integer array of size m + 1 with m unique element, find the
duplicate
one
排序和散列两个方法,没更好的吧?
7. Given a function to read/write data from/to hard disk. Req(r/w, addr,
size, buffer), e.g.Read_write(read, 0, 5, …), Read_write(read, 5, 3, …).
This fun... 阅读全帖
l*****a
发帖数: 14598
41
来自主题: JobHunting版 - 被VMWARE鄙视了(面经并求comment)
那你看看我的comment
如果sibling没有children而sibling的sibling有呢?你挨个找下去?
最优解是只用一个dummy node然后逐层处理
e*****u
发帖数: 567
42
这里有教你如何减少Expected Family Contribution的办法。与大家共享。
http://www.finaid.org/fafsa/maximize.phtml
Maximizing Your Aid Eligibility
Believe it or not, there are strategies for maximizing your eligibility for
need-based student financial aid. These strategies are based on loopholes in
the need analysis methodology and are completely legal. We developed these
strategies by analyzing the flaws in the Federal Need Analysis Methodology.
It is quite possible that Congress will eventually eliminate many of thes... 阅读全帖
f****y
发帖数: 91
43
来自主题: NextGeneration版 - 到底要不要老二
所以说好像吗, 嘻嘻,但是POINT 应该是, 诺奖中SIBLING的概率大于人群中SIBLING
的概率的 (记得以前看过的, 懒的查啦)
要想真正看SIBLING的作用,还是推荐TIME的那个ARTICLE,见前贴。
b*********s
发帖数: 501
44
来自主题: NextGeneration版 - 这里有铁了心只要一个孩子的吗?
You just said what I thought.
I never think sibling can be that supportive to each other.
Both of my parents have lots of sibling. The never get close or they never
want to care other siblings.
F**********e
发帖数: 1883
45
来自主题: NextGeneration版 - 一个非独生子女的自白
如果是两个孩子或者更多,siblings之间的感情还是和父母的表现和教育息息相关。父
母因为一个优秀而压制另一个以期望另一个也优秀,这种情况往往会引起siblings之间
的不和,更不要说很明显的偏心了。很多时候,父母会”借口“其中一个需要更多照顾
而忽略另一个。当一个孩子的父母确实比当几个孩子的父母容易很多,不用照顾每个孩
子的微妙心理。
在美国,一个小朋友很容易孤独。个人以为,siblings可以给他们更多的认同感,安全
感。
l****n
发帖数: 144
46
来自主题: NextGeneration版 - 说说我周围的美国人怎么养老
很多老黑年轻的时候自己都搞不定,就不提他们老了怎么办了。劳模们很多是天主教徒
,家庭观念挺重的,和传统中国家庭挺相似的。我这里主要说说老白,在红脖子州生活
的纯老白们怎么养老的。
1. 我的大老板。
大老板是本地人,但是娶了个澳洲老婆。后来就搬去澳洲住了。现在50多岁,前两年回
来了,因为他妈妈身体不好了。 他妈跟他的sibling临近,在离我们的城市4个小时的
地方。因为行业问题,他只能在这个城市工作。但是他除了特殊情况,经常周四周五请
假,开车带着老婆看老妈去了,周日晚上才回来。坚持了大半年,直到老妈去世。
2. 我的直接老板
直接老板60多岁了,已经退休了又被返聘的。 他的老妈去年90岁去世的。老爸很早就
去世了。 他老妈一直和他哥哥一家住在一起,得了帕金森症10几年。全靠他哥哥一家
照顾。 他也经常去看望,更多的是帮忙给钱。 他的岳母住在另外一个州,也80多岁了
,住得和他老婆的siblings临近。但一直自己住,最近想要有人一起住了,结果她岳母
自己的cousin, 70多岁了,也是没老公了的,自告奋勇和她住一起了。两人互相照顾。
然后我老板两夫妻驱车10几个小时请假几天过去... 阅读全帖
l*********e
发帖数: 5385
47
☆─────────────────────────────────────☆
seeseen (凉丝丝) 于 (Sun Aug 4 23:34:20 2013, 美东) 提到:
注:我家娃主动攻击的人只有他妹妹,没有攻击过其他小孩子,也没有发现没有同情心
弄死小动物的情况。他的反叛和攻击行为只是出现在我们教育他的时候。他不爽的时候
乱扔东西砸动心我很头疼。请大家给的建议focus在这几点。你们的回复我都在考虑。
谢谢,谢谢,
我家有一名快三岁的男娃。脾气很倔很大。如果不顺着他意他就抓到什么扔什么。不分
青红皂白乱扔,经常伤及无辜的妹妹,一次还把铁桶砸到妹妹眼角。
如果批评他,他抓狂了,随便就抬手对这爸妈乱打。
如果有时打他一两下,他绝对要还手。
我想问下,这是不是很严重的不良行为?还是terrible two造成的?
因为他人小力气小,抓狂打人也不严重,我们除了批评他,也没有更严重的惩罚。
我记得我小的时候从来不敢挑战父母权威的。三岁就和父母对打,长大不会是个白眼狼
吧?痛打他一顿吧,害怕他更有暴力倾向。time out他的时候他也是乱踢乱打,去跟他
讲道理他反过来打你。... 阅读全帖
p****i
发帖数: 6135
48
来自主题: Parenting版 - 被气哭了
pat, pat mm
这个我感同身受, 非常的有经验。
给你说说我的心路历程。
你的问题主要有两个: 一个是你对孩子的管教问题,一个是你对老公的态度问题。
第一个: 对孩子的管教问题。 sibling相处, 打打闹闹是不可避免的。
对于我们来说, 首先要认识到打打闹闹很正常的,难以避免的,
这样孩子们偶尔打打闹闹的时候, 自己relax一点, 不要太心烦,
不要太seriously的追究这个那个的责任。
其次, 咱们的最终目的肯定不是希望他们一辈子打打闹闹, 肯定希望兄友弟恭。
所以sibling打闹的时候, 父母也要认真的肃立规矩, 该罚的罚,该教育的教育,
该说道理的说道理。
总之,我觉得宁可家务少做点, 饭晚吃点, 吃的不好点。 也要下功夫把孩子的教育
做好。
sibling打闹的时候尽量早一点介入, 调解好了, 慢慢的让双方都明白,
如果冲突发生了需要怎样去解决。 家务事今天做完了明天还得做, 孩子调教好了,
慢慢的你就越来越省心了。
第二个: 对老公的态度问题。 讲老实话呢, 你老公已经算是做得很不错了。
以前,我也是经常的对LD不满意, 这些那些的我觉得比较common
l*******e
发帖数: 3566
49
我后来想了一下,其实作者有一个assumption,那就是大家把孩子的心理建设的
priority放得一样高。
但是,事实上,各家的priority都是不一样的。
我们age spacing短的,如果能重视心理建设,也能尽可能minimize sibling rivalry
;如果一对父母不太重视心理建设,即使孩子差4,5岁,sibling rivalry依然存在,
说不定不会比age spacing少的siblings做的更好。
所以,大家可以不必在这个问题上纠结。
p****i
发帖数: 6135
50
我自己开party, 是把邀请sibling都计划在内的。
去别人的party, 我也会打电话告知会带sibling
我觉的开party特别的注明不邀请sibling非常的不好
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)