由买买提看人间百态

topics

全部话题 - 话题: acquirer
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
s*********0
发帖数: 298
1
来自主题: Family版 - 如何帮助姑妈(她人在LA)
You aunt is entitled to at least half of the inheritance that was still
under her husband's name when he passed away. And her right supersedes her
husband's will, which means nobody can take away the property legally
belongs to her.
Right of Surviving Spouse
California is a communal property state, which means that married spouses
both retain an equal but undivided claim to shared property. This includes
real property, income, investments and other liquid assets earned or
acquired during the ma... 阅读全帖
K****D
发帖数: 30533
2
☆─────────────────────────────────────☆
lfbenben (非猫) 于 (Wed Nov 12 14:21:10 2008) 提到:
Huntsman Corp
. (HUN), Apollo Management LP
Premium offered: $18.64 or 199.15%
Acquirer: Apollo
Target: HUN
Offer per share: $28 cash
Value of outstanding common equity: $6,213,200,000
Target share price: $9.36
Expected closing: N/A
Annualized gain: N/A
IKON Office Solutions (IKN),
Ricoh
Company Ltd. (RICOY)
Premium offered: $0.02 or 0.1%
Acquirer: RICOY
Target: IKN
Offer per share: $17.25 cash
Value of o
I******y
发帖数: 176
3
来自主题: JobHunting版 - careercup 150 deadlock 一题
design a class which provides a lock only if there are no possible deadlocks
解答并没有给出到底什么时候可以acquire lock阿.这个canAcquireResource具体怎么
实现呢
For our solution, we implement a wait / die deadlock prevention scheme.
1 class MyThread extends Thread {
2 long time;
3 ArrayList res = new ArrayList();
4 public ArrayList getRes() { return res; }
5
6 public void run() {
7 /*run infinitely*/
8 time = System.currentTimeMillis();
9 int count = 0;
10 while (true) {
11 if (count < 4) {
... 阅读全帖
p*****2
发帖数: 21240
4
来自主题: JobHunting版 - 谁给讲讲test-and-set怎么实现mutex?
你看看这段代码就清楚了。
; Intel syntax
lock: ; The lock variable. 1 = locked, 0 = unlocked.
dd 0
spin_lock:
mov eax, 1 ; Set the EAX register to 1.
xchg eax, [lock] ; Atomically swap the EAX register with
; the lock variable.
; This will always store 1 to the lock, leaving
; previous value in the EAX register.
test eax, eax ; Test EAX with it... 阅读全帖
y*******o
发帖数: 6632
5
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... 阅读全帖
c********s
发帖数: 817
6
来自主题: JobHunting版 - 怎样 avoid deadlock ??
There are many ways to do this. Here is one way which always works.
For each thread, let it acquire all locks in the same order.
For example, thread 1 always acquire lock 1, then lock 2, then lock 3, and
the same for all other threads.
Please refer to slide 14 below for this technique:
http://www.cs.umd.edu/class/fall2012/cmsc433/0101/lecture-notes
c********s
发帖数: 817
7
来自主题: JobHunting版 - 怎样 avoid deadlock ??
There are many ways to do this. Here is one way which always works.
For each thread, let it acquire all locks in the same order.
For example, thread 1 always acquire lock 1, then lock 2, then lock 3, and
the same for all other threads.
Please refer to slide 14 below for this technique:
http://www.cs.umd.edu/class/fall2012/cmsc433/0101/lecture-notes
o********n
发帖数: 193
8
来自主题: JobHunting版 - 新鲜电面经
你说的都对,除了倒数第二行。mutex解锁在acquire semaphore后立马做了,但是既然
semaphore已被writer全部占用,另一个writer也进不来,所以代码没错。当然,如果
你不封装writer lock ,用C直接acquire /release writer lock,你把release押后也
是可以的。
"所以在lockWrite里面一直加semaphore,加不上去的时候应该是要挺得"
Write的时候,要把semaphore收回,有些reader已经release了,所以立马收回,有些
正在reading,那就wait了,但不是busy waiting。这个你觉得有问题吗^_^
s*****r
发帖数: 43070
9
信用卡公司根本不管你的交易是POS机还是Square,收费标准一样,不存在一起算的问
题,吃亏的还是商家。
不知道square是否是acquirer网络,如果是的话,可以降低手续费,吸引商家。否则实
在没优势,商家除了付费用给信用卡公司,发卡银行,acquirer服务商之外,还要付给
square,亏死。

.g
their
s*****r
发帖数: 43070
10
信用卡公司根本不管你的交易是POS机还是Square,收费标准一样,不存在一起算的问
题,吃亏的还是商家。
不知道square是否是acquirer网络,如果是的话,可以降低手续费,吸引商家。否则实
在没优势,商家除了付费用给信用卡公司,发卡银行,acquirer服务商之外,还要付给
square,亏死。

.g
their
b*******f
发帖数: 34
11
来自主题: JobHunting版 - LinkedIn 面经
写了个H2O Java的,不知道对不对,大家帮忙看看
h_count = 0;
void H() {
synchronized(h_count) {
h_count++;
if(h_count == 2) {
h_sem.release();
h_count = 0;
}
}
o_sem.acquire();
}
void O() {
h_sem.acquire();
o_sem.release(2);
}
b*******f
发帖数: 34
12
来自主题: JobHunting版 - LinkedIn 面经
写了个H2O Java的,不知道对不对,大家帮忙看看
h_count = 0;
void H() {
synchronized(h_count) {
h_count++;
if(h_count == 2) {
h_sem.release();
h_count = 0;
}
}
o_sem.acquire();
}
void O() {
h_sem.acquire();
o_sem.release(2);
}
c*****0
发帖数: 19
13
来自主题: JobHunting版 - Java编程讨论:LinkedIn的H2O
如果没理解错,直接用两个semaphore不行吗
public void H() {
p1.release(1);
p2.acquire(1);
}
public void O() {
p2.release(2);
p1.acquire(2);
}

AtomicInteger
date
k********e
发帖数: 1416
14
UPDATE, March 25, 2013: This story updates to include a link to the
Geosyntec contamination report.
For at least two months, Google employees were exposed to excessive levels
of a hazardous chemical after workers disabled a critical part of the
ventilation system at the company’s new satellite campus on a Superfund
toxic waste site, records show.
From mid-November to mid-January, levels of trichloroethylene, or TCE,
exceeded concentrations considered safe by the federal Environmental
Protection ... 阅读全帖
c*******7
发帖数: 438
15
来自主题: JobHunting版 - 想问一下那道H2O的多线程题
题目是这样的:实现两个函数: H() and O(), 这两个函数会被多线程调用。如果满足
当前2个线程调用H(),和1个线程调用O(),让以上3个线程返回,产生一个水分子(可能
是HHO,HOH,OHH)。调用H()的当前线程不能大于2,调用O()的当前线程不能大于1。
我思前想后,写了一个,请大家帮忙看看。(排版有问题,tab改成下划线了。。。)
(发现前面写的好像不太对,又改了一次)
private Object mutex = new Object;
private Semaphore hSemaphore = new Semaphore(2);
private Semaphore oSemaphore = new Semaphore(1);
private int hCount;
private int oCount;
public void H() {
____hSemaphore.acquire();
____processH();
____
____synchronize(mutex) {
________hCount++;
________if(oCount == 1... 阅读全帖
c****k
发帖数: 85
16
来自主题: JobHunting版 - 弱问startup 的股票
You can always ask for a raise anytime, but don't do it too often, one or
twice per year is good.
If your company is acquired by big one, then usually they will exchange its
stock with the big one based on their fair market value, it is too difficult
to explain here. You will be able to sell them if you are going to be
acquired by a public company.
o**********e
发帖数: 18403
17
【 以下文字转载自 Seattle 讨论区 】
发信人: onetiemyshoe (onetiemyshoe), 信区: Seattle
标 题: 亚麻vs微软: 云中之战 (2) 中国战场
发信站: BBS 未名空间站 (Thu Jul 31 13:43:35 2014, 美东)
The fact is, Amazon's destiny in the cloud is in its own hands, which is
more than you can say about IBM, Google, or even Microsoft. I can easily
believe Microsoft is growing faster than Amazon as an IaaS provider
percentage-wise, because it has a smaller base that's easier to grow in
percentages than Amazon's. It also has a head of steam in China, where... 阅读全帖
w**z
发帖数: 8232
18
来自主题: JobHunting版 - square 看样子是上不了市了。
http://blogs.wsj.com/digits/2014/10/06/square-raises-150-millio
Square Inc. has raised $150 million from a foreign investor as the mobile-
payment startup seeks to fend off growing threats from Apple Inc., Amazon.
com Inc. and eBay Inc.’s PayPal division.
The investment arm of the government of Singapore led the new round of
funding, which valued Square at $6 billion, according to a person familiar
with the deal. Previous investors Goldman Sachs Group Inc. and Rizvi
Traverse Management also part... 阅读全帖
l*****a
发帖数: 14598
19
来自主题: JobHunting版 - 求问一道multithreading问题
Semaphore sem1=new Semaphore(1);
Semaphore sem2=new Semaphore(0);
void functionFoo() {
while(1){
sem1.acquire();
System.out.print("Foo");
sem2.release();
}
}
void functionBar() {
while(1) {
sem2.acquire();
System.out.print("Bar");
sem1.release();
}
}
M******o
发帖数: 121
20
来自主题: JobHunting版 - 急求大神指导一道面经
这个如何?
private static int NUM_OS = 1;
private static int NUM_HS = 2;
private Semaphore oS = new Semaphore(NUM_OS);
private Semaphore hS = new Semaphore(NUM_HS);
private Semaphore entryS = new Semaphore(1);
public YourClass() {
oS.drainPermits();
hS.drainPermits();
}
public void O() {
entryS.acquire();
if (!tryAcquire(oS)) {
if (canGenerateH2O()) {
releaseForH2O();
entryS.release();
} else {
entryS.release();
oS.aquire... 阅读全帖
L*****1
发帖数: 34
21
来自主题: JobHunting版 - 问一道multithreading的题
被问过一道一样的题目,不过是foo和bar,转一个大神的解答:
Semaphore sem1=new Semaphore(1);
Semaphore sem2=new Semaphore(0); //only when permit number is bigger
than 0
void functionFoo() {
while(1){
sem1.acquire();
System.out.print("Foo");
sem2.release();
}
}
void functionBar() {
while(1) {
sem2.acquire();
System.out.print("Bar");
sem1.release();
}
}
sem2=0 确保一上来block
sem1=1 确保第一次不会block
require就是-1
release就是+1
w**z
发帖数: 8232
22
来自主题: JobHunting版 - stock option 101
It's a good introduction.
http://jvns.ca/blog/2015/12/30/do-the-math-on-your-stock-option
亮点在最后。
On liquidation preferences: Suppose a VC invests 100M, and is promised a 3x
return on investment. If the company later sells for 300M (or less), the VC
gets all of it and you get nothing. That’s it. Liquidation preferences are
important to know about.
Things you should know about stock options before negotiating an offer
Are you considering an offer from a private company, which involves stock
option... 阅读全帖
b**********5
发帖数: 7881
23
来自主题: JobHunting版 - grindr
Grindr, the popular dating and social networking app for gay men, has found
itself a match.
The company on Monday said it had sold a majority stake to the Beijing
Kunlun Tech Company, a Chinese gaming company, valuing the six-year-old
start-up at $155 million. Beijing Kunlun will acquire 60 percent of Grindr,
with the remainder to be owned by Grindr employees and Joel Simkhai, the
company’s founder. Grindr has previously not raised capital from outside
investors.
“We have users in every country ... 阅读全帖
x*********3
发帖数: 63
24
来自主题: JobHunting版 - job opportunity in AMEX Phoenix
Hi i'm hiring and have below openning. If you are interested Pls send your
resume to [email protected]/* */ Sponsor H1b. thx!
Title: Econometrician
Overview of the Department:
American Express is aggressively digitizing our business with significant
investment along every dimension in this space. As part of this intensive
effort, our Integrated Marketing Solutions organization (IMS) has exciting
opportunities available within our digital analytics team for digitally
savvy econometricians o... 阅读全帖

发帖数: 1
25
来自主题: JobHunting版 - G面试题求解
小白抛砖引玉一下。
public class Solution {
private long lastTime = System.currentTimeMillis();
private int limitPerSecond;
private int remains = limitPerSecond;

public Solution(int permitsPerSecond) {
this.limitPerSecond = permitsPerSecond;
}

public boolean acquire() {
long curTime = System.currentTimeMillis();
double timeEplaseInSec = (curTime - lastTime) / 1000.0;
lastTime = curTime;
remains += (int)(timeEplaseInSec * limitPerSecon... 阅读全帖
d**h
发帖数: 2
26
Position: Deputy General Manager/Financial Controller to place in a newly
acquired LA business.
Major roles of the position cover financial management and procurement
management. Report to PRC General Manager and Executive Management
Committee of the PRC Headquarter.
Background of the LA business:
- A SME nutrition food business founded by an overseas Chinese family
in LA, recently acquired in majority by a leading PRC player.
- The LA company outsource product production to third... 阅读全帖
m****s
发帖数: 18160
27
【 以下文字转载自 Returnee 讨论区 】
发信人: goldenratio (脚丫), 信区: Returnee
标 题: Biomedical Market Specialist(生物医学市场主管) position available
发信站: BBS 未名空间站 (Thu Dec 27 18:11:00 2012, 美东)
JOB TITLE: Biomedical Market Specialist(生物医学市场主管)
DEPARTMENT: Instron China Sales / Strategy
Key Responsibilities:
* Identifies application specifications and market trends in the bio-market
and works closely with Business Teams and Engineering to strategically
develop and promote needed products and services to ensure maximum ... 阅读全帖
c*****j
发帖数: 92
28
来自主题: JobMarket版 - 阿里巴巴美国招聘多个职位
高级国际支付解决方案工程师
工作年限 3年以上
学历要求 本科
岗位描述 本岗位工作地点:美国–Santa Clara, CA.
Customer solution engineers are key players in solution selling processes.
This person is expected to have consulting, pre-sales, and post-sales
experiences, able to quickly understand customer requirements and able to
suggest solutions to satisfy customer requirements. The tasks include
writing proposals, developing quick prototypes, and technical related sales
support. This person must be a quick learner, a good communicator and ... 阅读全帖
e*********6
发帖数: 23
29
RT, 有个老印开的公司,说有兴趣招我,但需要先参加他们的一个培训,需要我缴纳
1000$的培训费用,大概3个月左右,说培训完如果效果好,后办H1B,然后要作为他们
的员工工作两年,工作期间与其他大公司合作,说可以把3个月学的简历写成有5年经验
的简历。假如和google合作,就要relocate到google的公司工作,但还是这个公司的员
工。 这里附上培训的contract,求有经历的人给点意见,是否靠谱? 网上查了一下这
个公司有10年历史了。
TRAINING AGREEMENT
The agreement made this day ___________ between LAMBDANETS SERVICES LLC
located at 2941 Kenny Rd, Ste 235, Columbus, OH 43221 (herein referred to as
COMPANY) and _______________________ _ residing at________________
¬... 阅读全帖
N**s
发帖数: 1916
30
the $760k can be bank's acquiring cost(unpaid loan +$$$) at foreclosure
which may or may not reflect market value. If the house was deeply under
water, then the acquiring cost is way over and vice versa.
l*****n
发帖数: 204
31
想换buyer agent,请教大家有关条款。
几个月前,想买房子,去了一家open house,碰见了这个agent,之后他就开始带我们看房子。其
间也感觉到他不是太能干,提不出什么建设性建议。临到make an offer时,也担心他的
negotiation 能力,但是感觉他还是很卖力的带我们看房子,也挺辛苦的,于是希望让他能挣些
钱。虽然有些心理准备,可是negotiate过程中,真的感觉他太不能干,而且太偏向seller,几乎
就是seller agent的传声筒。从没有见过什么counter offer。最可恨的是后来竟告诉我们
seller的要价竟然高于以前希望的。终于受不了了,决定换agent。
从本版以前的讨论看到,说不能随便换,又保护条款。像不能卖前一个agent带你看过的房子,协议
过期后六个月还有效,等等。我现在就是想请教各位:
1。是不是我的协议过期了?(实际上这里有个小插曲,11/21/2010 实际上是我们递offer 的日
期,这应该是agent的失误)
2。 是不是我马上就可以找另一个agent了?
3。是不是我们不需要付任何违约金?
非常感谢!
1.... 阅读全帖
l**p
发帖数: 569
32
来自主题: Living版 - 邻居要换fence
多谢了。
刚才又查了一下, 麻省是20年,而且必须是“without owner's consent”。看起来
签个agreement,或者每年给邻居写个notice提醒他fence可能是在我的land上可以
防止adverse possession:
Adverse possession is a way of acquiring title to real property by
physically occupying it for a long period of time. As strange as it may seem
to the non-lawyer, you may acquire property without the consent of the
actual title holder if you possess it long enough and meet the legal
requirements discussed below. Also discussed below are the theories that
underlie this do... 阅读全帖
a***o
发帖数: 104
33
这个是合同里的,是不是Exclude? 谢谢!
Client will: (a) work exclusively through Broker in acquiring property in
the market area and negotiate the acquisition of property in the market area
only through Broker;
(b) inform other brokers, salespersons, sellers, and landlords with whom
Client may have contact that Broker exclusively represents Client for the
purpose of acquiring property in the market area and refer all such persons
to Broker; and (c) comply with other provisions of this agreement.
b**********n
发帖数: 692
34
大家来猜猜价钱会降多少?
NEW YORK — Blackstone Group LP, which has spent $5 billion to acquire
almost 30,000 U.S. single-family houses, is nearing the later stages of its
buying as home prices jump, said Jonathan Gray, the firm’s global head of
real estate.
The market has become more “challenging” as competitors enter the business
of buying homes to rent out, Gray said Monday.
Blackstone (NYSE: BX), based in New York, has acquired houses in 13
metropolitan areas and is continuing to make purchases, he said.... 阅读全帖
b********2
发帖数: 5191
35
【 以下文字转载自 SanDiego 讨论区 】
发信人: borninbeijin (Yang), 信区: SanDiego
标 题: 黑石公司扫房开始消停了
发信站: BBS 未名空间站 (Wed Jun 12 20:33:43 2013, 美东)
大家来猜猜价钱会降多少?
NEW YORK — Blackstone Group LP, which has spent $5 billion to acquire
almost 30,000 U.S. single-family houses, is nearing the later stages of its
buying as home prices jump, said Jonathan Gray, the firm’s global head of
real estate.
The market has become more “challenging” as competitors enter the business
of buying homes to rent out, Gray said Monday.
Blac... 阅读全帖
M*****e
发帖数: 279
36
Putting bedbugs to bed forever
Link:
http://www.sciencedaily.com/releases/2014/12/141224103113.htm
On the right side of the this webpage, there are more links about how to
kill bedbugs.
Link to the original paper:
http://onlinelibrary.wiley.com/doi/10.1002/anie.201409890/abstr
Recipe:
Sleep tight! Bed bugs rely on chemical
cues to locate and arrest in safe shelters.
This aggregation pheromone comprises
five volatile components (dimethyl disulfide
and dimethyl trisulfide, (E)-2-hexenal,
(E)-2-oct... 阅读全帖
w*********s
发帖数: 2136
37
Jeffry John Aufderheide
vactruth.com
05/25/2010
http://vactruth.com/2010/05/25/vaccines-rockefeller-social-control/
PART I.
History books proclaim with absolute certainty that the pinnacle of public
health is defined by the polio vaccine program. Disease finally conquered by
science. The polio effort was a benchmark for the public to mentally accept
the concept “shots prevent disease.” However, hidden to most Americans
was an elaborate Public Relations scheme being carefully applied by
Rockefell... 阅读全帖
g********e
发帖数: 410
38
Visa, MasterCard, American Express, and Discover. 以下简称VI,MC,AE,DI
先说AE 和 DI
AE 和 DI 网是由American Express Company和Morgan Stanley分别管理的。
两公司的主要职能是:
1。发行信用卡(issuing cards)
2。争取商家(acquiring merchant accounts)
(注:现在这两家也授权其他金融机构来发行AE/DI卡)
相对AE/DI, VI/MC有不同的组织形式,他们非常相似
VI/MC是一个卡联和会(card associations)
1。联和会由数以千记的会员金融机构拥有和控制
2。金融机构负责发行信用卡和争取商家
为了可以利用信用卡网络,商家付“折扣费”(discount fee)
为了可以利用信用卡网络,商家付“折扣费”(discount fee)
对VI/MC网,折扣费进了三家的腰包
1。卡联和会(card associations)
2。发卡者(card issuers)
3。商家获得者(merchant acquirers)
折扣
l*********t
发帖数: 371
39
Washington Mutual used to have free wire transfer to China, as long as you
have a checking account with them.
But after it was acquired by Chase bank, it is not free anymore, unless you
had a Washington Mutual checking account before Chase acquired it.
z****l
发帖数: 5282
40
☆─────────────────────────────────────☆
denville (wind) 于 (Thu May 13 15:17:07 2010, 美东) 提到:
expired!
好像已经很久了
http://www.continental.com/web/en-US/content/products/chase/con
点击 apply,log in 后 看 rates and fees table, 第一年免年费
再提醒一下,申请信用卡前先注册
onepass offer:Participate in Mileathon and Earn OnePass Miles
可得20点,值 2500 miles
(Card must be acquired between April 1 and May 31, 2010. First purchase must be made by May 31, 2010, to earn Mileathon credit)
☆─────────────────────────────────────☆
mttb... 阅读全帖
p*******m
发帖数: 20761
41
来自主题: Money版 - Wells Fargo Buy American
American Express: Will Wells Fargo Really Buy It Out?
Citigroup’s Donald Fandetti and Steven DeBartolo consider reports that
Wells Fargo (WFC) could be considering a purchase of American Express (AXP):
Reuters
News reports [yesterday] suggest American Express could be an acquisition
target of Wells Fargo, though sources are investment bankers not mgt. In
addition, the report raised the prospect of senior mgt changes and that
Chairman & CEO Ken Chenault is having conflict with the Board. Note tha... 阅读全帖
l***4
发帖数: 1876
42
来自主题: NextGeneration版 - 拿旅行证的孩子可以上中国户口
你的那个说法完全是不正确的。
http://travel.state.gov/travel/cis_pa_tw/cis/cis_1753.html
A U.S. citizen may acquire foreign citizenship by marriage, or a person
naturalized as a U.S. citizen may not lose the citizenship of the country of
birth.U.S. law does not mention dual nationality or require a person to
choose one citizenship or another. Also, a person who is automatically
granted another citizenship does not risk losing U.S. citizenship. However,
a person who acquires a foreign citizenship by applying fo... 阅读全帖
m******2
发帖数: 1007
43
没有接着看呢,但是这里用的是 may lose, 还分情况啊。
The concept of dual nationality means that a person is a citizen of two
countries at the same time. Each country has its own citizenship laws based
on its own policy. Persons may have dual nationality by automatic operation
of different laws rather than by choice. For example, a child born in a
foreign country to U.S. citizen parents may be both a U.S. citizen and a
citizen of the country of birth.
A U.S. citizen may acquire foreign citizenship by marriage, or a p... 阅读全帖
m******2
发帖数: 1007
44
没有接着看呢,但是这里用的是 may lose, 还分情况啊。
The concept of dual nationality means that a person is a citizen of two
countries at the same time. Each country has its own citizenship laws based
on its own policy. Persons may have dual nationality by automatic operation
of different laws rather than by choice. For example, a child born in a
foreign country to U.S. citizen parents may be both a U.S. citizen and a
citizen of the country of birth.
A U.S. citizen may acquire foreign citizenship by marriage, or a p... 阅读全帖
b****4
发帖数: 284
45
不好意思是我搞错了,美国政府是承认双重国籍的。见下文:
Dual Nationality
Section 101(a)(22) of the Immigration and Nationality Act (INA) states that
“the term ‘national of the United States’ means (A) a citizen of the
United States, or (B) a person who, though not a citizen of the United
States, owes permanent allegiance to the United States.” Therefore, U.S.
citizens are also U.S. nationals. Non-citizen nationality status refers only
individuals who were born either in American Samoa or on Swains Island to
parents who are... 阅读全帖
b****4
发帖数: 284
46
不好意思是我搞错了,美国政府是承认双重国籍的。见下文:
Dual Nationality
Section 101(a)(22) of the Immigration and Nationality Act (INA) states that
“the term ‘national of the United States’ means (A) a citizen of the
United States, or (B) a person who, though not a citizen of the United
States, owes permanent allegiance to the United States.” Therefore, U.S.
citizens are also U.S. nationals. Non-citizen nationality status refers only
individuals who were born either in American Samoa or on Swains Island to
parents who are... 阅读全帖
x**s
发帖数: 1085
47
来自主题: Parenting版 - 有些蒙校就是joke
我不知道你书本上的东西,所以去看了看montesorri自己写的教育宗旨。和我去tour的
学校宗旨是一模一样的,丝毫没有提到不鼓励娃之间的互动。老师只是不会force
children to play together,但是我看那些娃自己就会玩到一起,有时候fight for toys
,有时候很谦让,老师只是不出面干预而已。open house我坐在那里1个多小时看那些
陌生的娃在一个完全陌生的环境里,面对陌生的玩具和大人们,他们有时候自己玩,有
时候就能几人坐一起玩一个玩具,不觉得这样有什么不好啊。我们去看的是toddler
program,给18个月以上的娃
这是Montesorri自己写的教育方针,他们官网上贴的。而且这个教育大纲也不是只给智障儿童的。
“To aid life, leaving it free, however, to unfold itself, that is the basic task of the educator.
My experiments, conducted in many different countries, have not be... 阅读全帖
t*******r
发帖数: 22634
48
来自主题: Parenting版 - 音乐和歌唱的区别
我现在开始同意你的看法。从这个角度看:
唱歌/工程数学(不是陶天才那种)/工程物理学/信息学,更趋向于 acquired skill。
因为那些 traits in-line with common tasks of human(人人都会唱歌,
人人都会数数),所以会被自然选择所选择和淘汰。因为大多数人都 carry 那些
trait。。。所以,基本的智力,以及后天开发的差别,是更重要因子。
而钢琴/纯理论抽象数学/纯理论抽象物理(都指研究生院之后的钻牛角尖程度),
更趋向于 genetic coded trait。。。因为这玩意儿无法被自然选择所选择和淘汰,
更多的是作为隐性基因啥的对抗自然选择的机制所保留下来。。。如果先天不 carry
那些基因,后天 acquire 那些 skill 基本很难。
(比如,钢琴的拇指运动,违背所有自然生存对拇指的需求 —— 相对四指 vs 平行四
指)。
这个可以解释为啥钢琴和纯理论数学/奥数啥的,很多 child prodigy 的存在,其他
学科就没那么多。。。
t*******r
发帖数: 22634
49
来自主题: Parenting版 - 老师说娃是surface reader
俺刚才想了一下。。。我觉得如果把你所说的 “因果关系” 理解为
causation (between text-reading-skill and
(high-order)-thinking skill) 的话,我觉得对于小学低年级
和中年级而言,这个 causation 错了。
但如果把上面的text-reading-skill 换成
information-acquiring-and-decoding-skill,那我觉得 causation
是成立的。。。这里的差别,我觉得是因为小学低年级和中年级,
information-acquiring-and-decoding-skill 不一定跟
text-reading-skill 联系那么直接。。。(其实小学中年级以后,
也不好 100% 就这么说,比如哈利波特啥的。。。// run )
从上面这个角度说,每个娃的轨迹可能都不一样。。。有的娃的确
可能第一天就抢滩诺曼底然后正面硬刚。。。但另外一些娃可能先打赢
地中海北非、然后西西里登陆、同时轰炸柏林,把德军搞个稀巴烂以
后,最后弄个小舢板也上了诺曼底是不是。。。最后谁先到了柏林,
... 阅读全帖
t*******r
发帖数: 22634
50
来自主题: Parenting版 - 分数应用题
我觉得,实践上 repetitive routine work 方面做何种程度,目前没有真正意义上的
scientific study。实践操作而言,我觉得 (1) 能执行下来,(2) 能满足需要,我觉
得就差不多了。每个娃不一样,每家的需求也不一样,这很难给个一刀切的标准。
另外我前面说的 acquire 的意思,是说 neuroplasticity 也可能有 acquired 因子。
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)