由买买提看人间百态

topics

全部话题 - 话题: nils
首页 上页 1 2 3 4 5 6 7 8 下页 末页 (共8页)
I****r
发帖数: 795
1
试过 shift+[apple key]+B 了吗?
你的selected property 是怎么定义的?
[self.nextResponder touchesBegan:touches withEvent:event];
touch event 需要你触发吗?
backgroundImageView.hidden = !selected;
确认在任何时候backgroundImageView 都不是nil?
改成[backgroundImageView setHidden]=!selected; 试试
P********s
发帖数: 15
2
来自主题: DotNet版 - .Net runtime error
Release version运行出错,event log里面有下面信息。
.NET Runtime 2.0 Error Reporting
EventType clr20r3, P1 oopsvrapp.exe, P2 4.1.1.1, P3 481f77d2, P4 mscorlib,
P5 2.0.0.0, P6 4333ab80, P7 1546, P8 21, P9 system.argumentoutofrange, P10
NIL.
这个P1...P10都是什么信息,有没有办法知道源程序里到底是哪一行(或者哪个函数)
出的错?还有,生成exe文件的时候同时产生.pdb文件了,知道.pdb里有debug信息,可
是.pdb是binary file。这个.pdb该怎么用?
谢谢。
a***n
发帖数: 262
3
来自主题: EmergingNetworking版 - mpls vpn hub&spoke结构?
This probably is to allow spoke-hub-spoke communications without default
from hub to spokes.
http://forum.nil.com/viewtopic.php?f=10&t=47
one vrf on the hub might work if you could inject a default from hub to
spokes.
b**n
发帖数: 289
4
Short version: How to achieve this: "The Lisp variable mac-command-key-is-
meta can be set dynamically to a non-nil value (e.g., in .emacs)"?
Long version:
I just switched to Mac. When using Emacs, however, I still want to use
command key as meta key, because its location on a mac keyboard is close to
"Alt" key on a PC keyboard.
I googled and I found the following :
2.5. How do I set the option key (or command key) as meta key?
Emacs can use either the option key or command key as the meta
b*****l
发帖数: 9499
5
来自主题: Linux版 - emacs 里一堆 ^M 咋整?
俺的 buffer-file-format 是 nil...

