由买买提看人间百态

topics

全部话题 - 话题: occurrence
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
c**m
发帖数: 535
1
来自主题: JobHunting版 - g电面,新鲜面经
1. Find 1000 popular URLs in a log.
对于这种log里找popular URL的题目,首先肯定是要用hash去保存每一个URL的
frequency。然后对于返回top k:option 1, sort, O(nlogn);option2,用一个
size为k的min_heap,O(nlogk)。
Follow up,如果log存在多个machine里,那么肯定是要merge result了。这个时候每
个machine如果只是存一个size为k的heap显然是不够的了。所以我们可以对于每个
machine:opt 1,sort the URL frequency;opt 2, use a min_heap to store all
URL frequency。这里个人感觉opt 1好一些。
2. Return a query based on the occurrence from a big table。
首先这个很大的table,也就是一个很大file,然后不能完全放入main memory里面,是
吧?那个这个其实跟“从一个大文件里随机取出一行... 阅读全帖
f*******7
发帖数: 943
2
来自主题: JobHunting版 - Ebay三电面,攒人品
本来被ebay打击的都不想面了,他们家前两面的题对于我来说太难了,结果三面是个同
胞,没难为人。
1. Given a string, print out the char that has the greatest number of
occurrence and the # of occurrence.
e.g.
input: "abcabcbcc"
output: "c 4"
2. e.g: input: "abcabcbcc"
output: "c 4, b 3, a 2"
按字母出现的频率从大到小打印出来
今天recruiter 通知 final 面试是 3到4个小时的skype,我真有点奔溃了。。。是我
太菜了,还是他们家就这政策?
f*******7
发帖数: 943
3
之前已经面了三轮电话面试,题目也贴出来了。
本来说的是onsite,结果最后改成了4 轮Skype Interview

