由买买提看人间百态

topics

全部话题 - 话题: name
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
c***n
发帖数: 921
1
the parameter markers "?" in prepared statement cannot be table name or
schema name, right?
I haven't seen any examples that take table name or schema name as
parameters and pass them into the prepared statement in a stored procedure.
Is my understanding correct?
i****a
发帖数: 36252
2
来自主题: Database版 - SQL Server - how to obtain data type name
use the data type name directly, don't use ID.
if you are looking up what type a specific column is
SELECT t.name, c.name
FROM sys.columns c
INNER JOIN sys.types t
ON c.user_type_id = t.user_type_id
WHERE c.name = 'yourColumnName'
and are you using osql?? that's old school and hardcore...
j******n
发帖数: 271
3
While a sh script can access its own file name through $0, yet when a
script is run from a dot command, $0 is not the name of the script, but
rather the name of the command or script that runs the dot command. So the
question: how does the script find its own file name when it is run from a
dot command?
Example:
$ cat ./z
echo $0
$ ./z
./z
$ . ./z
bash
c*****s
发帖数: 49
4
来自主题: Programming版 - 请教显示object name的问题(c++)
Thanks all for your answers. Indeed I need to pass something else other than the object name.
blueivan, you are right, I do need a data member -- found some lecture notes
used the same method.
I later realize that even within "catch", I have no way to display the
object name even the object address has been passed by exception. Then I
realize in reality, the identifier for the object is always some attribute,
not the object name (or address). This attribute is what should be printed
out in the e... 阅读全帖
h**e
发帖数: 28
5
来自主题: MedicalCareer版 - School name changed--how to deal with it
My medical school's name is changed. I found the old name from the exam
center's drop down list and pick it for 186 online application.
Do I need to provide document to prove the name changing and use the new
seal on my 186 form? Or try to get the old seal and use it to avoid the
problem.
If I have to use the new seal and provide document to prove the name change,
could someone give me some information how to handle it?
Thank you very much in advance!
L*****r
发帖数: 722
6
【 在 teabao (teatea) 的大作中提到: 】
: 问个弱智问题,… 怎么才能快速记忆对应的brand name?
这个弱智问题问的,其实很大智若愚啊!记得阿茶医生说过喜欢听故事的,这里正好有
几个现成的:
尽量多记住同事的名字,尤其是病房的护士以及辅助科室的技术员。这样做,对于正被
药物的商品名灌得满满的脑瓜可能要求过高,但是的确会受益匪浅!更何况,有时候还
可以相辅相成。
有个菲律宾护士名字叫Ariceli,开始我死活记不住,后来知道了那个治疗Alzheimer
病的药物 Aricept, 才终于能把Ariceli 念顺溜了。她居然很意外:“Now you
remember my name?”。我就说It’s your brother helped me --- Do you have a
brother with the name of Aricept?她大笑,说Aricept helped your memory? Then
you have Alzheimer Disease, right? 我也大笑。下次有事找她帮忙,我就说L
M**1
发帖数: 162
7
来自主题: Pharmaceutical版 - GENERIC NAME and BRAND NAME
What's the difference between GENERIC NAME and BRAND NAME? Why is a drug
given two names?
l****g
发帖数: 304
8
Thank you, SongKun.
1. what is your input file like
Sas data file with:
Birthday format as yymmdd6.
Name format as $20.
2. what platform do you want to use
Windows?
3. what output format do you want.
I want to create another character variable which concatenate variable name
and variable Birthday.
The example:
name: zhang
Birthday: 090225
I want to create a new value: zhang090225 based on the name and birthday of
that record.
c***z
发帖数: 6348
9
【 以下文字转载自 DataSciences 讨论区 】
发信人: chaoz (面朝大海,吃碗凉皮), 信区: DataSciences
标 题: [Data Science Project Case] Fuzzy matching on names
发信站: BBS 未名空间站 (Fri Apr 4 13:04:18 2014, 美东)
We have two data sets, one for product views and one for actual
purchases. We don't have all the shopping cart information and need to
infer the missing ones.
To make a training case we need to join the two sets, and the cart id
and item names are the only available keys. The problem is the items
can have many names in both ... 阅读全帖
I***i
发帖数: 14557
10
来自主题: Animals版 - New panda at San Diego Zoo has a name
http://latimesblogs.latimes.com/lanow/2012/11/new-panda-at-san-
New panda at San Diego Zoo has a name: Xiao Liwu, "little gift.''
In a ceremony complete with zither music and a troupe of lion dancers, the
latest panda cub born at the San Diego Zoo was given a name Tuesday: Xiao
Liwu, translated as "little gift" and pronounced "sshyaoww-lee-woo."
In keeping with Chinese tradition, the panda received its name upon becoming
100 days old. The name was selected by popular vote of zoo patrons: 7,000
s... 阅读全帖
p**z
发帖数: 65
11
首先,我同意 Python 里的 name 也叫做 variable。Python 自己文档里面就是混用的
。但是它的真正行为确实是一个名字,跟其他 statically typed 语言的变量有所不同
。另外,原帖中 by value 和 by reference 的表述并不准确,因为那是我以 VB.NET
的行为来打比方的,并没有严格按照这两个术语的原意。
我简单看了一下 Python 和 Java 的文档,觉得它们还是有很大不同的。
对于 Python,可以看一下它的 language reference, 3.1. Objects, values and
types, 以及 4.1. Naming and binding。如果我理解没有错的话,Python 没有简单数
据类型,所有的数据都是对象。每个对象有自己的唯一的身份(不可改变),类型(不
可改变),内容(有些 immutable,比如整数,浮点数,字符串;有些 mutable,比如
list,dictionary)。Python 是 dynamic typing 的,就是说一个名字(变量)使用
前不用声明数据类型。它的实... 阅读全帖
l***h
发帖数: 9308
12
来自主题: _voip版 - obi显示Caller ID with Name (CNAM)
看到的帖子,不错
http://bbs.wenxuecity.com/computer/217770.html
CallCentric 免费接入号码可显示Caller ID with Name (CNAM)
大家都知道OBiHai设备(100/110/202)加Google Voice可免费接听,也可免费拨打美加电
话。有一个事情比较烦:Google Voice只显示来电号码(Caller ID),不显示来电名字
(Caller Name)。
不知从什么时候起CallCentric有了Caller ID with Name (CNAM),而且还提供免费接入
号码(Free DID)。目前免费接入号码只有纽约的几个区号,但这不影响我们Google V
oice用户。
有了CallCentric DID,你可以用OBiHai设备的SIP Provider 2联到CallCentric,然后
把这个DID加到你Google Voice forward phone。这样你打出还是用免费的Google Voic
e,而别人打你Google Voice号码,就先到CallCentric过一下,得到... 阅读全帖
l******w
发帖数: 266
13
(梁勇律師事務所,lianglaw.com專稿)移民局Director of Domestic Operations
Michael Aytes 在2008年2月4日发出一份备忘针对审理I-485, I-601, I-687 及I-
689 的备忘录, 这份备忘录对于移民官在审理上述案件时有关 background and
security checks 部分时有重大的改变,简单的说, 即使 FBI 对于Name Check 还没
有Clearance,移民局也可以在 Name Check 之后180天批准I-485。
在申请I-485 后,移民局会针对申请人进行背景调查(Background Check)以确保美国国
土及人民的安全,这个调查包括三大部分:
1.FBI Fingerprint Check: 查看是否在美国有犯罪记录
2.FBI Name Check: 对比个人资料,看是否会对美国国家利益或人民安全有害
3.The Interagency Border Inspection System (IBIS) Name Check:查看是否违反在
美国的合法身份。
通常FBI
m*****g
发帖数: 138
14
来自主题: _STUN版 - first name: Jesus
hehe, intersting, I found this
Why is the first name Jesus more common in Hispanic countries than elsewhere
?
somebody repied:
Maybe as an old custom to define the Spanish people as Christians. Before
the
Americas were discovered Spain (which was the only Hispanic country) was
under
Muslim rule, and Muhammad would have been a more common name.
I think this reply is a prank.
hehe.
speaking of first name, yesterday I knew Kobe Bryant's parents named him
after the famous beef of Kobe, Japan, which
f****w
发帖数: 947
15
来自主题: _FanLaw版 - 有关FBI Name Check 的处理时间
By: Beth Robertie, Associate
最近不少人问到FBI name check 的处理时间以及如何可以加快此程序处理。而据知
FBI name check 的处理时间有由3个月至1年(或更长时间) 不等,因此很明确说明其处
理时间的长短。而对于部分的申请,由其自身情况移民局可对其FBI name check 加快
处理,但是有所限制。有关信息如下,
Almost weekly, we hear questions about the amount of time that an FBI name
check takes, and how to get them expedited. Unfortunately, like so many
issues in the realm of immigration law, there is no way to tell how long one
of these checks will take. We have heard anecdotal evidence of this
process taking any
f****w
发帖数: 947
16
来自主题: _FanLaw版 - 有关FBI Name Check 的处理时间
By: Beth Robertie, Associate
最近不少人问到FBI name check 的处理时间以及如何可以加快此程序处理。而据知
FBI name check 的处理时间有由3个月至1年(或更长时间) 不等,因此很明确说明其处
理时间的长短。而对于部分的申请,由其自身情况移民局可对其FBI name check 加快
处理,但是有所限制。有关信息如下,
Almost weekly, we hear questions about the amount of time that an FBI name
check takes, and how to get them expedited. Unfortunately, like so many
issues in the realm of immigration law, there is no way to tell how long one
of these checks will take. We have heard anecdotal evidence of this
process taking any
f****w
发帖数: 947
17
来自主题: _FanLaw版 - 有关FBI Name Check 的处理时间
By: Beth Robertie, Associate
最近不少人问到FBI name check 的处理时间以及如何可以加快此程序处理。而据知
FBI name check 的处理时间有由3个月至1年(或更长时间) 不等,因此很明确说明其处
理时间的长短。而对于部分的申请,由其自身情况移民局可对其FBI name check 加快
处理,但是有所限制。以下情况有关信息,
Almost daily, we hear questions about the amount of time that an FBI name
check takes and how to get them expedited. Unfortunately, like so many
issues in the realm of immigration law, there is no way to tell how long one
of these checks will take. We have heard anecdotal evidence of this
process taking any
f****w
发帖数: 947
18
最近很多人问CIS的新的Name Check会对于I-485有什么影响。基本上我们必须知道这并
不是所谓的新政策(我们之前的用词并不妥 当) 。这时CIS内部之间的备忘录(Memo) ,
也就是说他只是对于审理案件的移民官提 供一 些指 示(guidance) ,但是并不是真正
的法律,虽然不是法律,但是审理官员必须服从上级主官的指示,如果审 理官员不服
从这个指示,是可以被处罚的。即便如此,我们并不知 道CIS内 部会对于所有等待批
准的I-485如何处理。申请人也无须与CIS联络,因为CIS有完全的资料,按我 们以 往
的经 验,大 家都去联络后,反而制 造CIS的工作量。我建议大家再等一两个星期看看
CIS会不会有新的程 序上的指 示,这 样才知 道下步怎 么做才好。如 果你的优先日
期因为倒退还没排到,我们无法知道这180天是怎么个算法。因 为有 些人之 前CIS就
已 经开 始做Name Check了。但是优先日期又再退了回去。也有可能等排到队了,但是
Name Check又过期,或 许CIS可 以不再等待Name Check,但 是这180天要从何算起我
们并不知道。
因为
v********r
发帖数: 123
19
来自主题: _BibleStudy版 - Calling On The Name of The Lord
CALLING ON THE
NAME OF THE LORD
What is the meaning of calling on the name of the Lord? Some Christians think
that calling on the Lord is the same as praying to Him. Yes, calling is a kind
of prayer, but it is not merely praying. The Hebrew word for call means to
call out to, to cry unto, to cry out. The Greek word for call means to invoke
a person, to call a person by name. In other words, it is to call a person by
naming him audi
g****g
发帖数: 1828
20
thanks. it's a girl's name so i guess it's 石詩鉉.
btw, Seok is 石? first time see this korean family name.
a*****3
发帖数: 2305
21
中文名 本来就有middle name, middle name 对 应于 中文名 中的辈分。
现在很多中国人起 中文名, 不加 辈分, 本身就是一种 忘本。
z****e
发帖数: 54598
22
middle name本来就是随便叫的
所以有些人会用昵称当middle name
女权主义兴起了之后,有些女的不满意孩子把自己的姓放到中间去
于是就要求加到一起去,但是这样搞就有些夸张了
一眼看去跟三姓家奴一样,拉美裔的确很多人这样干
所以名字总是很长
m**********2
发帖数: 6568
23
News
Exclusive: Raindrops explode Army's shells: Italian firm named in bribes
trial supplied over-sensitive fuses
CHRIS BLACKHURST , Westminster Correspondent
Tuesday 07 December 1993
THE British Army has been supplied with 50,000 artillery shell fuses that
cannot be fired in rain, hail or snow.
The L85 mechanical fuses for the noses of 105mm shells were produced by an
Italian company named in the recent bribes trial of Gordon Foxley, the
Ministry of Defence official previously in charge of fuse... 阅读全帖
g***c
发帖数: 11523
24
你在搞笑还是在胡扯?
外国人last name虽然不如中国一亿人姓王
但重名率也极高。
都是用middle name来区分
孩子傻逼不傻逼,一看父母,父母牛逼,孩子鸡犬升天
二看孩子,全美无数菲尔普斯,现在一提菲尔普斯,谁不知道是谁?