了。
r****y
发帖数: 26819
6
(setq split-height-threshold nil)
(setq split-height-threshold 20000)
都不管用。。。
m******t
发帖数: 4077
7
1,像pointer一样节约storage space。
2, 像pointer一样可以修改原来的变量
3,像pointer一样可以保持多态性
4,保证object存在,不会像pointer一样搞出nil来
我说的对不对?好有没有补充?
谢谢
d*****l
发帖数: 300
8
来自主题: Programming版 - iOS程序开发有前途吗?
我来说两句个人体会。
IOS开发是一个很有趣的过程。第一眼见objective-c觉的怪怪的,
调个方法居然用方括号,而且还从头括到尾。而且方法不叫method,
叫receiver,或者selector。因为我很想在IPHNE上做个东西,没
有别的办法,只能学习一下。很快我就发现objective-c是我用过的
最好用的语言。随便举几个在其它语言里没有或镐起来比较麻烦的例子。
category,我会的其它语言从来没有这东西,只有javascript里
的prototype可以做到category的功能。associated obejct,这个
也是个好东西(不过这个好象同objective-c无关),nil,也就空指针,
或者NULL,你居然可以在它身上调方法而不crash,想想在C的世界里,
指针飞了,找不着了,内存漏了,程序崩了,脑袋大了,这样的痛苦太多了。
@selector,这个东西其它地方叫reflection,但在obective-c里,
它是用起来最简单的,就一句@selector(method)搞定。再来说下XCode
这个开发工具,工具嘛,就是要效率高,不知不觉码了... 阅读全帖
y**b
发帖数: 10166
9
来自主题: Programming版 - 缩进用空格好,还是tab好?
没有。一直用emacs,刚发现emacs也能。
in your .emacs file:
(setq-default indent-tabs-mode nil)
v*****r
发帖数: 2325
10
来自主题: Programming版 - iphone 程序开发没我想象的那么容易
工作了。
原来是 viewController 中CalculatorBrain 的getter 写错了。
-(CalculatorBrain*)brain
{
[[CaculatorBrain alloc] init];
}
导致
[self.brain pushOperand] always init stack.昨天typing code 在这一点上草了,
用debugger查了好长时间才找到的。
should be:
@sythetize brain = _brain;
-(CalculatorBrain*)brain
{
if (_brain == nil) {
_brain = [[CaculatorBrain alloc] init];
}
return _brain;
}
v*****r
发帖数: 2325
11
来自主题: Programming版 - iphone 程序开发没我想象的那么容易
工作了。
原来是 viewController 中CalculatorBrain 的getter 写错了。
-(CalculatorBrain*)brain
{
[[CaculatorBrain alloc] init];
}
导致
[self.brain pushOperand] always init stack.昨天typing code 在这一点上草了,
用debugger查了好长时间才找到的。
should be:
@sythetize brain = _brain;
-(CalculatorBrain*)brain
{
if (_brain == nil) {
_brain = [[CaculatorBrain alloc] init];
}
return _brain;
}
a*******e
发帖数: 14
12
(setq select-active-regions nil)
c*********w
发帖数: 65
13
来自主题: Programming版 - scala 真是一个无法无天的糟货
作为一个练习:
http://www.mitbbs.com/article/NextGeneration/36408409_3.html
一道小学三年级的数学题 (转载)
题目:
( ) ( )/( )=( ) * ( ) - ( ) = ( ) - ( ) * ( )
要求在()里面不重复的填入所有9个数字1,2,3,4,5,6,7,8,9,让
等式成立。
In Scala:
(List(1,2,3,4,5,6,7,8,9) permutations) find ({case (a::b::c::d::e::f::g::h::
i::Nil) => (a * 10 + b ) == (d * e * c - f * c) && (d * e * c - f * c) == (g
* c - h * i * c)}) get
In Java, 20-30 lines without additional libraries?
n*w
发帖数: 3393
14
来自主题: Programming版 - scala 真是一个无法无天的糟货
又在展示自己脑残。这里有谁会认为这是个难题。
抛开语言,下面这两段那个更接近对问题的直接描述?
(List(1,2,3,4,5,6,7,8,9) permutations) find ({case (a::b::c::d::e::f::g::h:
:i::Nil) => (a * 10 + b ) == (d * e * c - f * c) && (d * e * c - f * c) == (
g* c - h * i * c)}) get
G***l
发帖数: 355
15
不懂ML,用同样ML family的F#解答一下,你应该可以看明白
第一个问题,思路:list为空的时候怎么办?list只有一个的时候怎么办?list有多个
的时候怎么办?
let rec IsMonoIncreasing = function
| [] -> true
| first::second::remain ->
match second > first with
| false -> false
| true -> IsMonoIncreasing (second::remain)
| singleElement::[] -> true
注意为什么要把至少2个的情况放在只有一个的情况前面。
第二个就不写code了,不过x::y::nil应该match的是只有两个元素的list吧?你应该
match用 x::remain

