由买买提看人间百态

topics

全部话题 - 话题: enumerate
首页 上页 1 2 3 4 5 6 7 8 9 下页 末页 (共9页)

发帖数: 1
1
是有点麻烦,居然写了15行
def all_palindromic_sub_sequence(s):
"""
:type s: str
:rtype: list[str]
"""
if not s:
return ['']
dic = collections.defaultdict(list)
for i, c in enumerate(s):
dic[c].append(i)
ans = set()
for k in dic.keys():
index_list = dic[k]
ans.add(k)
for i, j in itertools.combinations(index_list, 2):
sub = all_palindromic_sub_sequence(s[i+1:j])
ans.update(k + w + k for w in sub)
del di... 阅读全帖
H**********5
发帖数: 2012
2
看不懂,能翻译成java吗?


: 是有点麻烦,居然写了15行

: def all_palindromic_sub_sequence(s):

: """

: :type s: str

: :rtype: list[str]

: """

: if not s:

: return ['']

: dic = collections.defaultdict(list)

: for i, c in enumerate(s):


发帖数: 1
3
其实这种题就是乱编的,楼主别太在意,面试重要的还是基础概念、主流方法。Coding
随便准备一下,Leetcode高频题吃透就差不多了,大包裹还是要靠系统设计搞得扎实。
代码再精简一下,13行就够了:
def all_palindromic_sub_sequence(s):
if not s:
return ['']
dic = defaultdict(list)
for i, c in enumerate(s):
dic[c].append(i)
ans = set()
for c, index_list in dic.iteritems():
ans.add(c)
for i, j in combinations(index_list, 2):
sub = all_palindromic_sub_sequence(s[i+1:j])
ans.update(c + w + c for w in sub)
return list... 阅读全帖
o****g
发帖数: 174
4
一些需要登录才能看的信息,web crawl 的时候,如果headers 有了cookies, UA, IP
这些信息是否也能crawl 到?
一些网站如douban.com 它的一些信息是需要登录才能看到,当在python 里用scrapy,
requests 进行web crawling 的时候,如果我们登录了douban, 然后又把登录都得到的
cookies, UA, ip 这些信息放在headers里,是不是就能在python web crawl 的时候在
python 代码里crawl 到需要登录才能看到了信息了?或者要得到哪些信息才能在代码
里得到登录才能看到的html ?
requests:
import requests
url = 'SOME URL'
headers = {
'cookie':'cookies1'
'User-Agent': 'My User Agent 1.0',
'From': '[email protected]' # This is another valid field
}
response = re... 阅读全帖
S*A
发帖数: 7142
5
来自主题: Living版 - 我的无线浇水系统终于上线了
你们有多少人自己刷 router 的 firmware?
硬件需要照片都很明显了。
我用 openwrt firmware 因为开发很方便。
client mode 连入 wireless network.
script 是用 Lua 写的,部分模块也有 Python 版本是因为我不太会
用 lua.
这个是 irrigation caddy 的控制模块 caddy.py, 其他的就是
编程的问题。
import re
import urllib2
import time
class Schedule:
dayname = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]
def __init__(self, on=0, days=[], hour=0, min=0, pm=0,
z1=0, z2=0, z3=0, z4=0, z5=0,
z6=0, z7=0, z8=0, z9 = 0):
self.on = on
self.day... 阅读全帖
t********e
发帖数: 931
6
Closing Cost Scams
NEW YORK (MONEY Magazine) -- Technology has magically lowered the price of
buying everything from stocks to airline tickets. But home buyers now pay
eight times the closing costs they paid 40 years ago. Here's how residents
of one Minnesota street were overcharged again and again on their home
purchases, many by thousands of dollars. And why your street probably isn't
all that different.
When Lewis Leung was buying his two-bedroom ranch in St. Louis Park, Minn.
in 2004, he rea... 阅读全帖
c**2
发帖数: 8496
7
if they change it after close, that's stealing. You need to have prior
pictures showing newer appliances in the house, and show the contract
stating seller will leave these appliances (must list / enumerate every
thing separately).
a*****g
发帖数: 19398
8
来自主题: NextGeneration版 - The Hardest Job in America
The Hardest Job in America
http://www.edutopia.org/blog/hardest-job-america-teaching-mauri
The hardest job in America? Being a teacher, so said Sargent Shriver on
October 13, 1972, in a speech given as part of his vice presidential
campaign with George McGovern. Forty-two years after this remarkable speech,
his words bear sharing.
Sargent Shriver begins by saying that it is the hardest job "not just
because the teachers of America have been blamed and castigated for all the
ills" of our educatio... 阅读全帖
B******1
发帖数: 9094
9
来自主题: Parenting版 - 兴趣是成功之母
The problem is that not a single person can recognize those sufficient conditions for their beloved children to prosper in due course. One might enumerate a laundry list of necessary conditions, many of which are not guaranteed for their children. For example, to be successful, luck is one of the necessary conditions! And luck is elusive. But as you rightfully pointed out, they are not sufficient!
Instead of pondering how to establish those sufficient or necessary conditions for a child to grow,... 阅读全帖
p*******g
发帖数: 2682
10
来自主题: Parenting版 - 兴趣是成功之母

