由买买提看人间百态

topics

全部话题 - 话题: boundaries
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
s********x
发帖数: 914
1
来自主题: JobHunting版 - 有些面试题是够扯蛋的
这个有意思
v1理论上是 (nlog(n) + n)* T1 这个constant T1 不需要hash的operation,肯定要
小些
v1完全可以优化更多。
首先把array inplace quick sort, 这样就是ordered
然后search的时候完全不用linear time
贴一下哈(不知道v2和v3可否用这种思路)
// find longest increasing continuous sequence, better than O(n). a is
sorted already
public static int findLongestIncreasingContinuousSequence(int[] a) {
if (a == null || a.length == 0)
return 0;
int max = 1;
int end = 0;
// len = j - i + 1
int i = 0, k = 0;
... 阅读全帖
r***e
发帖数: 29
2
来自主题: JobHunting版 - BBC 编程风格面试题,求指教
最后个人标准答案
#ifndef _ROMON_HEADER_
#define _ROMON_HEADER_
#define _DEBUG_
#include
#include
//ROMON digits
const std::string ROMON_DIGITS[] = {"I","IV","V","IX", "X","XL","L","XC","C"
,"CD","D","CM","M" };
//ROMON scale
const int ROMON_SCALE[] = {1, 4, 5, 9, 10, 40, 50, 90, 100, 400, 500, 900,
1000};
const int ROMON_MAX = 3999;
const int ROMON_MIN = 1;
class RomanNumeralGenerator
{
public:
virtual std::string generator(int num) = 0;
};
class CRoman : public RomanNumeralGene... 阅读全帖
s******r
发帖数: 65
3
来自主题: JobHunting版 - 菜鸟总结的做题步骤,请大家指教
The interviewer cares about our problem-solving skills, coding skills,
analytical skills, design skills and communication skills. To show these
skills, solve the given interview problem in the following steps:
1: Clarify the question.
1.1: For algorithm questions, go through a few examples to clarify the
problem. Use pictures when helpful.
1.2: For design questions, ask for scenarios, requirements and
constraints
2: Specify input and output, design 3 ~ 5 test cases, including boundary
ca... 阅读全帖
a****n
发帖数: 1887
4
我的一点理解:
1. define users/roles
2. define domain boundaries
3. define use cases
以上都是communication的部分
4. define the interfaces (cross boundaries)
5. design your architecture.
其他相关的也可以谈谈, 例如 Test Driven Development,domain/model driven
design, use cases driven design 等等
f**********s
发帖数: 115
5
来自主题: JobHunting版 - 请教一下怎么写unit test
lz貌似问的就是怎么想test case啊
有好多种方法决定test case应该是什么, 比如要cover boundary, index off by 1之
类好多细节,除此之外还要考虑if else全部的branch coverage etc
有的时候你感觉全部boundary都cover了, 但是去改一下你的loop故意改错,test居然
还能过,就说明test写的不好。有些工具可以自动篡改你的code来验证test, 这种叫pi
test
要是想系统的学,推荐一本书fundation of software testing, by Aditya Mathur
b****t
发帖数: 112
6
来自主题: JobHunting版 - 求问一道MS面试题
基本步骤无非是sort(per machine)和merge(external merge).
1) Sort
for each machine:
sort top 1 Billion
2) Merge
merge 1 * 10 Billion into 1 Billion
优化设计:并行处理。设立中央控制器。
效果:a. 不必每个机器都占用1 billion内存 b.并行处理, 节约时间
Assume there is one independent server as the sorting controller.
The controller does the external file merge.
On each machine:
while (true)
{
communicate with controller:
{
get current low boundary
upload sorted value to the controller to merge
empty local cached
}
sort
{
... 阅读全帖
l*n
发帖数: 529
7
来自主题: JobHunting版 - G onsite面经 加求blessing
前面的递归还少了左方和上方pathmin相等时的处理。
下面的code我还用brutal force的比较过,用http://stackoverflow.com/questions/5498130/bit-manipulationprint-the-next-smallest-and-largest-numbers-with-same-no-of-1-b的nexthi_same_count_ones生成每个路径的01表示,两者能够match上。左方和上方pathmin相等时的情况就是用brutal force发现的。
int initStr(int[][] mat) {
assert (mat != null && mat.length > 0 && mat[0].length > 0);
int m = mat.length;
int n = mat[0].length;

int[][] accu = new int[m][n]; //cumulative
int[][] pathmin = new int[m][n];
for... 阅读全帖
R******9
发帖数: 267
8
来自主题: JobHunting版 - M面经
first print the left boundary, then all the leaves, and the right boundary.
1
2 3
4 5 6
7 8 9
should be 1 2 4 7 8 9 6 3.
void traverse(Node* root, bool left_most, bool right_most)
{
if (!root) return; // bottom condition
if (left_most) cout << root->val << ' '; //先序打印左边界

traverse(root->left, left_most, false);
if (!root->left && !root->right && !left_most && !right_most) cout <<
root->val << ' '; //中叙打印叶子
tr... 阅读全帖

发帖数: 1
9
来自主题: JobHunting版 - Jobrefer2017根本不是FB的
不是说谎,也是false statement,以自己的false statement判断别人造假更是不可信
你自己也说boundary case就有可能。boundary case应该很多吧
希望查下去,如果冤枉jiezheng,可以给jiezheng一个清白
c*******y
发帖数: 3008
10
来自主题: Living版 - 买近的townhome还是远点的SFH
schooldigger.com 查看学校和学区排名。 然后去学区的网站查school boundary
map, 然后在对比你的房子address是不是在所要的学校的boundary map以内。 学生组
成比例。
还要比较地税, 和小区附近的犯罪率, 人口组成成分, 附近有没有墓地, 高速,
路冲, 高压线, 手机基站等也要查。 厨房,HOA fee等都要比较的。
c**m
发帖数: 1457
11
http://www.mitbbs.com/club_bbsdoc/MA_Mortgage_Realestate.html
【 以下文字转载自 MA_Mortgage_Realestate 俱乐部 】
发信人: chem (Mortgage Consultant), 信区: MA_Mortgage_Realestate
标 题: Mortgage Loan Closing - Process Overview
发信站: BBS 未名空间站 (Mon Oct 24 22:59:21 2011, 美东)
The Mortgage Loan Closing When Buying a Home
Once your application for a mortgage loan has been approved and you have
received a commitment letter from the lender, the final step before you can
call the house your own is the closing, or settlemen... 阅读全帖
H******7
发帖数: 34403
12
来自主题: Living版 - 包子求助:邻居要砍我家的树
If the trunk of the tree extends over the boundary, this does not give you
the right to chop it down. A tree planted on your neighbor?s land belongs to
them, and they will be liable for any damage it causes.
---------------------------------------------
Who pays? If you have incurred costs in cutting back the roots and
branches on your side of the boundary, you probably will not be able
to claim them back from the tree owner.
But if the roots of your neighbor?s tree have damaged your... 阅读全帖
a****t
发帖数: 1056
13
来自主题: Living版 - 买房survey你们都做么?
survey is the final boundary. 栅栏不能确定boundary.就算栅栏是邻居安装,所有
权归他, 但地权可能归你, 你可以给他个期限30天之类移走.
p****j
发帖数: 4762
14
来自主题: Living版 - 今天quote了一下title insurance
我需要自己买owner's title insurance,所以去quote了一下。然后对方推荐了一个
area and boundary coverage. 这个有必要买吗?属于standard coverage之外的部分。
我的左右,后面都是邻居,是不是以后会有boundary纠纷?
c**********e
发帖数: 2007
15
The MLS statement says "flood zone: AE, X".
The property is fully in zone X. The lot is also in zone X.
The only problem is that the lot's boundary is the boundary of the AE zone.
o*********r
发帖数: 203
16
来自主题: Living版 - 这个邻居真是烦死了
Neighbor Law: Fences, Trees, Boundaries, & Noise (may be found in city
library) defines everything you need to know about
- Fences
- Trees
- Boundaries
- Noise
The neighbor may not be obligated to do anything.
f******r
发帖数: 2136
17
来自主题: Living版 - 问个初级的学区问题
每个小学中学都有自己的boundary,你可以查查boundary就知道去哪个学校了
l******e
发帖数: 1875
18
原来的图和发帖见这个链接:
http://www.mitbbs.com/article_t0/Living/33176821.html
今天surveyor告诉我们fence刚好就不偏不歪地在property line上,这样的情况下我们
还有权利要求邻居不要把material pile到fence处,不要把fence当retaining wall么
?如果fence真如surveyor说的,刚好在property line上,那意味着这个fence是两家
的共有财产么,他们也没有权利施加损害把?
另外这次survey发现前院邻居种的灌木、水管等utility、还有一些横向的fence都深入
到我们property内,我们可以以这些为把柄给对方提要求么?
另外正常survey有可能有几个inch的误差么?今天的结果让我们很吃惊,我怀疑他要么
有误差,要么故意造成这种误差,因为:
1:surveyor他之前告诉我们如果boundary在邻居那边他需要到邻居那边去测,今天从
楼上看了下他在邻居院子那边survey了很长时间,我们还以为按他之前的说法,
boundary肯定在邻居那边,所以没... 阅读全帖
c****o
发帖数: 32446
19
【 以下文字转载自 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 immigr... 阅读全帖
M***o
发帖数: 9
20
因为已经有一个房子了,但是学区太差了,在附近买了个townhouse。本来是准备把现
在房子出租,自己住townhouse。结果贷款遇到问题了。已经补充好多材料
先写一个statement,说因为学区的原因,所以想换一个房子
然后underwriter又觉得说这两个房子太近了。还是只能算investment
我又写了一个statement,因为上班就在这边,当然就在附近看房子啊。不是很正常的
事情吗。
然后又补充了一个把现在房子出租出去的lease agreement + deposit
之后把hoa的资料都找出来了,说townhouse这个必须owner occupy 两年以上才能出租
,尼玛这么多资料面前,竟然
underwriter还是不同意,我只有escalate我的case啊,结果折腾了两天现在情况又要
补充一个学区出一个证明,说not allowing any boundary exceptions。
我都想骂人了。明明两个不同的城市,学区当然不一样,虽然距离很近。搞了这么多证
据。。。。。真的是搞死我了。。。。。。哎
不知道是不是就我运气太差了。。。周一还得去学区问问看他... 阅读全帖
e*i
发帖数: 10288
h*********t
发帖数: 2552
22
来自主题: NextGeneration版 - 楼上的人很吵,有什么办法啊?
http://www.tenant.net/Other_Areas/Calif/misc/noise.html
How to Get Neighbors to Turn Down the Noise
by Cora Jordan
Copyright (c) 1994 Nolo Press
This article originally appeared in the Fall 1994 issue of the Nolo News. It
was adapted from Neighbor Law: Trees, Fences, Boundaries and Noise (2d
edition), published by Nolo Press. You may copy this article as long as you
include this copyright notice.
Talk to Your Neighbor
Get a Copy of Your Local Ordinance
Warn Your Neighbor in Writing
Suggest Media... 阅读全帖
h*********t
发帖数: 2552
23
来自主题: NextGeneration版 - 昨晚楼下的印度人开party
http://www.tenant.net/Other_Areas/Calif/misc/noise.html
How to Get Neighbors to Turn Down the Noise
by Cora Jordan
Copyright (c) 1994 Nolo Press
This article originally appeared in the Fall 1994 issue of the Nolo News. It
was adapted from Neighbor Law: Trees, Fences, Boundaries and Noise (2d
edition), published by Nolo Press. You may copy this article as long as you
include this copyright notice.
Talk to Your Neighbor
Get a Copy of Your Local Ordinance
Warn Your Neighbor in Writing
Suggest Media... 阅读全帖
E*******a
发帖数: 207
24
来自主题: NextGeneration版 - 刚出月子就闹离婚
建议去看婚姻辅导,Marriage Counselling.
可以找付费的专业辅导,或者去教会找牧师。
你丈夫的许多行为是越界,不可以接受的。
推荐看这本书:Boundaries in Marriage
Learn when to say yes and when to say no--to your spouse and to others--to
make the most of your marriage Only when a husband and wife know and respect
each other's needs, choices, and freedom can they give themselves freely
and lovingly to one another. Boundaries are the 'property lines' that define
and protect husbands and wives as individuals. Once they are in place, a
good marriage can beco... 阅读全帖
l*********e
发帖数: 5385
25
来自主题: NextGeneration版 - [合集] 刚出月子就闹离婚
☆─────────────────────────────────────☆
wshxzt (wshxzt) 于 (Sat Dec 1 15:00:40 2012, 美东) 提到:
事情起因就因为我同事给了个graco 22得car seat,我看graco literider stroller在
amazon上说accept all graco car seat,我就入了一个。寄来了才发现他和22不配套
。然后lg怒气冲天要我去把22那个在ebay上卖了,再买个新的。我现在每天带娃,半夜
要起2,3次,每次都要喂奶后泵奶,宝宝睡觉还时不时大叫,晚上根本睡不好。宝宝白
天睡不好,放下就哭,基本都要抱着,白天也是我带,妈妈就做饭,在我泵奶时候抱一
下娃。宝宝一切东西都是我操心,从研究要买啥,到找deal,因为老公比较ws,我只能
买必须要买的,否则被他训斥(其实都是我出钱的。。。)。我妈妈最近还走路上被人
撞,对方没有保险,申请补助联系律师都是我操心,我实在累死不想多折腾了,就说我
不想搞。老公出去不久后突然冲进来冲着我和宝宝大吼大叫要离婚,还从我怀里强行抢
走宝宝。
其实... 阅读全帖
s******t
发帖数: 12883
26
你这个结论基于open boundary condition,
而事实上是个有限势垒boundary, 只有能量够高的个人才有足够的机会跑出去.
无产阶级在任何时候都是没有能力选择国家的. 除了那些极少数的冒巨大风险的偷渡者
.
你看看那些达官贵人富豪影星, 有几个没有至少一本外国护照?
i*******y
发帖数: 109
27
如果我理解没有问题的话,你可以参考下下面
Interdistrict Transfer Because of Parent Employment/Allen Bill
California Education Code Section 48204(b) (Outside Source) permits a school
district to deem a pupil to have complied with the residency requirements
for school attendance in the district if at least one parent/guardian of the
pupil is physically employed within the boundaries of that district. Once
admitted to residency, the pupil’s transfer may be revoked only if the
parent ceases to be employed within the bou... 阅读全帖
S*********g
发帖数: 5298
l******a
发帖数: 16364
29
来自主题: Parenting版 - [合集] 话说leadership
☆─────────────────────────────────────☆
crisy (糖糖妈) 于 (Wed Mar 14 15:14:53 2012, 美东) 提到:
小女3岁4个月大。她的preschool的老师一直说她有"leadership"(很有可能是客套话).
这个特性,以前表现在组织班上的小朋友一起玩游戏。这是好的一面。
最近表现在,教唆小朋友帮她从别的小朋友手里抢玩具(自己不去抢),拿来给她玩;
让别的小朋友把玩具带到高处(老师规定不准),这样她可以在高处玩这些玩具等等之
类的事情。这是不好的一面。
请问,有没有经历过类似的孩子的父母,如何去掉不好的一面,保存好的一面?
还是说这个很常见,是小孩发育的必经之路?
请指教,谢谢!
☆─────────────────────────────────────☆
lulakoala (lulakoala) 于 (Wed Mar 14 15:20:04 2012, 美东) 提到:
A very smart girl! As long as she knows where to draw the lin... 阅读全帖
i**e
发帖数: 19242
30
边听娃娃哭,边按照自己的理解叨叨贝
哦,宝宝喝饱啦,不想再喝啦,要玩啦?好地,咱不喝了,妈妈先把xxxxxx弄好,就陪
你玩一回;
哦,宝宝想要这个东西啊,以后大了就可以指给妈妈看了,就不用哭叫了;来妈妈帮你
拿过来,喜欢啊,看看好玩不?这是个啥啥啥,摸摸看,软吧?闻闻看,香吧?blah,
blah,blah
娃娃的需要得到了满足,或者注意力得到了转移,自然就不会哭了,慢慢知道怎么用别
的方式给你提供cues,而满足自己的需求了
还小啊,limits/boundary,再等等
娃娃哭着,你叨叨着把需要处理的事处理了,再满足娃娃的需要,不就是教娃娃耐心等
待,教娃娃boundary嘛
t*******r
发帖数: 22634
31
来自主题: Parenting版 - 这两天的高楼收获颇多
学校里面因为 rule 跟 regulation 很清楚,所以大部分情况不需要
time out。。。
家里有所不同,rule / regulation 不是那么一刀切,还看父母的性格。
俺的两娃都是 strong-willed 加 critical think 的那种,搞不清
rule 就反复 test boundary 在哪里。。。有时候也搞得鸡飞狗跳。。。
不过小娃在学校里也 test boundary,估计是在研究家里与学校的差别。
t**o
发帖数: 1858
32
前面的事情都是在test your boundary ,反着说不好,进一步让孩子觉得跟你对着甘
有好处,set boundary 不外乎温和而坚定,不过立马走到马路中间这样的事情是要大
人纵的吧 一岁孩子从马路边走到中间这点时间不够拉回来的?这样威胁到人身安全的
事情,和是不是好好吃饭不是一个性质的。
最后关于火车厉害的事无所谓吧,他在跟你玩一个游戏,不过他玩得比你好,家长需要
进步。。。。。
h*******e
发帖数: 1968
33
来自主题: Parenting版 - 宰相肚里能撑船,集思广益。
倒没想做圣人,主要是自己没经验做管理,不会也不懂set boundary 的重要性,的结
果。
特别是学生比我年龄还大的时候,我这根本就没有师生关系该有的样子。
也有楼上说的,对个别学生,有又当爹又当妈又当心理医生的节奏,
好好的不笨也不太懒的人,选了这又难读又不好找工作的专业,
一把年纪了熬个学位,真有抑郁的吃了两年药,最后总算毕业了。
还有一个濒临抑郁的,我给他擦了几年屁股,现在还在写论文写完。
再就是我小时候是个调皮的,带领小伙伴们跟代表权威的整天罚抄课文罚跑步的老师
斗志昂扬地为追求平等斗争了两年,一直幻想着有朝一日自己
要成为对学生特别理解贴心,特别平易近人,特别有耐心有爱心,
不遗余力支持那种老师。这种记忆潜意识里也影响我去进行有效的管理。
现在更清楚一些知道,那是幼稚的,不太push不set boundary的老师,
其实有时蛮有害的。
这是题外话了,没打算教孩子去放弃自己权益去”大度”。
另一贴回过你了。
只是瞎琢磨那种宽心的人是咋成长起来的而已,
小娃是有点批评不得输不得的苗头。
t*******e
发帖数: 1760
34
来自主题: Parenting版 - 宰相肚里能撑船,集思广益。
不能同意更多。
愚钝或明智,其实就在于父母对这个boundary的理解,是尊重孩子是一个独立的人;还
是有意无意觉得孩子是自己的一部分,自己始终有权主导孩子的生活,尤其是打着“为
你好”的旗号。
如果父母boundary不断扩张,或者说不愿收缩,总想吞没孩子,难免在growth spurt
的时期遇到反扑,当然就会有frustration。

growth
d*****p
发帖数: 465
35
来自主题: Parenting版 - 你们的娃有没有ipad low?
没有什么不公平,觉得你太面了。家长在孩子面前必须要有权威(不是通过凶和骂人来
实现),有明确的boundaries,孩子才有安全感。对这种小娃来说,没有确定
boundaries的世界太overwhelming。
另外你太小瞧娃的自娱自乐能力了。10分钟不陪她(当然要保证她的安全),你都不知道
她自己会开发出多少乐趣。老实说,用ipad来填空,填的是成人眼中的“空”;这样做
其实也剥夺了她use her imagination的机会。
c*****3
发帖数: 1655
36
来自主题: Parenting版 - 心里很苦,上来说说
为什么觉得带娃是浪费时间呢? 等到老了走不动了,来关心你跟你聊聊天的就只有自己
的亲人了,你老板客户都想不起你这个人了呢,
感觉楼主是个没有原则的妈妈,没有让两岁娃意识到boundary,他反而没有安全感,通
过苦闹来试探boundary在哪里。
比如吃饭做高椅,好好刷牙,洗澡不乱破除水,都是不准破坏的规矩,否则就没饭吃,
不刷牙导致蛀牙,不洗澡导致身体臭臭皮肤痒。但是,规矩之内,还是有妥协的余地,
比如吃饭可以随意,选择喜欢的勺叉,刷牙可以选择先刷上层或者下层,可以选择喜欢
的背景音乐,洗澡可以选择泡泡浴或者茶树油浴,洗澡玩具任选。
还有,别再喂没营养的糖了,蛀牙不说,搞得正餐没有胃口,血糖极具升高,不躁动才
怪呢。
a******o
发帖数: 261
37
This happens in my house too. The short answer is both of you are right,
the key here is balance.
You obviously recognize the downside of "比较严厉", but the downside of your
method is that kids will soon learn (or already learned?) that rules are
all "optional". As a result, kids will procrastinate until death about
everything b/c there is little consequence for them to listen right away.
Basically, you don't have authority over them.
It may not matter for something as trivial (or is it?) as bru... 阅读全帖
b***d
发帖数: 2695
38
来自主题: Parenting版 - 也请大家帮分析下儿子
这是我下午给你回帖的后半段,当时不确定到底是不是因为换环境,也不想
让你太闹心(娃出这样的事,大人肯定很捉急),就没写。不过看了你这个回帖,
我决定还是贴出来
“我仔细得看了你的post, 第一印象,在你的眼里(你的描述),孩子是个
很乖,很懂事,很开朗,很considerate的娃; 但是在学校发生的事实是
企图打老师,骂老师。 我觉得敢跟老师叫板的娃,基本都是不知道boundary在
哪里。平时在家里,你说他从来不发脾气,有两种可能,一是娃真的很乖
还有一种是,家长总是满足他的要求,没有什么bottom line。
如果你在家里,给他稍微严厉一些的规矩,让他知道什么可以做,什么不可以
做,习惯了,他至少知道,不能跟老师叫板。”
为什么我这么觉得,从你这里的描述,孩子第一次企图踢老师,不管轻与重,有没有
踢着,只要有这种意识,你就应该传递给他一个很严肃的信息:不能打人! 不但要
让他知道,还要制止。 这时候说几句对有些娃是不管用的(唐太多,娃都是皮的),
比如你家的娃,你说了,但是他一样没有听,这时候你必须用行动制止他,并让
他知道事情的严重性,比如,跟老师说一声sorry,excu... 阅读全帖
g*********9
发帖数: 3528
39
来自主题: Parenting版 - 也请大家帮分析下儿子
这是你自己描述的:
“儿子一直忍,小孩从后面推他,第一次儿子忍了,第二次又推又摇,儿子用手往后打
,小孩哭了半小时。”
大家都养过孩子,当然明白推/摇和打之间的区别。你自己在下面的回帖就变成了对方
小孩打人。我服了。
首先,打人和你描述的对方孩子推人的动作,在你看来是一样的,事实上这就是打人就
是boundary。你给你家孩子规定了这个boundary了没有?。
其次,从根本上说,为什么你家孩子会打人?因为他不知道怎么处理被推以后negative
的情绪。你说“我家孩子都忍了,还能怎么样?”,错!大错特错!这就是这坛里的ID
反反复复和你强调的,需要validate孩子的情绪。你在自己孩子受欺负的时候不出面,
不去和对方孩子说你这样不对不能推人,你不在这时候和自己孩子说你要大声地说don'
t do that, I don't like it, Don't push me。你还要孩子怎样?继续忍下去成包子?
从你说的钢琴课老师计时间,所以不能管,我也是很不理解。这么大的孩子钢琴课还有
进度教学任务不成,到时间走人,损失的是你的一点时间,真的要比不上孩子的行为规
范重要。
另,这里的I... 阅读全帖
c*******k
发帖数: 1308
40
来自主题: Parenting版 - 小孩子多大开始能懂道理?
明显是沒有设好boundary. 其实小朋友越是有明确的boundary越有安全感。
n********h
发帖数: 13135
41
我听过一个育儿讲座,老师说,家长要给孩子set boundary, 家长会对孩子说no, 将来
孩子会对别人说no, 比如有人引诱吸毒的时候。
当然你要想好你的boundary, 是不从邻居家买任何东西?还是别的?
t*c
发帖数: 8291
42
来自主题: Parenting版 - 大家有招对付我家娃吗?
一来呢她是在试验各种boundary, 所以表现得比较“作”,
二是她不知道自己这么做,会让别人很难受,很难适从。
有些比较好办一些,比如要一大碗肘但是又不吃,或者让加葱却又让挑出来。
那你可以情景扮演,你让你她帮你拿个东西,等她拿来了,你不要,让她去拿另一个,
让她觉得frustrate. 然后让她爸爸在一边问问她,评价一下你这么做是好还是不好的
,会不会造成别人frustrate,扮演几次之后她就有了旁观者的体会,会主动修正自己
的行为。当然扮演的时候,要尽量自然一些,别让她看出来你是在模仿她。也别让她看
出来你和她爸爸都在演戏。如果被她看出来,她会很气愤地。
至于跳舞的改主意,你事先肯定是没想到会发生这样的情况,所以发生了也没什么办法
。 只能吃一堑长一智。以后要停一个program之前,跟她充分说清楚,如果她同意停止
,那么就说好了,不能再回头重新开始。同样,如果要加入一个新的program, 也是一
样的说好,如果要去,至少要坚持去三个月,中间不能停。
小时候测试了各种boundary, 获得父母充分关注和各种及时纠正,就会长得很好。
小孩子也不是故意要为难大人。他们自己不知... 阅读全帖
t*c
发帖数: 8291
43
来自主题: Parenting版 - 大家有招对付我家娃吗?
对,不能吃回头草。要养成说话要算数的习惯。不管是大人对小孩,还是小孩自己做决
定,都要决定了就不改变。这样可以堵死“作”路,防止power struggle。我以前很多
用“说话算数”这个词,就是为了给孩子养成一个心理定式,说话算数是不可超越的
boundary. 一碰到这个boundary, 就可以不用power struggle了。
现在已经不需要把说话算数这个词明说出来了,因为已经成为全家都知道的default,
不用再提。
c***x
发帖数: 1826
44

你们两这个客气的,真要把心理学往“老中医”方向推吗?
汤姆的鸡汤和我转载的那碗已经不同,虽然overlap在于choice set的大小。
但是我那碗里的choice set在于number of elements,汤姆那碗在于boundary的有无。
老王更关心的是一旦设置了boundary,会不会有side effect。
每一条机理都是可以通过更多的可控实验去检验的。
这个与心理学并没有太大的关系,虽然心理学做实验比自然科学困难更多些。
B********e
发帖数: 10014
45
你发自内心是一个尊重孩子的人
我在尽量向你学习
但我总觉得你有时候过于顺着孩子
养孩子,除了feed和educate,还有set boundary and rules
lz这个case,我觉得是从小就没有正确的set boundary
b***d
发帖数: 2695
46
来自主题: Parenting版 - 我家二宝算是问题孩子吗?
我觉得一些事情随她去,一些事情必须要让她们知道boundary,
比如做carseat这样的事情,比如掀裙子的事情, 她们多哭几次,
就知道什么是rule,什么是boundary了
a***n
发帖数: 148
47
A Postdoctoral Position in Materials Science and Engineering.
This position is part of an Office of Naval Research MURI project that aims
to understand interfaces (especially grain boundaries) and their “phase”
behaviors. The specific research thrusts may involve: thermodynamic
modeling and theory development; and experimental studies of both metals (
grain boundaries in structural alloys) and ceramics (ionic conductivity of
ZrO2 based fuel cell materials). Deep knowledge and/or prior experie... 阅读全帖
a***n
发帖数: 148
48
来自主题: Postdoc版 - Metallurgy/Ceramics Postdoc at UCSD
We are recruiting one postdoctoral fellow to work at UC San Diego on the
fundamental research of interfaces (grain boundaries and, to a less extent,
free surfaces and phase boundaries) in metals and ceramics, and their roles
in controlling fabrication processing (e.g., sintering) and mechanical and
functional (e.g., ionic) properties, with a focus on structural materials (
including both metals and ceramics).
If you are interested, please see http://jianluo.ucsd.edu/Postdoc_2014_818.pdf for addi... 阅读全帖
a***n
发帖数: 148
49
来自主题: Postdoc版 - MSE Postdoc
We are recruiting a postdoctoral fellow to work at UC San Diego on the
fundamental research of interfaces (grain boundaries and, to a less extent,
free surfaces and phase boundaries) in metals and ceramics, and their roles
in controlling fabrication processing and mechanical and functional (e.g.,
ionic) properties, with a focus on structural materials (including both
metals and ceramics). Interested candidates may look at two recent review
articles [J. Am. Ceram. Soc. 95: 2358 (2012); Acta Mater... 阅读全帖
G***G
发帖数: 16778
50
来自主题: Returnee版 - 心安之处就是家
if there is no boundary between China and the richest country in the world,
how about boundary between China and the poorest country in the world?
anyone wants to stay in both sides?
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)