[1
p*****2
发帖数: 21240
16
第一题
(defn f [list & args]
(let [f (first list) r (rest list) [prev] args]
(cond (empty? list) true
(nil? prev) (dfs f r)
(< prev f) (dfs f r)
:default false)))
d****i
发帖数: 4809
17
来自主题: Programming版 - 这次Scala没有入选有点意外呀
obj-C不清楚,C++里面没有NULL引用,只能是NULL指针。不过貌似obj-C的nil本质上就
是NULL:
http://stackoverflow.com/questions/4283690/objective-c-whats-th

Objective-
b******y
发帖数: 9224
18
去startup,非常有风险的。没绿卡的话,我不建议去。混身份要紧,钱多钱少,做为
码工,吃喝都不愁了。要那么多钱,也就吃一口饭。而没身份的话,说裁了你了,你的
收入就从10多万一下子降到了0, zero, nada,nil.
值不值的,你们自己思考吧。
L***s
发帖数: 1148
19
来自主题: Programming版 - scala的list具体怎么实现的?

A list is either an empty list `new Nil`,
or a list `new Cons(x, xs)` consisting of
a head element x and a tail list xs.
In other words, it is just a LISP-style list.
You can visualize it using a binary tree.
h*i
发帖数: 3446
20
是的,LISP好学。语法简单,就没有什么语法。
在过去只有单色显示器的时候,括号太多可能是个可读性问题。现代的编辑器都是彩色
的,每层括号都有不同的颜色,就不存在这个问题了。而且LISP程序员读LISP代码的时
候是看不见括号的,代码的缩进更重要,这个和其他语言没有什么区别(python?)。
而在写代码的时候,有括号是有很大的帮助的,用paredit这种类型的工具,感觉不是
在编辑一串文本符号,而是在操作一个个代码的语义单位。总的来说,感觉更接近人的
高层思维一些。
我个人觉得Clojure最大的好处是对数据的处理非常的直观,不像其他编程语言,数据
的模型是放在程序员的脑袋里的,需要自己去想象数据长啥样,而在Clojure里面,所
有数据结构都是可视化的,和JSON差不多:
比如()是表,和其他LISP不同,Clojure里面很少直接用表来作数据结构,一般用
vector和map, 也就是[]和 {}。比如在代码里面直接就写
[{:id "hci" :work nil :location "CA"}
{:id "goodbug" :work "netflix" :location "... 阅读全帖
c*******0
发帖数: 5247
21
来自主题: Programming版 - 怎样能把go写的稍微漂亮一点?

谁说的,你试一试就知道了。早改了
我不喜欢你err = nil的用法。
我觉得关注return有几个continue有几个是本末导致。写程序是写逻辑,关键是逻辑要
清晰。
d****n
发帖数: 1637
22
来自主题: Programming版 - 怎样能把go写的稍微漂亮一点?
golang故意设计成这样的,
if err!=nil{
...
}
explicit v.s. implicit or abstract
可以参看Rob Pike的视频,他有提及。
所有gopher都选择跟从他的变成喜好,也别无选择。
人家cnbuff410(chouchou)说的都够清楚了, 要么go,要么不go.
d****n
发帖数: 1637
23
来自主题: Programming版 - 怎样能把go写的稍微漂亮一点?
type AggError struct{
cnt int
errorVals [] interface{}
}
func myFn () error{
var aggErr AggError
for {
go func(){
...
if err!=nil{
sync.Lock()
aggErr.cnt++
aggErr.errorVals = append(aggError.errorVals, err)
sync.Unlock()
}
}()
}
return aggErr
}
func Caller(){
err := myFn()
if err == aggErr{
//handle it
}
//anything else rather than AggError is what I dont know. submit to Caller

}
p*****2
发帖数: 21240
24
来自主题: Programming版 - 为什么大家不喜欢golang的switch?
又一段code, http://www.goinggo.net/2014/10/error-handling-in-go-part-i.html
data, err := b.Peek(1)
if err != nil {
switch err {
case bufio.ErrNegativeCount:
// Do something specific.
return
case bufio.ErrBufferFull:
// Do something specific.
return
default:
// Do something generic.
return
}
}
h*i
发帖数: 3446
h*i
发帖数: 3446
26
来自主题: Programming版 - 面向数据的编程与面向对象的编程
{:fruit "Apple"}是一个immutable hashmap,键是:fruit, 值是“Apple".
这是很FP的。这个hashmap本身也可以作函数:
(def a {:fruit "Apple"})
(a :fruit)会返回"Apple"
当然:fruit也可以作函数
(:fruit a)同样返回“Apple"
:fruit是Lisp里面的keyword。keyword always evaluates to itself.
(:fruit "Car")返回nil
从OOP角度,这个hashmap其实就是一个轻量级的对象。不过不是封装的,你可以随便给
一个hashmap添加新键来产生一个新的hashmap。因为hashmap是immutable的,你可以把
它随便传来传去,不怕被人改了。
f*******r
发帖数: 383
27
来自主题: Software版 - 请教:貌似电脑中招了 (转载)
【 以下文字转载自 CS 讨论区 】
发信人: flyKiller (Nil), 信区: CS
标 题: 请教:貌似电脑中招了
发信站: BBS 未名空间站 (Sun May 8 14:36:15 2011, 美东)
我用的是Windows Vista系统,Compaq Presario C770US手提。
最近系统经常会出现下述提示:
1) Windows detected a hard disk problem...
2) You are running very low disk space on Local Disk (C:).
3) RAM memory usage is critically high.
几乎每次我启动Mozilla Firefox都会出现上述信息2), 1) 和 3) 也经常出现,我重复多次最后Firefox会运行。其它很多程序如Acorobat Reader等也是同样问题。但是启动IE则不会有这个问题。事实上我看了下内存使用量不到50% (大部分时间是38%-50%)。
我看了下机器有一个流氓软件叫“Quick Defrag"的,我每次开机这个程序会... 阅读全帖
T*******n
发帖数: 493
28
来自主题: TeX版 - 请教化学分子式的写法