name
k*******p
发帖数: 8821
25
中国有的人first name和last name一样,比如杨阳(Yang Yang),韩寒(Han Han)等
。美国有类似的情况吗?比如有人叫Smith Smith,或者David David, 或者Bob Bob等。
W*****B
发帖数: 4796
26
有个叫serhan serhan是刺杀罗伯特肯尼迪的凶手。

:中国有的人first name和last name一样,比如杨阳(Yang Yang),韩寒(Han Han)等
:。美国有类似的情况吗?比如有人叫Smith Smith,或者David David, 或者Bob Bob等
。--
W*******n
发帖数: 4140
27
来自主题: Military版 - Someone, please help me on a name
The name is pronounced by the person itself, pretty much like yee-dus.
Anybody recognizes such sounded name? How to spell it correctly? Which ethic
? A man or a woman name?
i**********y
发帖数: 2224
28
讲两件身边的事。
上周末和我的保险经纪,一个台湾移民,聊到大选。他说不支持奥巴马,还问我知不知
道O的middle name是hussein, 呵呵。他说O的穆斯林背景让人很不安,如果O上台不知
道他会做出什么事,美国会乱,而希拉里和马坎任何一个上台起码美国不会乱。他说他
已经多年没有出来投票了,如果奥巴马获得提名, 那他今年一定会出来投马坎一票。
中间他还给奥巴马和陈水扁做了个类比,看来台湾同胞通过阿扁大大提高了对忽悠的认
知能力, fool me once, shame on you;fool me twice, shame on me. 呵呵
这周LD和一客户吃饭, 一白人小青年, 刚本科毕业一两年,出乎意料的也说不支持奥
巴马。理由有两点, 一是O没经验, 二是not comfortable with his middle name.
难怪前阵middle name被揭示出来以后大师要气急败坏, 看来现阶段在美国无论是亚裔
还是白人对穆斯林背景都心生恐惧, 911的阴影还没有散去。 如果巴马真的获得提名
,共和党真的很轻松, 什么其他的丑闻都不用提不用挖, 就天天在电视上广播里
c**i
发帖数: 6973
29
Erik Eckholm, What’s in a Name? A Lot, as It Turns Out. New York Times, May
10, 2010.
http://www.nytimes.com/2010/05/10/us/10name.html?scp=2&sq=maximus&st=cse
My comment:
(a) This is a story about a man with last name only for his first 19 years.
You may just read the first 10 paragraphs and the last three.
(b) The noun "maximus" is Latin for "the greatest."
(c) The female given name "Maxine" is modern creation by adding the female
ending -ine to Max.
t*******d
发帖数: 12895
30
CLEVELAND, Ohio – Donald Trump is planning to use the Republican National
Convention to make the unusual move of announcing names of potential cabinet
members, Trump’s longtime confident Roger Stone has confirmed.
Stone was speaking in an interview set to air Sunday night on this reporter
’s talk radio program, “Aaron Klein Investigative Radio,” broadcast on
New York’s AM 970 The Answer and NewsTalk 990 AM.
Stone stated:I think that Trump is going to name a prospective cabinet and
there is of c... 阅读全帖