conditions for their beloved children to prosper in due course. One might
enumerate a laundry list of necessary conditions, many of which are not
guaranteed for their children. For example, to be successful, luck is one of
the necessary conditions! And luck is elusive. But as you rightfully
pointed out, they are not sufficient!
conditions for a child to grow, parents are better off simply growing up
with their children together. The definition of success is a moving target.
Why bother? Furtherm... 阅读全帖
a*****g
发帖数: 19398
11
来自主题: Parenting版 - The Hardest Job in America
The Hardest Job in America
http://www.edutopia.org/blog/hardest-job-america-teaching-mauri
The hardest job in America? Being a teacher, so said Sargent Shriver on
October 13, 1972, in a speech given as part of his vice presidential
campaign with George McGovern. Forty-two years after this remarkable speech,
his words bear sharing.
Sargent Shriver begins by saying that it is the hardest job "not just
because the teachers of America have been blamed and castigated for all the
ills" of our educatio... 阅读全帖
s****0
发帖数: 956
12
看看这个跟贴:
Craig Schultz (Craig_Schultz)
Beyond their poor content, i.e. standards in math setting requirements 2
years behind the rest of the world, the fact that there is no process to
amend them speaks worlds as to their lack of being a "standard".
Standards are revised, updated and sometimes even redacted as new and better
standards become available but with Common Core, they are essentially
carved in stone as there is no provisions allowing for or supporting their
change.
这个人嫌标准太低了,估计更多的(包括老师)... 阅读全帖
v*******e
发帖数: 11604
13
【 以下文字转载自 Military 讨论区 】
发信人: fighter644 (武士), 信区: Military
标 题: 好消息,我挺梁警官的评论成了纽约时报编辑pick的评论了
发信站: BBS 未名空间站 (Mon Feb 23 22:31:57 2015, 美东)
首先,祝贺大家的努力,华人的大签名活动以及各种抗议已经得到主流的注意,今天的
纽约时报发表文章专门说“梁警官事件华人社区分离的看法”,貌似很客观地报道了一
下华人的主流意见,而且允许评论。
400多评论,大多数认为梁警官是被当作了替罪羊。这不仅仅是我的观察,有人看了评
论也总结了:A lot of these comments are depressing with most viewing this
situation through the lenses of whatever ethnic group they belong to with
most of the sympathy going to the police officer because people think he is
the ha... 阅读全帖