That will give math italic letters.
Put the following in a chem.sty file and then load it with
\usepackage{chem}:
\DeclareRobustCommand{\chem}[1]{%
\mbox{%
\m@th
\if b\expandafter\@car\f@series\@nil\boldmath\fi
\ensuremath{\mathrm{#1}}%
}%
}
\endinput
Then try this test file. Switching to boldface is done
automatically.
\documentclass{article}
\usepackage{chem}
\begin{document}
\title{Title}
\author{A. U. Thor}
\maketitle
\tableofcontents
\section{Water is \chem{H_2O}}
Water is
p**v
发帖数: 853
29
在.emacs中原有
(list "View" "yap %d" 'TeX-run-command nil t)
想让yap打开文件时在路径前加一个”引号,也就是说
原来 yap /path/to/a.dvi 要变成 yap "/path/to/a.dvi
该怎么修改以上的lisp呢?
多谢!
r****t
发帖数: 10904
30
来自主题: TeX版 - 再表扬一下 Emacs + AucTex
喔,我是照着网上抄了三行在 .emacs 里面
# Why doesn't the completion, style file, or multi-file stuff work?
It must be enabled first, insert this in your init file:

(setq-default TeX-master nil)
(setq TeX-parse-self t)
(setq TeX-auto-save t)
Read also the chapters about parsing and multifile documents in the manual.
然后 RefTex 又额外抄了两行才让 RefTeX work, 这些人应该默认把配置搞好才对,而
不是要求用户去抄。
b**s
发帖数: 67
31
来自主题: Unix版 - Re: 为什么emacs自动给我加^M.
put following in your .emacs
(global-set-key [f5] 'cut-ctrlM) ; cut all ^M.
;; prevent echoing ^M in the shell (a hard one)
(add-hook 'comint-output-filter-functions 'shell-strip-ctrl-m nil t)
;if you encounter a file with ^M or ... at the end of every line,
;this means a worng copy by samba or floppy disk of the DOS file to UNIX.
;get rid of them by pressing [F5]
(defun cut-ctrlM ()
"Cut all visible ^M."
(interactive)
(beginning-of-buffer)
(while (search-forward "\
l***s
发帖数: 11
32
来自主题: Unix版 - Display line number in EMACS??????
of course,but I think it's enough.
If you still want to display line number.
here is a el file(wb-line-number.el). it would satisfy what you need.
Add this file (byte-compiling it is recommended) to your load-path.
Then add these set of lines to your config:
(set-scroll-bar-mode nil) ; no scroll bar, even in x-window system
(recommended)
(require 'wb-line-number)
(wb-line-number-toggle)
======================================================================
;;; wb-line-number.el --- window-base
f*******r
发帖数: 383
33
来自主题: Windows版 - 请教:貌似电脑中招了 (转载)
【 以下文字转载自 CS 讨论区 】
发信人: flyKiller (Nil), 信区: CS
标 题: 请教:貌似电脑中招了
发信站: BBS 未名空间站 (Sun May 8 14:36:15 2011, 美东)
我用的是Windows Vista系统,Compaq Presario C770US手提。
最近系统经常会出现下述提示:
1) Windows detected a hard disk problem...
2) You are running very low disk space on Local Disk (C:).
3) RAM memory usage is critically high.
几乎每次我启动Mozilla Firefox都会出现上述信息2), 1) 和 3) 也经常出现,我重复多次最后Firefox会运行。其它很多程序如Acorobat Reader等也是同样问题。但是启动IE则不会有这个问题。事实上我看了下内存使用量不到50% (大部分时间是38%-50%)。
我看了下机器有一个流氓软件叫“Quick Defrag"的,我每次开机这个程序会... 阅读全帖
l**********1
发帖数: 5204
34
来自主题: Biology版 - 大家推荐下做APTAMER的大牛。
以下的review
by
Shukla GC et al.
A boost for the emerging field of RNA nanotechnology.
ACS Nano. 2011 May 24;5(5):3405-18.
PubMed link:
//www.ncbi.nlm.nih.gov/pubmed/21604810
those CNS paper last/corresponding authorship s/he is your target. Sure
for example:
Lund K et al.
Molecular robots guided by prescriptive landscapes.(2010)
Nature 465:206-10.
//www.ncbi.nlm.nih.gov/pubmed/20463735
its corresponding authorship
Nils Walter
//www.umich.edu/~rnapeopl/WalterLabMember.htm
and his lab publicatio... 阅读全帖
y***e
发帖数: 6082
35
来自主题: Chemistry版 - paper help!
Bakshi, Mandeep Singh; Jaswal, Vivek Sheel; Possmayer, Fred; Petersen, Nils
O. Solution phase interactions controlled ordered arrangement of gold
nanoparticles in dried state. Journal of Nanoscience and Nanotechnology
(2010), 10(3), 1747-1756.
Effect of Substituted Group of Cyclodextrin Derivatives on the Dispersing
of Carbon Nanotubes
Journal of Dispersion Science and Technology, 1532-2351, Volume 31, Issue 3,
2010, Pages 353 - 358
k****x
发帖数: 2751
36
来自主题: Chemistry版 - 等咱有了钱
厨房里面装一个2米的fume hood,多大的油烟也不怕老人抱怨美式厨房没有门,搞得家
里到处是油烟。Hood旁边放一温控摇床,酿个米酒,绝对容易。一套蒸汽灭菌锅炉,那
是必须的,保证每次发酵成功。储存市里面丢一套真空泵,连上双排管,(对,就是
chemglass牌的,post dog都认这牌子)对,还要附上氩气罐(氮气太便宜,不要)你说
要这设备干什么?连上真空箱,炸好的馓子、油条放里面,先上真空,然后氩气一直通
着,一万年后拿出来都脆蹦不坏。这不比大农村华人超市里面的冰冻油条强太多了。
老美的自来水还不够好,等上净水器,什么? PUR是名牌? 那多不专业, 要上
millipore的一整套,什么离子交换树脂,UV杀菌,0.22um过滤,一个都不能少。一测
电阻,哟,18.2M欧姆,看这数字就知道它够纯,喝着那个放心加舒心啊。瞧这水软的
,洗衣服还省肥皂呢,丈母娘一定喜欢。
咱有钱了,那么用盐就要讲究一个字,纯!不要被什么天然海盐糊弄,谁知道里面有些
什么重金属。sigma 99.5%的NaCl还不能彰显咱有钱人的气势,要上merck 99.99才好。
大功率超声那是一定要备一台,啊... 阅读全帖
k*******n
发帖数: 116
37
来自主题: Computation版 - mpi程序5,6,9,11,13个节点的总是出错
我的mpi并行程序,用1,2,3,4,8,12,16等节点算都没问题,计算结果也是对的
但是用5,6,9,11,13等节点算就出现Segmentation fault错误
这一般是什么原因?谢谢!
附:错误信息
xxxxx@xxxxx-desktop:~/Courses/mpi$ mpirun -np 9 ./main
[xxxxx-desktop:08056] *** Process received signal ***
[xxxxx-desktop:08056] Signal: Segmentation fault (11)
[xxxxx-desktop:08056] Signal code: (128)
[xxxxx-desktop:08056] Failing at address: (nil)
[xxxxx-desktop:08056] [ 0] /lib/libpthread.so.0 [0x7f74cecc70f0]
[xxxxx-desktop:08056] [ 1] /usr/lib/libopen-pal.so.0(_int_free+0x57) [
0x7f7
G*****s
发帖数: 664
38
1909年诺贝尔物理学奖授予无线电报:
意大利马可尼电报公司的Guglielmo Marconi和德国斯特拉斯堡大学的Karl Ferdinand
Braun
1912年诺贝尔物理学奖授予用于控制灯塔和浮标中的气体蓄积器的自动调节阀:
瑞典气体蓄积器公司的Nils Gustaf Dalén
(这个自动调节阀其实和EE没多大关系,但这年的诺贝尔物理学奖本来是准备授予
Thomas Alva Edison和Nikola Tesla的,以表彰他们在直流电和交流电应用上的巨大贡
献,但爱迪生和特斯拉矛盾很深,于是在发奖前公开表示拒绝,最后诺贝尔物理学奖就
发给了这个自动调节阀,也算是诺贝尔物理学奖史上的一个另类..)
1956年诺贝尔物理学奖授予半导体和三极管:
美国肖克利半导体实验室的William Bradford Shockley(之前在贝尔实验室工作),
伊利诺伊大学香槟分校的John Bardeen(之前在贝尔实验室工作),和贝尔实验室的
Walter Houser Brattain
1964年诺贝尔物理学奖授予量子电子学领域的基础研究成果:
美国麻省理工学院的Charles Har
w********h
发帖数: 12367
39
来自主题: Macromolecules版 - [夜谈]纳米管的应用(Z)
发信人: tunan (出埃及·远走迦南), 信区: Chemistry
标 题: [夜谈]纳米管的应用
发信站: 日月光华 (2002年04月18日22:59:40 星期四), 站内信件
发信人: nichloas (叫我nil), 信区: PKU.CHEM
标 题: [夜谈]纳米管的应用
发信站: BBS 大话西游站 (Mon Apr 15 22:17:54 2002)
该文件所涉及内容为37#213午夜论坛全体成员集体创作。
1. 我们如果在碳纳米管中塞入磁性物质或者电荷分离物质,就可以让
碳纳米在磁场或者电场作用下定向排列。同样在碳纳米管中塞入导电
物质可做成通信电缆,在碳纳米管中加入长链物质可作为超长碳纳米
管的支撑材料(防止碳纳米管折断),如果加入刚性物质则可防止碳
纳米管弯曲,加入有一定角度的刚性物质则可做成碳纳米管弯头。
2.碳纳米管做在针尖(特指刘忠范教授经常讲的那个针尖,我忘了叫什
么名字了),可以长途搬运原子或分子(先施加电场将原子吸入碳纳米
管中,或吸附在纳米管上,到指定地点后再把它喷出来),可以用于
纳米器件的组装。碳纳米管具有一定刚性,做针尖估计定位
D******e
发帖数: 1085
40
Earn you some bragging rights. Or self-pity.
If you stop at step 2, it is like stopping at nowhere. It means zip, nil,
and friggin 00000000. No matter how many zeros you want to put there, it
gives nothing but zero. You will ask what I was f* thinking?
USMLE is a short for license exam. What do you think it can get you besides
a step close to getting the license?

match
A*******s
发帖数: 9638
41
Great case. Pearls in this case include:
1. Immunosuppressed patients are vulnerable to fungus infection. When
headache is present, CNS infection should be considered, besides the
leptomeningeal carcinomatosis.
2. CSF neg does not necessorily R/O CNS infection.
3. CNS Mucor most likely comes from invasion of sinus mucor infection
directly. If that was the case, you might consult ENT instead of NSG. If
sinus mucor can be comfirmed, treat the sinusitis aggressively instead of
encephalitis.
4. Avoi... 阅读全帖
h***y
发帖数: 834
42
☆─────────────────────────────────────☆
Aplusplus (Hakuna Matata) 于 (Sun Mar 27 11:11:49 2011, 美东) 提到:
首先我申明,我放弃我的ignore list, 欢迎所有ID参加。
每个医生护士或者其他相关人员, 无论在中国还是美国, 肯定都有一些case刻骨铭心
。 请大家把你印象最深的一例写出来, 与大家分享。 比方说, 清华男被鉈杀案,
那个中国来的护士就是诊断的关键, 相信本例就是她一辈子也忘不了的诊断。
我觉得这样的讨论有助于大家提高学医热情,丰富医学知识,开拓临床思维, 间接帮
助考版医生复习,准备CS,和 interview. 你要是能从中挑一个case让你PD
impressed,我想我的目的就达到了。
希望所有ID, 包括考生, resident, fellow, attending,PA/NP, nurse 和中国来
的医生不再从事医疗工作的, 都能奉献你的pearl. 英文中文都行。
我先来:
CC: Left leg pain for 5 days.
35 y... 阅读全帖
h***y
发帖数: 834
43
☆─────────────────────────────────────☆
Aplusplus (Hakuna Matata) 于 (Sun Mar 27 11:11:49 2011, 美东) 提到:
首先我申明,我放弃我的ignore list, 欢迎所有ID参加。
每个医生护士或者其他相关人员, 无论在中国还是美国, 肯定都有一些case刻骨铭心
。 请大家把你印象最深的一例写出来, 与大家分享。 比方说, 清华男被鉈杀案,
那个中国来的护士就是诊断的关键, 相信本例就是她一辈子也忘不了的诊断。
我觉得这样的讨论有助于大家提高学医热情,丰富医学知识,开拓临床思维, 间接帮
助考版医生复习,准备CS,和 interview. 你要是能从中挑一个case让你PD
impressed,我想我的目的就达到了。
希望所有ID, 包括考生, resident, fellow, attending,PA/NP, nurse 和中国来
的医生不再从事医疗工作的, 都能奉献你的pearl. 英文中文都行。
我先来:
CC: Left leg pain for 5 days.
35 y... 阅读全帖
A*******s
发帖数: 9638
44
来自主题: MedicalCareer版 - Emergency: tick Bite
Although what you claimed is right, Lyme disease is atill an endemic disease
. Since my practice, I encountered many claims on Lyme after a tick bite or
something like that, but the number for a final diagnosis of Lyme's disease
is nil. I once diagnosed a patient with ALS, and he went to a Lyme
specialist who told him he has lyume and even got him on the treatment for
lyme. Lyme has been exaggerated too much IMHO.
y***e
发帖数: 6082
45
来自主题: NanoST版 - paper help!
【 以下文字转载自 Chemistry 讨论区 】
发信人: yueke (小鱼儿~2008BB竞猜王), 信区: Chemistry
标 题: paper help!
发信站: BBS 未名空间站 (Fri May 14 23:43:07 2010, 美东)
Bakshi, Mandeep Singh; Jaswal, Vivek Sheel; Possmayer, Fred; Petersen, Nils
O. Solution phase interactions controlled ordered arrangement of gold
nanoparticles in dried state. Journal of Nanoscience and Nanotechnology
(2010), 10(3), 1747-1756.
Effect of Substituted Group of Cyclodextrin Derivatives on the Dispersing
of Carbon Nanotubes
Journal of Dispersion
首页 上页 1 2 3 4 5 6 7 8 下页 末页 (共8页)