发帖数: 1
31
也谈第二场辩论中川普的name-mentioning艺术
The art of name-mentioning of Trump is precedentely outstanding! 在辩论中他
点了Soros, Buffet的名指出它们买通稀瘌痢大发不义之财,偷税避税无所不为,同时
他又指出还有很多这样的人紧贴在稀瘌痢的裙带周围,但不愿意点他们的名,因为他们
实际上就是穷得只剩下钱没有根基的暴发户: "There're still many other people
doing the same who are rich, but I'm not telling you their names, because I
don't want to make them famous"。多么漂亮且辛辣的挖苦啊 - 它们虽叫得凶在我
后面频防冷箭,但它们还不够格,上不了台面,充其量只是attacking dogs;
然,它们属于较低的第二等级,到这儿你也许急不可耐地问道,到底是谁啊? Ok,here
we go:
1. Attention whore Mark Cuban;
2. 靠在纽... 阅读全帖
D*******0
发帖数: 4476
32
confirmation e-mail 里的名字是Paypal account holder's name. The shipping
recipient name may be different. It is normal.

label
b********s
发帖数: 3
33
来自主题: Faculty版 - email: Hi, NAME
I sent out an important email starting with:
Hi, NAME
But someone just told me that I should write without the comma, as the
following:
Hi NAME
I am worrying if "Hi, NAME" (with the comma) is really bad?
h*****t
发帖数: 1478
34
来自主题: Faculty版 - 有多少人称呼老板first name的
就跟着别人叫。我老板就是都叫他FIRST NAME.周围的人都差不多。我只认识一个人,
在上课的时候就明确说,我不喜欢别人叫我FIRST NAME,希望你们都叫我DR.XX.这个人
是地道的美国人。
所以,不熟的话叫DR.XX,熟了的话看别人怎么叫就跟着叫。
我们实验室风俗是叫FIRST NAME,但是偶尔别人叫我DR.XX的时候感觉还是很好的,^_^。
q******j
发帖数: 577
35
来自主题: Faculty版 - 有多少人称呼老板first name的
Not because of 冒犯. If a Chinese girl calls a Chinese man's Chinese first
name (or vice versa), other Chinese would think they are lovers.
发信人: cnsgnzca (cnsgnzca), 信区: Faculty
标 题: Re: 有多少人称呼老板first name的
发信站: BBS 未名空间站 (Wed Dec 2 10:25:27 2009, 美东)
俺以为中国人起洋名的最大好处就是让比你级别低的人称呼你first name不觉得冒犯,
你听起来也舒服些。
c*******n
发帖数: 718
36
来自主题: Faculty版 - 有多少人称呼老板first name的
和老美打招呼 First Name
和老中打招呼 [Last Name] 老师
如果群发邮件中美都有,就一律First Names
w********h
发帖数: 12367
37
呵呵,我只对我同辈比较近的以及虽然长辈
但主动要求称呼first name的(一般是老美)的教授用first name。
你一个学生,在没摸清楚情况的时候还是Dr. XXX或者Prof. XXX吧。
有一次一个老美学生叫我first name,
我承认自己感觉不是很好。
因为我不觉得跟他亲近到这种地步,
跟装B没关系。
C****e
发帖数: 130
38
phd在德国,老板是英国人,叫first name
postdoc在加拿大,老板是ABC,叫first name
但看到周围其他几个lab都是叫老板Dr.xx
b****M
发帖数: 1390
39
我的女老板高兴时给我发邮件称我 Dear First Name,不高兴时First Name。
c*******g
发帖数: 2990
40
我没有介意学生叫first name,但是我first name对他们比较困难,搞不好,叫我我都
不知道。所以我才特意告诉学生叫 last name
k*****t
发帖数: 186
41
在同事,朋友,邻居之间,称呼First Name是非常普通的。可是我在美国大学里当了七
年Faculty,从来没见过学生未经老师认可叫First Name的。我在Texas的时候,连系里
的Staff都是称呼Dr XX,我一再让他们叫我First Name,几年都没改过来。
c******a
发帖数: 633
42
当然是first name,因为多数人以firstname 称呼,除非你说我喜欢被叫middle name
T*****n
发帖数: 897
43
如果改成first name,那怎么能claim以前发表的论文呢?

