o**********n 发帖数: 125 | 1 oh, if LZ is tenure track... then its not appropriate to do what i
suggested.
For some reason, I have misread the original post. |
|
o****y 发帖数: 790 | 2 Thanks, but I'll be greatly offended if people find me ONLY entertaining.
My disclosure was meant to warn readers that my suggested solutions
should be taken with a grain of salt. To avoid unnecessary misreadings,
I hereby state that my disclosure should NOT be interpreted
as a call-for-dates.
I propose the following sequential algorithmic procedure, which
is well known to be O(n) and scalable.
1. Wait until the fly lands on a horizontal surface.
2. Approach it very slowly, with one hand extende |
|
o**********e 发帖数: 18403 | 3 【 以下文字转载自 SanFrancisco 讨论区 】
发信人: onetiemyshoe (onetiemyshoe), 信区: SanFrancisco
标 题: The Rush to Find China’s Moles (转载)
发信站: BBS 未名空间站 (Tue Sep 15 11:06:23 2015, 美东)
发信人: beijingren (to thine own self be true), 信区: Military
标 题: The Rush to Find China’s Moles
发信站: BBS 未名空间站 (Tue Sep 15 10:13:31 2015, 美东)
http://www.nytimes.com/2015/09/15/opinion/the-rush-to-find-chin
Feeling besieged by China’s spies, who have had success in stealing
government and corporate trade secrets, the United States h... 阅读全帖 |
|
f*******o 发帖数: 43 | 4 有什么aisian professor协会之类可以帮帮她吗?声援一下也好。
发信人: doublebull (doublebull), 信区: Military
标 题: 谁来说说UTSA的美女教授Ruoting Pei被诬陷解雇的事?
发信站: BBS 未名空间站 (Mon Oct 5 13:46:40 2015, 美东)
看报道好像是被诬陷帮助中国政府研究炭疽并被学校解雇。但后来FBI也没查出什么来
。谁能仔细讲讲,看看大家能为她做点什么。
Lawsuit: False Allegations of Anthrax Research Led to Discriminatory Firing
Miriam Rozen, Texas Lawyer
istockphoto.com
A former University of Texas at San Antonio biology professor, who is a
native of China, filed an employment discrimination lawsuit against the
school.
In... 阅读全帖 |
|
f***c 发帖数: 301 | 5 This guy tried to sell me points @ 1.95 when I was asking @ 1.88.
I misread the message and accpeted. I found it was a mistake after he
transferred points to me.
So I asked him whether he want all points returned or sell them @ 1.88.
He said he doesn't want to release credit card number and asked me to call
Chase Customer Service to return points.
I called Chase and they can't cancel the points transfer.
That's it. Please correct me if I said anything wrong. |
|
f***c 发帖数: 301 | 6 No, he just told me 103K @ $2010. He never told the rate.
I misread and assumed he was using my proposed rate. |
|
h*******y 发帖数: 864 | 7 Sorry. I misread the question. I thought OP wants ETF in USA that invests in
China. For ETF in China, there are tons as well: 510013, 510010, 159901,
510880, 510063, 510060, 510050, 510180, etc. |
|
r****m 发帖数: 1204 | 8 You misread it - this paragraph is about the 6% excise tax.
If you keep reading a few paragraphs down, you will see an example, copied
below which clearly states you have to pay the 10% tax on earnings from the
excess contribution -
=================
Example.
Maria, age 35, made an excess contribution in 2012 of $1,000, which she
withdrew by April 15, 2013, the due date of her return. At the same time,
she also withdrew the $50 income that was earned on the $1,000. She must
include the $50 in he... 阅读全帖 |
|
D*****t 发帖数: 558 | 9 I could be wrong, but you might misread this paragraph."The average total
plan cost—including administrative and record-keeping fees—for a small 401
(k) plan (50 participants/$2,500,000 assets) declined from 1.47 percent to 1
.46 percent. "
My understanding is that the fee mentioned here is the fee at plan level and
does not include fund ER.
In the next paragraph, "Small plan average investment expenses—the expense
ratios charge by mutual funds for assets held within the plan—went from 1.
38 per... 阅读全帖 |
|
m****a 发帖数: 189 | 10 forward:10 Worst Things to Do in a Meeting
1. Show Up Late.
2. Be Unprepared.
3. Monopolize the Conversation.
4. Make Your Statements Sound Like Questions.
5. Misread Signals.
6. Get Intimidated.
7. Chew Gum.
8. Keep Your Cell Phone On.
9. Wander Off Topic.
10. Skip It.
...
from Msn.com
I always chew gums...
I should stop. |
|
z****e 发帖数: 2024 | 11 oops, i misread the question, the question is "not" be called. I though it
was "should be called".
hehe, even public virtual dtor can not be called if you copy it improperly. |
|
L*******e 发帖数: 114 | 12 Here is the code snippet from C++ programing language book. What confused me
is the statement "px = py2", the book says an error "we do not know that
py2 is a Z2 or how Y2::x is used in an non-Z2 object", but g++ did not
complain.
Did I misread something?
class X{
public:
int a;
};
class Y1 : public X {};
class Y2 : protected X {};
class Y3 : private X {};
class Z2 : public Y2 {
void f(Y1* py1, Y2* py2, Y3* py3)
{
X *px = py1; // X is a public base of Y1
py1->a = 7 |
|
b********n 发帖数: 609 | 13 he must misread the output since stdio is shared among child processes...
8 seems right to me. |
|
y*******n 发帖数: 129 | 14 Thanks.
I think i misread the output as I executed the program in linux terminal.
The terminal shell will also need to fork a child process to execute the
program. someetimes the return of that shell prompt is early than the last
printf, making it look like the output is a new input. one example i got.
$ ./fork_test
abc
abc
abc
abc
$ abc
abc
abc
abc |
|
b********h 发帖数: 119 | 15 True. I misread the problem. I think the correct solution is DP with the
following recurrence:
S[i][j] = min{ S[i-1][j], S[i][j-1], S[i-1][j-1] } + 1, where S[i][j] is the maximal
size of the square with its bottom right at (i,j) and (i,j) contains the
value you are looking for (either 0 or 1). The largest S[i][j] is the answer
. |
|
n*********e 发帖数: 86 | 16 sorry, misread 1 as cracking the coding interviews. I would say 3.
Since you have one week, focus on 3 careercup 150 (cracking the coding
interview). The first one (Hacking
google interview ) is too short and easy. You should be able to skim it in
2 days. You probably will spend 1
week on finishing everything in 1 and 3. |
|
o**********e 发帖数: 18403 | 17 【 以下文字转载自 SanFrancisco 讨论区 】
发信人: onetiemyshoe (onetiemyshoe), 信区: SanFrancisco
标 题: The Rush to Find China’s Moles (转载)
发信站: BBS 未名空间站 (Tue Sep 15 11:06:23 2015, 美东)
发信人: beijingren (to thine own self be true), 信区: Military
标 题: The Rush to Find China’s Moles
发信站: BBS 未名空间站 (Tue Sep 15 10:13:31 2015, 美东)
http://www.nytimes.com/2015/09/15/opinion/the-rush-to-find-chin
Feeling besieged by China’s spies, who have had success in stealing
government and corporate trade secrets, the United States h... 阅读全帖 |
|
u****q 发帖数: 24345 | 18 Sorry I misread. I thought the neighbor lent the holder to the previous
owner. Since it belongs to the previous owner who failed to deliver it to
the neighbor prior to closing, I think you can simply ignore the request.
The neighbor is being unreasonable.
the |
|
F***Q 发帖数: 6599 | 19
sorry, misread your question. for chlorine, it is the first one - titration
with taylor R-0870/0871 |
|
A*******e 发帖数: 2419 | 20 misread.
i'm talking about HDMI port with DVI or STB mark, not DVI port. |
|
c****i 发帖数: 836 | 21 Sorry that I misread staples' message. Yeah, that is another great way if it
works. "pull" worked as I already gave a try. Have not tried "push".
As bbaobbei mentioned, Boa: pull free, push has fee
Thanks for all suggestions. |
|
l********e 发帖数: 105 | 22 Sorry, I misread and looks like you have already had your first statement.
Yes, you will have your points the next day. |
|
d*****n 发帖数: 494 | 23 看到很多妈妈买了Boulevard 70 ,俺也赶紧跟进。
登记 baby registry, online-chat 要 discount。问了6、7个人都不行。
即将放弃了,看看还有20分钟接孩子,就又试了一个。结果二话不说,让下单,然后给
我 refund.
于是下单、下线。。。
到了第二天一直没等到 refund. 上网又去问,费尽口舌。这次又说是 misread,还要
给我 Mark ,说不会再出现这个mistake了。 可是我已经下单,而且状态都是 shipped
。我可不想退货再重新买。于是又跟他磨了磨。意外地竟然给了我这个 exception。
很费周折最终还是以 158 拿下了个 Boulevard。 |
|
s********y 发帖数: 4047 | 24 oh yea, sunshade, misread the post |
|
a*****g 发帖数: 19398 | 25 According to Common Sense Media, tweens log 4 1/2 hours of screen time a day
, seven days a week, 52 weeks a year. For teens, it's even higher: nearly
seven hours a day. And that doesn't include time spent using devices for
school or in school.
From babies with iPads to Chromebooks in classrooms, digital devices seem
more ubiquitous every year. And one of the hottest issues today in both
parenting and education circles is the proper role of electronic media in
children's lives.
There's research ... 阅读全帖 |
|
s*****r 发帖数: 1032 | 26 You are right. I misread again. It doesn't make sense though. |
|
W******e 发帖数: 3319 | 27 1. Introduction
My interest in studying creativity was inspired by the frustrations that I
felt as a student, then as a professor. I wanted to know how I could
encourage creativity in myself, my students, and my colleagues.
Politicians, industrial managers, academic administrators, and other leaders
often say that innovation is critical to the future of civilization, our
country, their company, etc. But in practice, these same people often act as
if innovation is an evil that must be suppressed,... 阅读全帖 |
|
x*****i 发帖数: 1329 | 28 没看出来拼错太正常不过了,我也常常这样。记得一本书(大概是讲从惠特曼到乔姆斯
基的)作者说(大体意思):语言学的历史是由misreadings 和 misunderstandings构
成的。。。何况咱灌水的呢,糊涂一点好啊:) |
|
x*****i 发帖数: 1329 | 29 没看出来拼错太正常不过了,我也常常这样。记得一本书(大概是讲从惠特曼到乔姆斯
基的)作者说(大体意思):语言学的历史是由misreadings 和 misunderstandings构
成的。。。何况咱灌水的呢,糊涂一点好啊:) |
|
a*****g 发帖数: 19398 | 30 According to Common Sense Media, tweens log 4 1/2 hours of screen time a day
, seven days a week, 52 weeks a year. For teens, it's even higher: nearly
seven hours a day. And that doesn't include time spent using devices for
school or in school.
From babies with iPads to Chromebooks in classrooms, digital devices seem
more ubiquitous every year. And one of the hottest issues today in both
parenting and education circles is the proper role of electronic media in
children's lives.
There's research ... 阅读全帖 |
|
c********t 发帖数: 4527 | 31 oh, then I misread your balance.
you started from 5k and now 47000$?
wow. |
|
T*****E 发帖数: 1432 | 32 No, my data showed that the close price for AAPL at the extended market was
$257.xx.
I think $245.xx was just a data mistake/misreading. |
|
|
u********e 发帖数: 4950 | 34 oh, sorry, I misread you, you were talking about bearish reverse
I am still trying to decide if I should sell the put before closing as usual
Market looks more bearish than past two days |
|
w******s 发帖数: 16209 | 35 ok. I did exam your trade again, almost misread.
let's see how you goes in the long way, and better to tell what's your stop
setting.
why not just open a small account and do the trade and post out trade log?
small position doesn't really hurt in post out.
it will be more convincing.
by the way, what's the purpose? eventually want to start some fund? try to
attract some funding? or just for fun?
大leverage时的考虑。所以不可能有清出场这种事。
之一,还是能一年翻十倍。 |
|
w********1 发帖数: 3492 | 36 actually it is higher. I misread.
I delted the post. |
|
a*******n 发帖数: 187 | 37 We are not talking about optical fiber manufacturers here. Or did I misread
what you meant?
On a second note, if your statement were true, then Google would not have
invested in optical fibers and networks. Even though there are unused fibers
underground, companies still might just build new ones with better
technologies and secure more control over them.
The reason the sector slows down is because China's or Asian's or even World
's developing economy is cooling. And food and water is obviously... 阅读全帖 |
|
c****3 发帖数: 10787 | 38 不需要技术背景。掰手指头算就能算出来。
智能手机用户,一个月用到2G流量算是多的。宽带上网用户,一个月用20G流量算是一
般的。
智能手机的流量需求,要达到和现在宽带上网用户的带宽一样,用户数起码是现在宽带
用户数的十倍。现在智能手机的用户数,连宽带上网人数的十分之一都没有。
没有IPTV对带宽的需求,除非美国放开BT下载盗版,否则看不出有什么需求
misread
fibers
World |
|
s******v 发帖数: 4495 | 39 you are right. i misread with another one. |
|
b******r 发帖数: 16603 | 40 Right, I mean INTC. I misread the post.
Did MSFT get an arm license? Interesting. |
|
w******s 发帖数: 16209 | 41 hoho.. misread again.
bull |
|
b***y 发帖数: 372 | 42 http://www.cnbc.com/id/44039103
The United States lost its top-notch triple-A credit rating from Standard &
Poor's Friday, in a dramatic reversal of fortune for the world's largest
economy.
Michele Constantini | PhotoAlto | Getty Images
S&P cut the long-term U.S. credit rating by one notch to AA-plus on concerns
about growing budget deficits.
U.S. Treasurys, once undisputedly seen as the safest investment in the world
, are now rated lower than bonds issued by countries such as the UK, Germany
,... 阅读全帖 |
|
p**8 发帖数: 3883 | 43 U.S. officials notified S&P that it had made a $2 trillion mathematical
error.
---
S&P Downgrades US Credit Rating to AA-Plus
S&P, STANDARD'S AND POOR, KATE KELLY, U.S., UNITED STATES, CREDIT DOWNGRADE,
MOODY'S, MCO, FITCH
CNBC.com | 05 Aug 2011 | 10:02 PM ET
The United States lost its top-notch triple-A credit rating from Standard &
Poor's Friday, in a dramatic reversal of fortune for the world's largest
economy.
S&P cut the long-term U.S. credit rating by one notch to AA-plus on concerns
about... 阅读全帖 |
|
k********n 发帖数: 18523 | 44 "There was also a question about the stock and the risks to their jobs in
any deal. Cautioning that he could not say what would happen, Morse assured
them that any party that buys the company would likely want to retain talent
."
Then "One person asked if Yahoo was officially for sale. Morse said that “
no, we are not trying to sell the company.” Then, he blamed the media again
for misreading co-founder Jerry Yang’s recent memo about evaluating
options as code for a sale."
What the fuck is this?... 阅读全帖 |
|
h********r 发帖数: 928 | 45 vanilla misread to Virgina...,kao!
extract. |
|
b******r 发帖数: 16603 | 46 yep. A similar case, I put in very big position when WM
down to 2.xx after I totally misread the JPM deal. But was too excited by
the init price spike. It lasted couple minutes.
WFC-WB deal was much better to retailer investors. Sadly I was on the wrong
boat. |
|
c***s 发帖数: 1139 | 47 oh, sorry, I misread.
I thought you mean buy put. |
|
i********t 发帖数: 43 | 48 Apple is a large cap( 409 $B) company. Smart investors use large cap
companies to make "boring" (20-30%) gains to support their portfolio incase
their "speculative" plays fall through. Yes I fully understand that the tech
market is not the same as the consumer staples market and fully aware of
how easy dominate companies can fall of the map (Blackberry, Nokia, etc).
However, the new IOS7 software, fingerprint technology, advanced apps, etc
do not make it seem that Apple is prepared to "fall off ... 阅读全帖 |
|
m*****y 发帖数: 3981 | 49 sorry I misread, I thought right after the split |
|
o*******e 发帖数: 1057 | 50 我只是觉得批了就应该涨不是么。。。
然后IB底下有人说是misread news,它又快速反弹我就以为真的是因为误读。。
跟大家拼拼反应速度就是了。。。是我最近玩的起伏最快的了。
第一次买药股,以后再也不玩了。。 |
|