[1, 2, 3] => false
[1, 2, 3, 2] => true
[1, 2, 3, 2, 3] => false
[1, 2, 3, 4, 4, 4, 5, 5, 5] => false
Given an integer array, determine whether there exists an element such that
the number of occurrences of the element strictly exceeds the number of
occurrences of any other element.
中间还问了很多细节问题, 比如HashMap, Heap 等
最让我摸不到头脑的问题, heap的两个属性??? 我说了一堆,也没答到点上,最终
的答案是
1) binary tree 构成
2) the relation between the upper level and lower level no... 阅读全帖
k***u
发帖数: 46
4
来自主题: JobHunting版 - 发几个小公司的题目
非热门小startup,题目可以拿来练练,前3题是online coding test,后3题是电面
1 Longest palindrome string of a given string
2 Find the smallest prime Fibonacci number X larger than n, output the
sum of the prime divisors of X+1
3 Given an array of integers, find the number of subsets where the largest
number is the sum of the remaining numbers.
4.Return the output as a string containing the first occurrence of each
character in a given string
5.Given an input string containing spaces and a width, return an output
string o... 阅读全帖
d*k
发帖数: 207
5
来自主题: JobHunting版 - 问一道题(6)
Assume len(B) = n, len(A) = m. Maintain 'list[1..n]', where list[i] will
hold the indexes of all B[i]'s occurrence in A. Initially all the n lists
should be empty.
1. Scan A once, for each number A[i] in A, if A[i] is in B[j], append i
to list[j]. Do nothing otherwise.
After this step, for the list[1..n], list[i] holds the indexes of
all B[i]'s occurrence in A.
2. for each value list[1], remove the heads of list[2..n] until
list[j].head >list[1].head for 1 < j <= n. At this point, ... 阅读全帖
f*********d
发帖数: 140
6
来自主题: JobHunting版 - 问一道题(6)
好方法!链表奇用啊!
个人觉得是work的,除了一点小的修改,我错了请指出
1 “if A[i] is in B[j]” 这里需要用个hashtable吧?
2 for each value list[1], remove the heads of list[2..n] until
list[j].head >list[1].head for 1 < j <= n.
觉得应该是
for each value list[i] do
remove the heads of list_arr[2..n] until
list_arr[j].head >list_arr[j - 1].head for 1 < j <= n.
get a validate solution
remove head of list[i]
我临时用list_arr是为了避免歧义
===============================================
Assume len(B) = n, len(A) = m. Maintain 'list[1..n]... 阅读全帖
c**1
发帖数: 71
7
来自主题: JobHunting版 - 问一道题(8)
xor. odd occurrences will stay and even occurrences cancel each other
g*****s
发帖数: 1288
8
来自主题: JobHunting版 - 上道有意思的题
debugged code. The other solutions are not complete. Any solution shorter
than this one is wrong.
int maxRepeatedNumber(int A[], int n, int k)
{
assert(k <= n);
int i;
//replace values with occurrence
for(i = 0; i < n; i++)
{
int val = A[i];
if(val < n) //not touched
{
A[i] = (val+1)*n; //initialization, means occurrence of i is
0
//put val
for(;;)
{
int cur = A[val];
... 阅读全帖
z*********8
发帖数: 2070
9
来自主题: JobHunting版 - T家店面
. : match any char of 1 occurrence
* : match any char of 0 to more occurrences
A*********c
发帖数: 430
10
来自主题: JobHunting版 - 贡献一道电话面试题
replace 所有的occurrence还是first occurrence?
Text长不长? 如果以上两个都是yes可以用trie。
要是简单的string search觉得用任何一个linear的pattern match算法都行。
c******n
发帖数: 100
11
来自主题: JobHunting版 - Ebay 三轮skype面筋(免onsite Offer)
攒人品为了下周FB onsite
第一轮:同胞(女)
1, find the first and last occurrence of an element in a sorted array (
binary search, leetcode)
2, 四小孩过桥问题。
第二轮:烙印+南亚女(组长)
1, _ _ + _ _ = _ _ _ 把0-6填到空格中,讲思路。
2,find all duplicates and their occurrence in an array( use HashMap,
remember to filter out the single elements)
第三轮: Sr.Manager
1,四小孩过桥(没错,同一题,不过改数据了,厚着脸说没做过)
2,测试一个产品,throw the product from 1st to 100th floor, the product will
break from a certain floor and above. design a strategy to find out that
floor. (B... 阅读全帖
m*****n
发帖数: 204
12
Not sharding the data file. I mean breaking up the processed wordLineMap
into several files.
Assume 20 words per line on average, a million-line files gives you
20 million word occurrences, and each occurrence probably needs 16 bytes (
for file id, line no, and line offset], assuming a naive representation).
That's 3G memory for one file. Using
file to store the wordLineMap on disk we can handle maybe 10s of thousands
of files. Besides, records for unlike query words like 'a' and 'the' etc can
b... 阅读全帖
c*******t
发帖数: 123
13
来自主题: JobHunting版 - 我连把SDET的coding都fail掉了,唉
其实你根本不需要map
你只需要set
set 的每一个元素是
struct page {
page 1;
page 2;
page 3;
occurrence;

bool operator>(struct pageX, struct pageY ){
compare first three elements.
}
}
search set, find max occurrence.
W*******d
发帖数: 87
14
【 以下文字转载自 Boston 讨论区 】
发信人: WakeField (Pleasure*Island), 信区: Boston
标 题: 住Townhouse的,大家Condo Insurance都买多高coverage啊?
发信站: BBS 未名空间站 (Sun Apr 24 18:15:31 2011, 美东)
当前是这样的coverage,整个association当然还有master insurance来cover房子外部
,所以
这个只是cover屋内的结构(楼梯,橱柜等等)
Coverage A - Insured Value of Home 目前是7万
This coverage applies to the residence premises as shown on your policy.
This
includes structures attached to the dwelling, materials and supplies located
on or
next to the residence premises which will be us... 阅读全帖
H******7
发帖数: 34403
15
来自主题: Living版 - 我们家除房子外的花销
2001 TOYO COROLLA
Bodily Injury Liability $250,000 Per Person
$500,000 Per Occurrence $227.13
Property Damage Liability $100,000 $192.95
Uninsured Motorist $100,000/$300,000 $58.87
Uninsured Motorists Property Damage $3,500.00 $8.25
Vehicle Premium: $487.20
2010 HOND ELEMENT
Bodily Injury Liability $250,000 Per Person
$500,000 Per Occurrence $116.33
Property Damage Liability $100,000 $75.05
Uninsured Motorist $100,000/$300,000... 阅读全帖
G*******s
发帖数: 4956
16
来自主题: Money版 - BOA开cc 500反300又活了,新link
1 Any Direct Deposits completed at the time your application is processed wi
ll be Balance Transfers.
2 Bank Cash Advances include ATM, Over-the-Counter, Same-Day Online, Overdra
ft Protection, Returned Payment and Cash Equivalent (money orders, foreign c
urrency, and travelers checks from a non-financial institution, person-to-pe
rson money transfers, bets, lottery tickets, casino gaming chips and bail bo
nds) Cash Advances.
More Information about Penalty Fees and Penalty APR
Penalty Fees: If y... 阅读全帖
w*x
发帖数: 3456
17
来自主题: Money版 - 【请教】有关欧洲租车保险
Liability Insurance Supplement (LIS)*
At many Hertz locations, you receive secondary liability protection, and, in
a few locations, no liability protection under the terms of the Rental
Agreement from claims of injury by others against you resulting from an
accident with your rental car. Some locations provide primary protection
under the Rental Agreement. However, in those situations where protection is
provided by Hertz, such protection is generally no more than the minimum
limits required by ... 阅读全帖
W******e
发帖数: 3319
18
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,... 阅读全帖
B*********y
发帖数: 266
19
And the last bullet:
• An effective procedure to be implemented to prevent similar
occurrences in the future.
would it be better to say:
• Implementation of an effective procedure to prevent similar
occurrences in the future.
(are we being bossy?)

发帖数: 1
20
来自主题: Returnee版 - 中国骨干人才正在流失海外
12月27日 为什么我要替中国辩护
我要替中国辩护,并不是因为我是一个中国人,而是因为我知道中国就和这世界上绝大
数的国家一样,虽然有很多丑陋的现象,但是他们是受害者。就
象这个犯罪集团里很多的人一样,他们来自各种种族,他们可能充当了工具,但他们不
是制造这一切,谋划这一切的人。虽然经常会暴露中国产品出现问题。但要知道中国是
世界工厂,他们只是打工者,他们只是按照各种雇主提供的配方来生产,他们并不知道
他们会产生怎样的后果。或者这些工人知道后果,但他们只是奴隶,他们又如何去改变
这一切? 所以,当我的调查不断往前推进的时候,不可避免地会涉及各国的企业,但
这并不表明是针对这个国家或这个国家的人民,而是针对一种社会现实和丑陋现象。就
拿菲律宾来说,菲律宾是一个犯罪猖獗的国家,有很多犯罪分子,但是菲律宾人民却是
这个集团的受害者,他们/她们被绑架,沦为了牺牲品,人体实验对象。一个日本人,
强奸上千名菲律宾女孩,却没有受到惩罚。以前我也提到过,有20个国家的名单,这20
个国家的人民其实都是受害者。现在他们把矛头对准中国,或许仅仅是因为我揭示了他
们图害世界人民的内幕,而我是一个中国人的缘... 阅读全帖
h*****n
发帖数: 3270
21
在股市里大家都知道,在别人恐慌的时候,就是买进的最佳机会。
以下是衡量恐慌程度的三大指标(Vix, put/call, bullish/bearish Investment
advisors spread).
1. Bullish/bearish Investment advisors spread
Over the past few weeks is that the % of Bearish Investment Advisors is once
again 10% greater than the % of Bullish Investment Advisors (point A).
Since the mid 1990's this has been a very rare occurrence as shown by the
chart below as there has only been "4" of them (points B) prior to this
latest occurrence. Also note that each one was even
y***r
发帖数: 16594
22
来自主题: Stock版 - 从统计来看,明天小幅变动
With a gain just shy of 3%, today's rally was an equal opportunity advance,
as all ten S&P 500 sectors rose by at least 1%. Since the onset of the
credit crisis in February 2007 (when HSBC was one of the first to disclose
losses from bad real estate loans), today's advance is the tenth occurrence
where every sector gained more than 1%. Below we highlight each occurrence
along with the S&P 500's performance during the following day and week. On
the following day, the S&P 500 has declined five
l*****d
发帖数: 7963
23
【 以下文字转载自 Immigration 讨论区 】
发信人: shmu (shmu), 信区: Immigration
标 题: 查询豁免,签证,Infopass,做SR,找议员,催绿模板信(ZZ)
发信站: BBS 未名空间站 (Sat Apr 30 06:59:21 2011, 美东)
发信人: shmu (shmu), 信区: Postdoc
标 题: 查询豁免,签证,Infopass, 做SR, 找议员,催绿模板信
发信站: BBS 未名空间站 (Sat Mar 5 11:54:13 2011, 美东)
1. About Chinese Embassy
Chinese Embassy inquire information:
驻美使馆教育处的办公地址:
2600 TILDEN ST. NW
WASHINGTON, DC 20008
驻美使馆教育处的通信地址:
EDUCATION AFFAIRS OFFICE OF CHINESE EMBASSY
3505 International Place, NW
WASHINGTON, DC 20008
(请在信封上用汉字注明具... 阅读全帖
l*****d
发帖数: 7963
24
【 以下文字转载自 Immigration 讨论区 】
发信人: shmu (shmu), 信区: Immigration
标 题: 查询豁免,签证,Infopass,做SR,找议员,催绿模板信(ZZ)
发信站: BBS 未名空间站 (Sat Apr 30 06:59:21 2011, 美东)
发信人: shmu (shmu), 信区: Postdoc
标 题: 查询豁免,签证,Infopass, 做SR, 找议员,催绿模板信
发信站: BBS 未名空间站 (Sat Mar 5 11:54:13 2011, 美东)
1. About Chinese Embassy
Chinese Embassy inquire information:
驻美使馆教育处的办公地址:
2600 TILDEN ST. NW
WASHINGTON, DC 20008
驻美使馆教育处的通信地址:
EDUCATION AFFAIRS OFFICE OF CHINESE EMBASSY
3505 International Place, NW
WASHINGTON, DC 20008
(请在信封上用汉字注明具... 阅读全帖
s**u
发帖数: 9035
25
发信人: shmu (shmu), 信区: Postdoc
标 题: 查询豁免,签证,Infopass, 做SR, 找议员,催绿模板信
发信站: BBS 未名空间站 (Sat Mar 5 11:54:13 2011, 美东)
1. About Chinese Embassy
Chinese Embassy inquire information:
驻美使馆教育处的办公地址:
2600 TILDEN ST. NW
WASHINGTON, DC 20008
驻美使馆教育处的通信地址:
EDUCATION AFFAIRS OFFICE OF CHINESE EMBASSY
3505 International Place, NW
WASHINGTON, DC 20008
(请在信封上用汉字注明具体收件人姓名,信中内容:如报道注册,J-1豁免,回国证
明等,护照/签证由Visa Office直接受理)
若本人到馆,请务必提前与管片负责人电话预约,可以乘红线地铁至Vanness UDC站下,
沿Connecticut Ave.(康街)往南步行一个街区即为TILDEN ST.,步行到2600大... 阅读全帖
z***n
发帖数: 49
26
好几个人发信问我要催议员的模板,我也就是抄的mitbbs网上以前高人的成果。非原创
,大家感谢以前人的贡献吧:
通常大家所谓的找议员,个人理解是找美国联邦的参议员(Senators)和(或)众议员
(Representatives)。众所周知,即便是咱们这些在美国的外国人,有很多事情都可
以通过找议员而得到更快和更合理的解决。因此,大家应该充分利用这一有利的条件,
遇有相关事宜时可在适当的时候寻找他或她们帮助,以达到自己的目的。鉴于近日来不
时有朋友询问找议员的相关事宜,狐狸俺现将相关信息小结如下,以供大家参考!不妥
之处敬请知情者更正、补充(谢谢)。
一、寻找途径
狐狸认为寻找议员们的最佳途径是借助于网络,以下分别是寻找参议员和政议员的
连接,点击后你就可以轻易地找到你所想找的议员们及其他或她们各自的主页。在议员
们的个人主页上你可发现很多有用的信息,如联系方式与办法,他们能够协助解决的问
题及其解决这些问题所需要的信息与材料,还有该议员名下的办公室所在地及其各个办
公室的工作人员等。
1、找参议员请点击:
http://www.senate.gov/general/contact_... 阅读全帖
s******r
发帖数: 144
27
发信人: shmu (shmu), 信区: Postdoc
标 题: 查询豁免,签证,Infopass, 做SR, 找议员,催绿模板信
发信站: BBS 未名空间站 (Sat Mar 5 11:54:13 2011, 美东)
1. About Chinese Embassy
Chinese Embassy inquire information:
驻美使馆教育处的办公地址:
2600 TILDEN ST. NW
WASHINGTON, DC 20008
驻美使馆教育处的通信地址:
EDUCATION AFFAIRS OFFICE OF CHINESE EMBASSY
3505 International Place, NW
WASHINGTON, DC 20008
(请在信封上用汉字注明具体收件人姓名,信中内容:如报道注册,J-1豁免,回国证
明等,护照/签证由Visa Office直接受理)
若本人到馆,请务必提前与管片负责人电话预约,可以乘红线地铁至Vanness UDC站下,
沿Connecticut Ave.(康街)往南步行一个街区即为TILDEN ST.,步行到2600大... 阅读全帖
s**u
发帖数: 9035
28
发信人: shmu (shmu), 信区: Postdoc
标 题: 查询豁免,签证,Infopass, 做SR, 找议员,催绿模板信
发信站: BBS 未名空间站 (Sat Mar 5 11:54:13 2011, 美东)
1. About Chinese Embassy
Chinese Embassy inquire information:
驻美使馆教育处的办公地址:
2600 TILDEN ST. NW
WASHINGTON, DC 20008
驻美使馆教育处的通信地址:
EDUCATION AFFAIRS OFFICE OF CHINESE EMBASSY
3505 International Place, NW
WASHINGTON, DC 20008
(请在信封上用汉字注明具体收件人姓名,信中内容:如报道注册,J-1豁免,回国证
明等,护照/签证由Visa Office直接受理)
若本人到馆,请务必提前与管片负责人电话预约,可以乘红线地铁至Vanness UDC站下,
沿Connecticut Ave.(康街)往南步行一个街区即为TILDEN ST.,步行到2600大... 阅读全帖
s**u
发帖数: 9035
29
See below, bless
标 题: 查询豁免,签证,Infopass,做SR,找议员,催绿模板信(ZZ)
发信站: BBS 未名空间站 (Sat Apr 30 06:58:02 2011, 美东)
发信人: shmu (shmu), 信区: Postdoc
标 题: 查询豁免,签证,Infopass, 做SR, 找议员,催绿模板信
发信站: BBS 未名空间站 (Sat Mar 5 11:54:13 2011, 美东)
1. About Chinese Embassy
Chinese Embassy inquire information:
驻美使馆教育处的办公地址:
2600 TILDEN ST. NW
WASHINGTON, DC 20008
驻美使馆教育处的通信地址:
EDUCATION AFFAIRS OFFICE OF CHINESE EMBASSY
3505 International Place, NW
WASHINGTON, DC 20008
(请在信封上用汉字注明具体收件人姓名,信中内容:如报道注册,J-1豁免,回国证
明等,护照/签证由Visa Off... 阅读全帖
s**u
发帖数: 9035
30
发信人: shmu (shmu), 信区: Postdoc
标 题: 查询豁免,签证,Infopass, 做SR, 找议员,催绿模板信
发信站: BBS 未名空间站 (Sat Mar 5 11:54:13 2011, 美东)
1. About Chinese Embassy
Chinese Embassy inquire information:
驻美使馆教育处的办公地址:
2600 TILDEN ST. NW
WASHINGTON, DC 20008
驻美使馆教育处的通信地址:
EDUCATION AFFAIRS OFFICE OF CHINESE EMBASSY
3505 International Place, NW
WASHINGTON, DC 20008
(请在信封上用汉字注明具体收件人姓名,信中内容:如报道注册,J-1豁免,回国证
明等,护照/签证由Visa Office直接受理)
若本人到馆,请务必提前与管片负责人电话预约,可以乘红线地铁至Vanness UDC站下,
沿Connecticut Ave.(康街)往南步行一个街区即为TILDEN ST.,步行到2600大... 阅读全帖
s**u
发帖数: 9035
31
发信人: shmu (shmu), 信区: Postdoc
标 题: 查询豁免,签证,Infopass, 做SR, 找议员,催绿模板信
发信站: BBS 未名空间站 (Sat Mar 5 11:54:13 2011, 美东)
1. About Chinese Embassy
Chinese Embassy inquire information:
驻美使馆教育处的办公地址:
2600 TILDEN ST. NW
WASHINGTON, DC 20008
驻美使馆教育处的通信地址:
EDUCATION AFFAIRS OFFICE OF CHINESE EMBASSY
3505 International Place, NW
WASHINGTON, DC 20008
(请在信封上用汉字注明具体收件人姓名,信中内容:如报道注册,J-1豁免,回国证
明等,护照/签证由Visa Office直接受理)
若本人到馆,请务必提前与管片负责人电话预约,可以乘红线地铁至Vanness UDC站下,
沿Connecticut Ave.(康街)往南步行一个街区即为TILDEN ST.,步行到2600大... 阅读全帖
y***5
发帖数: 62
32
来自主题: EB23版 - 请议员催绿
没人回复,难道大家伙都自己写?找到一封给Mrs.Obama要求帮催绿的模板信,可以改
改给议员吗?还是有更好的?
March 1, 2009
Dear Mrs. Obama,
.....
However, there are always roadblocks for us, immigrants to the U.S., to
achieve our American dreams. I’m writing to request your kind assistance
to expedite the adjudication of our green card applications, which have been
delayed for an unreasonably long period of time by the USCIS.
I came to US in 2001 from China to pursue my XX degree at XX University.
After graduation in 2003, I have been working as ... 阅读全帖
W*******d
发帖数: 87
33
当前是这样的coverage,整个association当然还有master insurance来cover房子外部
,所以
这个只是cover屋内的结构(楼梯,橱柜等等)
Coverage A - Insured Value of Home 目前是7万
This coverage applies to the residence premises as shown on your policy.
This
includes structures attached to the dwelling, materials and supplies located
on or
next to the residence premises which will be used to construct, alter or
repair the
dwelling or other structures on the residence premises.
Coverage C - Personal Property 目前是1万5
Coverage for personal property ow... 阅读全帖
m****6
发帖数: 8689
34
一直版上有同学问哪家车保险性价比高,我正好收到他们年度的清单,这里列一下我家
两辆车的保险情况,供大家对比参考:
Liability--
Bodily injury($268.6): 25W each person, 50W each occurrence
Property damage($162.1):10W each occurrence
Uninsured motorist added on to at-fault liability limits--
bodily injury($58.8): 10W each person, 30W each accident
Property damage($19.1): 10W each accident(less $250 deductible)
Comprehensive($161.4): Actual cash value less $500 deductible
Collision($406.3): Actual cash value less $500 deductible
Additional coverages--
loss... 阅读全帖
s*********r
发帖数: 1185
35
来自主题: LosAngeles版 - 加州的保险费怎么这么贵啊?
06年的toyota highland, 全保, bodily injury $25000 each person, $50000 each
occurrence, property damage $25000 each occurrence, medical payment $1000,
一年保费居然就要将近一千块.
这个要价在加州这里算高了吗? 有没有便宜的推荐? 还有, 我们的保额是否太低了, 一
般要买到多少合适? 我们记录很好, 以前没有认真考虑过这个问题.
多谢.
s********6
发帖数: 3
36
车保险涨的太贵了,一辆车,半年保险费790 ,请大家推荐好的保险公司(价格合理,
服务理赔可以)。
现在有2个问题:
1, 我和老公上半年,加了我妈,她是leaner permit, 在中国没驾照,保险公司就把
我和老公的好司机discount给去了,光这个半年就多付出200,(原来半年是560多)。
请问这样合理吗? 有没有公司加 leaner permit不加价的。
2, 另外, 现在在 farmers, 都用了好几年了, 因为前些年没怎么涨价, 我一直没
仔细看单子我才发现, 我1年将近付1600,给我的 bodily injury liability :$50,
000 each person/$100,000 each occurrence.
property damage liability: $50,000 each occurrence. 这是不是也太低了。
如果我现在换保险公司, bodily injury liability 我要买多少才安全 ($300,000
还是$500,000。请大家给我些建议。 另外,如买以上的这个30/50万的保额的,保险
费大概是多少... 阅读全帖
h******i
发帖数: 282
37
担心的朋友看看这个princeton大学的切尔诺贝利核泄漏fallout全球地图,显然中国,
部分美国当年也飘到了,我们当年不知道,也没关系。
https://qed.princeton.edu/index.php/User:Student/Radioactive_fall-out_from_the_Chernobyl_accident
还有这篇研究文章Conclusions 是:
http://users.owt.com/smsrpm/Chernobyl/glbrad.html
Conclusions
For a person living in eastern Europe, the occurrence of some disorder
resulting from the Chernobyl Accident will not appear for several years,
which is typical for chronic exposure. Immediate affects from the radiation
field produced during the... 阅读全帖
d*i
发帖数: 9453
38
来自主题: Fitness版 - [合集] Black-And-Blue Nails
☆─────────────────────────────────────☆
wildMerth (Merth) 于 (Mon Dec 10 23:54:37 2007) 提到:
Is usually caused by sudden or repetitive injury to a toe. This might occurr
during sports that involve running or stopping quickly.
有这个, 好讨厌, 在等它变薄或者脱落. 好像没有什么好办法, 是吧?
☆─────────────────────────────────────☆
mark (花生,微爷远爷的爸爸) 于 (Tue Dec 11 09:33:42 2007) 提到:
我觉得没好办法。not a big deal anyway

occurr
☆─────────────────────────────────────☆
Kalliope (Kalliope) 于 (Wed Dec 12 00:05:26 2007) 提到:
The
d*****e
发帖数: 16730
39
来自主题: Football版 - 长鼻晚上睡的真早啊... 7:15
FOXBORO, Mass. -- When an unexpected earthquake struck the New England area
on Tuesday night, many people found themselves rattled or frightened by the
random occurrence. But not Tom Brady. Brady, who is familiar with the
natural disaster from his childhood in northern California, says he felt the
slight tremble just before bed on Tuesday night but didn't let it impede
his sleep schedule. "I felt that; shortly after I was in bed. " Brady said
of the earthquake. The tiny tremor, as it was felt in... 阅读全帖
r***6
发帖数: 401
40
来自主题: GunsAndGears版 - Home invasion tactics
Here is a good article I recently read. Good distinction between burglary va
invasion.
Home Invasion Robbery
Protect Your Family with a Security Plan
by Chris E McGoey, CPP, CSP, CAM
Home Invasion
One of the more frightening and potentially dangerous crimes that can occur
to a family is a home invasion robbery. A home invasion is when robbers
force their way into an occupied home, apartment or hotel room to commit a
robbery or other crimes. It is particularly frightening because it
violates our ... 阅读全帖
h******9
发帖数: 1007
41
来自主题: NBA版 - 心情不好
body injury: $100,000 per person/$300,000 per occurrence
property damage: $50,000 per occurrence
b*s
发帖数: 82482
42
来自主题: LeisureTime版 - 爱情
参见一个homage单词的OED词条:
homage, n.
View as:
Outline |
Full entry
Quotations:
Show all |
Hide all
Pronunciation: Brit. /hmd/ , U.S. /(h)ɑmd/ (also, chiefly in sense 3b)
Brit. /mɑ/ , U.S. /omɑ/
Forms: ME homoge, ME omage, ME umage, ME ummage, ME–15 hommage, ME–
homage; Sc. pre-17 homadge, pre-17 homag, pre-17 homege, pre-17 omage, pre-
17 ymage (perhaps transmission error), pre-17 17– homage. (Show Less)
Etymology: < Anglo-Norman homaige, humage, Anglo-Norman and Old French
omage, A... 阅读全帖
m**e
发帖数: 150
43
你看错了。这里是论文的原始出处。
http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.p
For all five diseases analyzed in the present study, the disease rates in
males and/or females were significantly increased when neutering was
performed early and/or late. When a disease occurred in intact dogs, the
occurrence was typically one-fourth to one-half that of early- and/or late-
neutered dogs. When no intact dogs were diagnosed with a disease, such as
with CCL in both sexes and MCT in females, the occurr... 阅读全帖
r*****a
发帖数: 27155
44
嗯?我咋觉得还是你看错了。。。这里说的是 and/or,有的是or而已
比如HD,男金毛,intact是7/138,late neuter是2/65,early neuter是16/156
Perusal of Figure 1 and Table 4 reveals that HD in early-neutered males,
affecting 10.3 percent, was more than double the proportion of intact males
with the disorder, which was 5.1 percent, a significant difference (K-M: p<0
.01). There was also a significant difference between early and late
neutering in males (K-M: p<0.05). The mean ages of HD onset for intact,
early-neutered, and late-neutered male... 阅读全帖
k****u
发帖数: 1686
45
来自主题: Fengshui版 - 六爻入门——基础篇
声明
1.此资料中内容是六爻占卜术的最基础的知识;
2.我能整理此资料,并不代表我的技术高,这只是个人机缘的关系。
3.资料中的内容、观点与论坛无关。
整理此资料的目的
1.为了让不懂六爻占卜的朋友对其有所了解;
2.给想学习六爻占卜的易友一个入门的基础资料;
3.为了大家相互交流与个人卦技的提高。
资料内容简述如下:
第一部分 为占卜术基础内容,此中内容为所有占卜方法都使用的基础知识;
第二部分 为六爻占卜术的基础内容,其为六爻占卜方法专用的基础知识。
第三部分 为六爻占卜中一些常见的基础问题的个人浅见。
学习方法:
学习占卜不是一天两天的事儿,我们以六爻为例,你学会了起卦的方法,这并不代
表你就会解卦了,有的人学习了十几年,几十年也没有看到门,可是有的人学了几个月
甚至几天就可以分析简单的卦了,有的人不服气,有的人不明白,其实这其中除了个人
的机缘与命运不同以外,还有个学习方法的问题。(以下内容为一家之言,仅供参考)
1、学习六爻占卜术,首先要有一个稳定的心态,因为时下派系繁多,又都有各自
的一套技法,而我们这些新人也没有办法去分析那一家对那一家错,所以我建议... 阅读全帖
x****u
发帖数: 12955
46

He thought he was playing the Manchus, but the Manchus played him
instead.
He either didn't realize what the Manchus were planning to do, or didn't
want to realize it. It's very possible for someone to refuse to believe
he
was fooled until the bitter end, there are way too many examples of that
in
history to count.
That would probably absolve him of "deliberate betrayal", but he did
help
the Manchus. Either way, the only answer for what he did, without
labeling
him a real traitor, is that he... 阅读全帖
D*****r
发帖数: 6791
47
来自主题: TrustInJesus版 - THE NAME "LUCIFER" HAS NEVER BELONGED TO SATAN!
http://www.franknelte.net/Nelte_HTML/LUCIFER.htm
In the English version of the Bible the name "Lucifer" appears only one time
, in Isaiah 14:12. This verse reads:
"How are you fallen from heaven, O LUCIFER, son of the morning..." (Isaiah
14:12)
Now the word "Lucifer" is not an English word, but a LATIN word. And so the
question is:
WHO GAVE THE WORLD THIS LATIN NAME "LUCIFER"? AND WHY DID THEY GIVE US THIS
LATIN NAME?
HOW WE CAME TO HAVE THIS NAME "LUCIFER"
In 382 A.D. Pope Damasus commissioned ... 阅读全帖
R*o
发帖数: 3781
48
E. Exposition Proper
6:15 What then? Shall we sin because we are not under law but under grace? A
bsolutely not!
In 6:14 Paul summarizes 6:1-13 saying that Christians are under grace and ar
e no longer under law. This statement, however, could be misunderstood to me
an that Christians are free to be lawless. Paul anticipates such a ludicrous
misreading of his gospel, that he surfaces the question and deals with it i
n 6:15-23. There is always the danger that the doctrine of grace might be mi
sun... 阅读全帖
a*****y
发帖数: 33185
49
来自主题: Wisdom版 - 概念法与究竟真实法-ZZ
【 以下文字转载自 ariya_sacca 俱乐部 】
发信人: JeanIris (Iris), 信区: ariya_sacca
标 题: 概念法与究竟真实法-ZZ
发信站: BBS 未名空间站 (Fri Jan 28 09:27:50 2011, 美东)
概念法与究竟真实法
Concept and Reality
英译中:metta
2010年11月
(This is the appendix B of the book "The Essentials of Insight
Meditation Practice--A Pragmatic Approach to Vipassana" by Ven. Sayadaw
Sujiva 这是舍弃我禅师著《Mahasi毗 婆舍那禅修法要》的附录B)
It is important that the meditator understands the difference
between “concept” and “ultimate realities,” because it is the direction
which he... 阅读全帖
d****n
发帖数: 2507
50
拿俺的新车当例子,半年156。我是不是该改一下?
有什么建议?
Limits Deductable
Bodily Injury $25,000 each person Not Applicable
$50,000 each occurrence
Property Damage $25,000 each occurrence
Uninsured Motorists Insurance
Bodily Injury $25,000 each person Not Applicable
$50,000 each accident
Property Damage $25,000 each accident $200
Auto Collision Insurance Actual Cash Value $500
Comprehensive Actual Cash Value $500
excluding Collision
DISCOUNTS
Your
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)