发帖数: 1
14
import ystockquote
from pprint import pprint
import sys
from numpy import *
import matplotlib.pyplot as plt
import datetime
#print name,':', ystockquote.get_price(name)
#pprint(ystockquote.get_historical_prices('GOOG', '2013-01-03', '2013-01-08'
))
#print ystockquote.get_historical_prices('GOOG', '2013-01-03', '2013-01-08')
['2013-01-04']['Open']
#pprint(ystockquote.get_all(name))
#ystockquote.urlopen('http://www.google.com/finance/getprices?i=60&p=10d&f=d,o,h,l,c,v&df=cpct&q=IBM')
#print ystock... 阅读全帖
l******5
发帖数: 3030
15
来自主题: Immigration版 - 超长经验总结及如何写 EB1 RFE letter
EB1A, NSC, 绿了, 一年多的征程结束了, 俺老大想写点流水账以及
经验与教训, 超长, 希望能给正在准备申请绿卡, 特别是拿到I-140 RFE
的同学一点帮助. 对于I-140已过, 甚至拿到绿卡的, 请迅速飘过.
Timeline:
140(attorney) RD: 06/24
DIY 140PP RD: 07/17
140RFE: 07/27
DIY 140RFE RD: 09/30
140 AD: 10/01
DIY 485 RD: 10/13
FP 11/06 (three soft LUDs after FP, 11/06, 11/08, 11/09)
485 AD: 12/03 (no any LUD before the approval, EAD was approved 12/08, AP was approved 12/14)
Background:
1. Award: "Science and Technology Progress Award" granted by Ministry of
Education of China; “National... 阅读全帖
T*****E
发帖数: 1785
16
来自主题: Immigration版 - 大家帮我改改contribution的格式
Thank you so much!
I guess you will get card pretty soon. You are really good at this stuff now
.