name
F********y
发帖数: 7139
44
英文名叫middle name最好。很多美国人也喜欢用middle name的
M*P
发帖数: 6456
45
I just cannot understand. Many big bull's lab has those papers with 10 or
more people's name on it . I am not talking about genomic types of paper,
just simple experimental paper.
I am in a HHMI lab now, no body works with anybody. everyone has their own
project and I just don't see how could people's name got on the paper.
all my first author papers have less than 6 people's name on it.
M*****l
发帖数: 4478
46
有个困扰。。。
一直没有人直说让我叫first name。。。
难道永远Dr. Last Name下去?
c********b
发帖数: 363
47
我一直都是厚着脸皮叫first name,赶紧补一句I hope you do not mind or please
let me know if you have other preference.一般叫习惯了他们也默认了。
而且我觉得这个没有定律,各地也不一样。我现在的新地方大家都习惯叫last name。
。。。。。反正我问了之后都按照他们的习惯来,也没有收到白眼。。。。。。
p******r
发帖数: 651
48
你尽量叫last name 直到对方明确告诉你你可以叫他first name。然后你就开始热情的
称呼 George!

Thanks
s*****r
发帖数: 847
49
称nick name不太好吧,而且同样的名字,大家的nick name也不同
就像elizabeth,有些人叫beth,也有人叫liz
所以还是叫全的first name比较合适
f***y
发帖数: 99
50
发receipt是按first name or Last name or Num?
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)