testimony here.)
my original impact on the other people's research can be shown from selected
citation from people who cited my paper.(Citation maps etc see Exhibit.) (
Quotations from others can be served as independent expert evidence. )
the coverage of the major media and scientific reports. Enumerate the
major media coverage. (Details report see exhibit)
T*******y
发帖数: 6523
17
来自主题: Immigration版 - Exhibit 用Excel有优势吗?
hehe, but Word bullets can be also edited in style, and 设置行和列颜色、背景
ah. The automatic enumeration by that is handy.
h********n
发帖数: 179
18
来自主题: Immigration版 - NIW rfe help needed!
周一收到NIW rfe 的消息,今天收到正式的通知。 恳请大家帮忙看看怎样回复这个rfe。
9月初提交的。 我的背景在提交的时候如下: US 二流大学生物医学工程 PHD,现在
top 2 牛校医院做博后。
10 篇英文journal paper (4 first author),
1st author proceeding,
one 1st author book chapter;
over 10 review for 2 journals and one
conference; over 130 citations (没有把独立的放出来),
7 篇推荐信 (3个独立的, 都是来自美国的推荐信)。
两个月以后,我的citation 是148,多了4个review。
rfe的大意:It is not sufficient that you simply enumerate your qualification
since the labor certification process may reveal that .....Similarly, it
cannot be argued... 阅读全帖
c**2
发帖数: 8496
19
来自主题: Immigration版 - 请问回国签O1
about same risk as getting H1 visa stamp in China. even though technically,
O visa is not protected by INA literally as a dual-intent (only HLKV visa
are enumerated in INA as dual intent)
c**2
发帖数: 8496
20
来自主题: Immigration版 - 请问回国签O1
about same risk as getting H1 visa stamp in China. even though technically,
O visa is not protected by INA literally as a dual-intent (only HLKV visa
are enumerated in INA as dual intent)
k****a
发帖数: 7077
21
来自主题: EB23版 - 大快人心,阿三ICC公司被搞
这帮二逼太嚣张了。
http://www.nytimes.com/2011/06/22/us/22infosys.html?hp=&adxnnl=
June 21, 2011
Indian Company Under Scrutiny Over U.S. Visas
By JULIA PRESTON and VIKAS BAJAJ
A giant Indian outsourcing company with thousands of employees in the United
States is facing an expanding federal investigation prompted by claims from
an American whistle-blower that it misused short-term visitors’ visas to
bring in low-cost workers from India.
Accusations that the company, Infosys Technologies, repeatedly violat... 阅读全帖
z********3
发帖数: 1430
22
I heard 2 difference answers from real estate people. So I did below
research. My English is not good and I cannot type in Chinese at this moment
. I think it is illegal from what I read, but correct me if I’m wrong.
According to below law code
http://www.mass.gov/ocabr/docs/dpl/boards/re/lic-law-and-regula
page 8, item (F)
(f) accepted, given or charged, any undisclosed
commission, rebate or profit on expenditures for a
principal;
sec. 87AAA. Suspension, Revocation or Refusal of
Renewal of Lice... 阅读全帖
z********3
发帖数: 1430
23
刚刚想回复你之前的贴,不见了。
之前那个贴子不见了,不过我真的还是很想知道究竟这个rebate的事情,因为有agent
和我说是合法,有agent和我说不合法,我自己又看不懂这个law code,请问白胖的意
见,或者你们去上课续牌的时候问老师也好。
华人买卖,我知道买了房子之后很多agent会给一个红包,其实也算是rebate,不算新
鲜事,都是意思意思。老外agent做了那么久,他们不知道?如果这个方法可以为自己
带来巨大利益,按理来说应该会是行业标准啊,不懂不懂。
According to below law code
http://www.mass.gov/ocabr/docs/dpl/boards/re/lic-law-and-regula
page 8, item (F)
(f) accepted, given or charged, any undisclosed
commission, rebate or profit on expenditures for a
principal;
sec. 87AAA. Suspension, Revocation or Refus... 阅读全帖
B******1
发帖数: 9094
24
"Self-defense" means that when a person believes that his life is in danger,
or believes that he is in imminent danger of grievous bodily harm, he has a
right to defend himself. The New York law also says that a person, in
defending himself, must use no more force than is actually necessary. He
must, if he can, avoid the quarrel. In other words, if he can run away, it
is his duty to do so. While that may not be popular with men when they are
assaulted, yet that is the law of the New York state.
... 阅读全帖
r****t
发帖数: 10904
25
来自主题: SanDiego版 - 走过伤痛的2013年 (转载)
给 *每个* 关心她的人集合卡?不说她如何能 enumerate 所有关心她的人。这个圣诞
节寄了 4 封贺卡,已经觉得太花时间了。。。
p****n
发帖数: 2247
26
来自主题: SanDiego版 - [合集] 走过伤痛的2013年 (转载)
☆─────────────────────────────────────☆
illusion06 (濯缨) 于 (Wed Jan 1 16:12:48 2014, 美东) 提到:
经版务商议一致决定重开此帖。
欢迎进行理性讨论,严禁人身攻击。
发信人: lilykang (伊一人), 信区: NextGeneration
标 题: 走过伤痛的2013年
发信站: BBS 未名空间站 (Tue Dec 31 16:33:07 2013, 美东)
这是伤痛的一年,也是让我成长的一年,
这一年里,我送别了结婚17年相依相伴的老公。
这一年里,我被素不相识的人狠狠伤害过,这一年里,我也被素不相识的好心人深深感
动。
这一年里,有多少个夜晚,我不眠到天明,又有多少个夜晚,睡着以后,多么希望一觉
醒来,这一切只是一个噩梦。
这一年里,我独自带着三个孩子,搬了一次家,找了两个半职工作,看了六次心理咨询
,学会了每月按时付帐单,学会了自己修理家里电器的小毛病。
这一年里,女儿两岁了,过了一个没有爸爸的生日,还好有热心的朋友们到我家来给她
庆祝生日,依旧过了一个热闹的生日party。
... 阅读全帖
m**********1
发帖数: 361
27
WTF. you fockers just enumerate all the bad things and didn't mention ant if
the good things the bill will bring. font let your own little lostoney to
blind you.
x***m
发帖数: 1733
28
来自主题: SanFrancisco版 - 象棋残局
there are too many pieces. if 两三步 finished, you can enumerate, which can
probably be done in 2 or 3 hours.
but i doubt 2 or 3 steps assumption.
l***d
发帖数: 396
29
【 以下文字转载自 Military 讨论区 】
发信人: fighter644 (武士), 信区: Military
标 题: 好消息,我挺梁警官的评论成了纽约时报编辑pick的评论了
发信站: BBS 未名空间站 (Mon Feb 23 22:31:57 2015, 美东)
首先,祝贺大家的努力,华人的大签名活动以及各种抗议已经得到主流的注意,今天的
纽约时报发表文章专门说“梁警官事件华人社区分离的看法”,貌似很客观地报道了一
下华人的主流意见,而且允许评论。
400多评论,大多数认为梁警官是被当作了替罪羊。这不仅仅是我的观察,有人看了评
论也总结了:A lot of these comments are depressing with most viewing this
situation through the lenses of whatever ethnic group they belong to with
most of the sympathy going to the police officer because people think he is
the ha... 阅读全帖
e*H
发帖数: 16
30
the cat file name should match the one in inf file [Versions] section. for
various kmdf samples in wdk, the cat file should be KmdfSamples.cat (instead
of toaster.cat)
you should not use 'net start' to start a pnp driver. instead, for root-
enumerated driver, 'devcon install' and the device will start automatically
for any sample (including echo\kmdf\autosync), the cat file should be
generated by yourself with inf2cat. The cat file is then signed by yourself
(for testing purpose) or by whql (for
z********o
发帖数: 4284
31
大家把自己认识的last name是zhou的都enumerate以下,然后算算年龄什么的就差不多
人肉出来了
t**********0
发帖数: 9359
32
砖家写论文,能不能分个段,enumeration?
S*******h
发帖数: 7021
33
来自主题: Utah版 - 犹他情况 (转载)
【 以下文字转载自 USANews 讨论区 】
发信人: CoolidgePalm (), 信区: USANews
标 题: 犹他情况
发信站: BBS 未名空间站 (Wed Oct 12 13:43:48 2016, 美东)
我今天刚和我在犹他时的邻居还有朋友的妈妈电话上聊了聊,她们也很心急犹他的选情
,她们都是咱爸妈一代的人,早可透了希,烦死她了,但年青一代没经过那些事,媒体
太厉害,全是川普的负面新闻,她们也试图说服别人,但很多人都on the high horse
,说他们的道德不允他们投川普,唉。她们也不明白这些人为啥这么固执。她们只能影
响自己的家人朋友,我也是只能和最亲近的人才能劝,一般朋友不好意思明显的试图影
响人家,谁都不傻。我现在住在弗州,我一定尽力。她们都说如果犹他帮希胜选,她们
就太伤心了。下面是我一个朋友在脸书上发的文,也是想劝人的。
Utah may make a mistake this election, in my view... If we vote for the
very late to the party McMullin (3rd par... 阅读全帖
g********0
发帖数: 15010
34
Pennsylvania man forges new path: 'Slimdown' jog gets him $100 fine
For one runner, getting slim during the slimdown comes at a price.
A Pennsylvania man who went jogging in a national historic park was slapped
with a $100 fine because the area was closed due to Washington’s budget
impasse, he said Tuesday.
John Bell, 56, of Chadds Ford, said he parked his car on Sunday morning near
a remote area in Valley Forge National Historic Park that was not blocked
by a barrier. He thought that a small si... 阅读全帖
g********0
发帖数: 15010
35
Pennsylvania man forges new path: 'Slimdown' jog gets him $100 fine
For one runner, getting slim during the slimdown comes at a price.
A Pennsylvania man who went jogging in a national historic park was slapped
with a $100 fine because the area was closed due to Washington’s budget
impasse, he said Tuesday.
John Bell, 56, of Chadds Ford, said he parked his car on Sunday morning near
a remote area in Valley Forge National Historic Park that was not blocked
by a barrier. He thought that a small si... 阅读全帖
w****r
发帖数: 140
36

了。
your data is
elected family characteristics

Back to Demographics listings
The data in this section are from the 2006 Census, which is conducted by
Statistics Canada every five years. The census enumerates everyone
living in Canada, including non-permanent residents. The data in this
section are displayed based on where people live (night-time
population).
Selected family characteristics
City of Toronto
Total number of families
670,105
Number of married-couple families
472... 阅读全帖
k***r
发帖数: 4260
37
来自主题: Vancouver版 - 加拿大好贵
But it sounded like I missed a lot of places in Vancouver. I wonder if Lily
could enumerate some of the places that's worth going?
T******g
发帖数: 21328
38
skylarscaling
4 hours ago
+Maine Prepper Once Nevada became a state whose borders encompassed that
land, it became part of the state of Nevada. The government is
Constitutionally allowed to "own" land for government buildings. This
includes military bases, office buildings (usually for unconstitutional
agencies like the EPA, FDA, etc.), and other "needful buildings".
I was so happy to see that you directly referenced the Constitution in this
video. It's been COMPLETELY overlooked in this situati... 阅读全帖
C*******r
发帖数: 10345
39
Writing for a majority of the Supreme Court in District of Columbia v.
Heller, which recognized an individual right under the Second Amendment to
possess firearms for self-defense, Justice Scalia observed: “The very
enumeration of the right takes out of the hands of government … the power
to decide on a case-by-case basis whether the right is really worth
insisting upon.”
Nevertheless, Boston Police Commissioner Bill Evans expressed his support
this week for a provision in the House version of a... 阅读全帖
Y*******n
发帖数: 4646
40
来自主题: Fashion版 - 中国女生追求“瘦”有点过分
OK, then I want to point out, that's a tiny fraction in her supporting
material to her point. She wanted to enumerate examples of extreme weight
losing method, and might (or might not) included a wrong notion.
there is no limit to nutrition science, even now we are having discoveries
every day. having no 碳水 intake sounds extreme to me but you might have
more scientific facts to prove me wrong. REgardless, though, Just because
you have some knowledge on a fraction of supporting instasnce, doesnt
c******w
发帖数: 1108
41
sigh
You can't even prove A is the best KNOWN method under the constraint that " 人类未知的means不在考虑范围内", unless you can ENUMERATE ALL known method and show that they are no better than A.
Then the first thing you have to do is to prove that you are aware of all known method.
But even then, we have a problem. What if someone invents a new method tomorrow?
Y*******n
发帖数: 4646
42
你这不是胡搅蛮缠么?这就是你说我没有逻辑的理由? 因为我们永远不知道所有的衡
量演技的标准?
因为明天会有人发明一个比大奖还有有说服力的途径衡量演技?
可笑的是你一说逻辑, 一堆跟屁虫说逻辑。但是到底也就是你这个水平。

that " 人类未知的means不在考虑范围内", unless you can ENUMERATE ALL known
method and show that they are no better than A.
all known method.
tomorrow?
p*******y
发帖数: 133
43
This book summarized the history of development in modern physics.
Newton's gravity explained attraction between objects, and therefore why
apples fall down to the ground and why the earth orbits the sun.
Einstein's special theory of relativity explained that time and length are
not as absolute as everyday experience would suggest: Speed of light is
constant, moving clocks run slower leading to the twin paradox, and moving
objects are shorter. Another consequence of special relativity is the mos... 阅读全帖
l*****n
发帖数: 125
44
来自主题: LeisureTime版 - 逻辑和计算机
Godel的定理简单的说就是证明了"arithmetic is not recursively enumerable."
RE是比decidability弱一些的一个性质,并不要求程序终止,也可以叫做
semidecidable。所以证明了arithmetic不是RE的当然也就证明了arithmetic不是
decidable的。所以,理解Godel的定理需要知道什么是RE,当然和decidability也有关
系,但是说要学Godel's incompleteness theorem必须先学decidability和
undecidability,个人觉得还是未必,呵呵。
至于证明,我也说了,halting problem和Godel的定理有类似的地方,都可以用到对角
线方法(也可以不用,两者都有不止一种证法),本质上都是在构造逻辑悖论,但并不
代表他们描述的是同一个性质,一个是关于RE,一个是关于decidability。
关于inconsistency,看来是我表述不清,每个人都以为我把自洽性当成soundness,其
实我并没有这个意思。我没提inconsistency是因为这... 阅读全帖
l*****n
发帖数: 125
45
来自主题: LeisureTime版 - 逻辑和计算机
No... 你说的是Church-Turing Thesis, 我说的是Church-Turing Theorem, 1936年就
证明了的,两者不是一回事。呵呵,我也给个wiki链接吧:
http://en.wikipedia.org/wiki/Entscheidungsproblem
Church-Turing Theorem的内容是:The validity of FOL is RE-complete. 所以
undecidability就是一个很简单的推论,另外一个推论是:The satisfiability of
FOL is not recursively enumerable.
s**********s
发帖数: 7387
46
来自主题: PhotoGear版 - 万佛,求个文章~
多谢~
Valiant, Leslie G. (1979), "The complexity of enumeration and reliability
problems", SIAM Journal on Computing 8: 410-421, doi:10.1137/0208032
my email: shadowleaves _at_ gmail.com
q*******n
发帖数: 20306
47
如果没ENUMERATOR来敲你家门, 你家就被人口普查"遗弃"了. 我所在的雪城, 人口普查
之瞎搞, 最早我去考试时就领教了, 6个人按时去某处考试, 到了发现地点是错的, 而
且那个楼里的人也没人知道有考试这回事... 结合我后来做为状元被扔掉不录取, 一点
也不觉得意外...本来就是在瞎搞嘛.
唉, 我给人口普查局长的信里怎么有错别字呢? 我用图书馆的WORD写的草稿, SPELLING
CHECK竟然是没打开的.
p****s
发帖数: 3184
48
来自主题: WaterWorld版 - 韩寒代笔门算不算诈骗?
Identity Theft 身份盗窃
Identity cloning and concealment 身份克隆和隐藏
In this situation, the identity thief impersonates someone else in order to
conceal their own true identity. Examples might be illegal immigrants,
people hiding from creditors or other individuals, or those who simply want
to become "anonymous" for personal reasons.
韩寒事件中的某人的嫌疑就是这个identity cloning and concealment,属于those
who simply want to become "anonymous" for personal reasons. 属于这种情况的
比如:一个获得过几个上海市区县奖项的中年文学创作者自某年(例如1999年)后在文
坛销... 阅读全帖
h***s
发帖数: 1716
49
来自主题: WaterWorld版 - 【转载】方舟子开始打刘路的假
肘子的打假几乎和造谣、作假想媲美了。
他要有半点严肃态度,或者懂点专业知识,也不至于对刘路去年九月(September 16-
18, 2011)就公开发表了细节的论文讲稿/Slides一无所知。而且还恬不知耻的在这种
无知状态下“打假”。说他造谣、无中生有更合适。谁知道他有没有捏造“目前在读美
国某大学的研究生”呢?质疑他这个黑箱式作者,比质疑有公开透明资料的刘路要更合
理得多。
http://www.math.uchicago.edu/~antonio/RM11/schedule.html
http://www.math.uchicago.edu/~antonio/RM11/RM%20talks/jiayi.pdf
"
Reverse Mathematics Workshop
September 16-18, 2011
University of Chicago
Schedule:
Talks will be at Ryerson 251. Lunch and coffee at the Barn (Ryerson 352).
Door will be open on Eckhar... 阅读全帖
C**********r
发帖数: 8189
50
暖文大侠回归了啊:
看这里,


[回复] [回信给作者] [本篇全文] [本讨论区] [修改] [删除] [转寄] [转贴] [收藏]
[举报] [ 1 ]
发信人: papain (木瓜★桃谷第七仙之桃核仙★清华民工), 信区: SanDiego
标 题: [合集] 走过伤痛的2013年 (转载)
发信站: BBS 未名空间站 (Tue Jan 7 04:36:44 2014, 美东)
☆─────────────────────────────────────☆
illusion06 (濯缨) 于 (Wed Jan 1 16:12:48 2014, 美东) 提到:
经版务商议一致决定重开此帖。
欢迎进行理性讨论,严禁人身攻击。
发信人: lilykang (伊一人), 信区: NextGeneration
标 题: 走过伤痛的2013年
发信站: BBS 未名空间站 (Tue Dec 31 16:33:07 2013, 美东)
这是伤痛的一年,也是让我成长的一年,
这一年里,我送别了结婚17年相依相伴的老公。
这一年里,我被素不相识的人狠狠伤害过,... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 下页 末页 (共9页)