avatar
i*a
2
have been in the non-working mood for almost half a year, a lot of anxieties
now (at my dissertation phase)
spent a lot of time on the internet
sleep has been worse, cannot fall asleep till 3am
too much online shopping
still no doctor, no medicine
still dream of overcoming this by myself
Is it possible?
avatar
m*y
3
求教:从text file load data 进sql server,怎么把m/d/yyyy(or mm/d/yyyy or m/dd
/yyyy)格式的date column变成yyyy-mm-dd的格式。方法越简单越好。对满意的答案送
两个包子感谢!谢谢!
avatar
x*n
4
好像nat以后就有了?logical interface?具体干啥的啊?
avatar
l*d
5
why copy assignment member functions need to return a reference to the class
instead of the class itself?
i know for other operator overloading such as +-*/, returning a reference
can lead to allowing of nonsense expressions like (a+b)=c, thus returning a
class itself is preferred; and for [], returning a reference is
preferred so that a[i]=b is allowed.
However for operator=, it seems to me that returning a class is ok because x
=y=z behaves like x=(y=z), not (x=y)=z
avatar
j*i
6
bless
avatar
c*r
7
why not go to see a doctor? He may help you out of your current difficulty
earlier. Procrastination or minor depression mood themselves can recover
through self-help, but not severe depression, in which case you are not
yourself any more, so there's no one to depend on when you wish you can
depend yourself only.

anxieties

【在 i*****a 的大作中提到】
: have been in the non-working mood for almost half a year, a lot of anxieties
: now (at my dissertation phase)
: spent a lot of time on the internet
: sleep has been worse, cannot fall asleep till 3am
: too much online shopping
: still no doctor, no medicine
: still dream of overcoming this by myself
: Is it possible?

avatar
z*8
8
我有个超级笨的办法,可以先把他们转到excel--“convert”; 然后你可以改日期的
format,然后就可以import到sql server. 不怕笑话 。。。如果是一次性的, 凑合,
但是如果是定期的, 就要sql statement比较professional了。 赫赫

dd

【在 m*****y 的大作中提到】
: 求教:从text file load data 进sql server,怎么把m/d/yyyy(or mm/d/yyyy or m/dd
: /yyyy)格式的date column变成yyyy-mm-dd的格式。方法越简单越好。对满意的答案送
: 两个包子感谢!谢谢!

avatar
l*d
9
ok, i found the answer, because some times crazy stuff like (x=y)=z is
needed... weird
avatar
A*T
10
bless

【在 m******s 的大作中提到】
: 谢谢。
avatar
i*a
11
Thanks for your quick response...
I may be too skeptical about seeing a shrink. I have no clue of how they can
be of any help with my real-world problems. I mean, my friends can play a
role of listener if communication is what a shrink does most of the time.
correct me if i am wrong

【在 c**r 的大作中提到】
: why not go to see a doctor? He may help you out of your current difficulty
: earlier. Procrastination or minor depression mood themselves can recover
: through self-help, but not severe depression, in which case you are not
: yourself any more, so there's no one to depend on when you wish you can
: depend yourself only.
:
: anxieties

avatar
n*6
12
依稀记得:
Date type: date
有参数控制query output显示的格式,最起码有10+种格式,可在book online上找到。
avatar
t*t
13
no, that's not the answer to your question
the answer to your question is, what's the point to make a copy of *this?
your answer is to the following question: why operator= doesn't return const
T&?

【在 l*****d 的大作中提到】
: ok, i found the answer, because some times crazy stuff like (x=y)=z is
: needed... weird

avatar
a*5
14
bless!
avatar
c*r
15
a good psychologist can probably provide you more than what your friend
can do, helping you to gain more insight of yourself and the problems you
are facing. If you really find the current situation very difficult, why
not just give it a try?

can

【在 i*****a 的大作中提到】
: Thanks for your quick response...
: I may be too skeptical about seeing a shrink. I have no clue of how they can
: be of any help with my real-world problems. I mean, my friends can play a
: role of listener if communication is what a shrink does most of the time.
: correct me if i am wrong

avatar
y*w
16
SET DATEFORMAT
google "sql server bcp date format"
avatar
l*d
17
my original intent is to prevent crazy stuff like (x=y)=z, just like operator +-*/ returns a class instead of a reference to class
but now it seems to be not that crazy

const

【在 t****t 的大作中提到】
: no, that's not the answer to your question
: the answer to your question is, what's the point to make a copy of *this?
: your answer is to the following question: why operator= doesn't return const
: T&?

avatar
P*e
18
bless

【在 m******s 的大作中提到】
: 谢谢。
avatar
i*a
19
i may need to seriously think about this...it is just frustrating to admit
that slef control or self help didnt work....
anyway, i will keep updated here to see how bad things will get

【在 c**r 的大作中提到】
: a good psychologist can probably provide you more than what your friend
: can do, helping you to gain more insight of yourself and the problems you
: are facing. If you really find the current situation very difficult, why
: not just give it a try?
:
: can

avatar
s*o
20
yyyy/mm/dd select convert(varchar, getdate(), 111)
yyyy.mm.dd select convert(varchar, getdate(), 102)
如果DOT不行,只能YEAR, MONTH, DAY了,还要补0
avatar
t*t
21
as i said, to prevent that, you write
const T& T::operator=(...)

【在 l*****d 的大作中提到】
: my original intent is to prevent crazy stuff like (x=y)=z, just like operator +-*/ returns a class instead of a reference to class
: but now it seems to be not that crazy
:
: const

avatar
O*N
22
bless
avatar
c*r
23
you will still need to work hard on your own, even with professional help.
It's just that self-help may not be sufficient when a person turns into
major depression stage. Your own self-control and self-caring are still the
most importantt things, just consider therapist as a tool, which makes you
finish your work faster and easier, :)

【在 i*****a 的大作中提到】
: i may need to seriously think about this...it is just frustrating to admit
: that slef control or self help didnt work....
: anyway, i will keep updated here to see how bad things will get

avatar
j*n
24
select convert(varchar(10), cast('6/20/2008' as datetime) , 120)

dd

【在 m*****y 的大作中提到】
: 求教:从text file load data 进sql server,怎么把m/d/yyyy(or mm/d/yyyy or m/dd
: /yyyy)格式的date column变成yyyy-mm-dd的格式。方法越简单越好。对满意的答案送
: 两个包子感谢!谢谢!

avatar
l*d
25
ok, so it's for efficiency

【在 t****t 的大作中提到】
: as i said, to prevent that, you write
: const T& T::operator=(...)

avatar
Z*u
26
BLESS
avatar
i*a
27
i think i will
thanks...

the

【在 c**r 的大作中提到】
: you will still need to work hard on your own, even with professional help.
: It's just that self-help may not be sufficient when a person turns into
: major depression stage. Your own self-control and self-caring are still the
: most importantt things, just consider therapist as a tool, which makes you
: finish your work faster and easier, :)

avatar
s*o
28
120是这个格式,不是他想要的
yyyy-mm-dd hh:mm:ss(24h)
avatar
T*9
29
是不是因为C++本身的缺陷,她不能有效的返回一个类对象?

【在 t****t 的大作中提到】
: as i said, to prevent that, you write
: const T& T::operator=(...)

avatar
x*g
30
bless
avatar
t*n
31
Considering your dissertation etc., some of your experiences are
understandable.
To decide whether to get professional help or not, you'll have to do some
assessment:
1. Are these seriously interfering with your school work (remember that
nobody can focus 100% all the time) or sense of well-being?
2. How much external support do you have (family, relationships &
friendships that are helpful and nurturing to you)? The more you have, the
more likely & sooner you can pull through on your own.
3. M

【在 i*****a 的大作中提到】
: have been in the non-working mood for almost half a year, a lot of anxieties
: now (at my dissertation phase)
: spent a lot of time on the internet
: sleep has been worse, cannot fall asleep till 3am
: too much online shopping
: still no doctor, no medicine
: still dream of overcoming this by myself
: Is it possible?

avatar
s*m
32
CAST('05-08-2007' AS date)
CAST('5/8/2007' AS date)
CAST('05-08-2007 12:35:29. 1234567 +12:15' AS date)
CAST('05/08/2007 12:35:29. 1234567 +12:15' AS date)
[发表自未名空间手机版 - m.mitbbs.com]
avatar
T*9
33
是不是因为这个?
Assignment Should Return a Reference to *this
The string assignment operators return a reference to string, which is
consistent with assignment for the built-in types. Moreover, because
assignment returns a reference there is no need to create and destroy a
temporary copy of the result. The return value is usually a reference to the
left-hand operand. For example, here is the definition of the Sales_item
compound-assignment operator:

【在 t****t 的大作中提到】
: as i said, to prevent that, you write
: const T& T::operator=(...)

avatar
c*6
34
bless!
avatar
i*a
35
Thanks for pushing
I just walked across the hall and made an appointment for next Monday..will
update here
avatar
j*n
36
why don't you try it first and say so?
see varchar(10) there?

【在 s**********o 的大作中提到】
: 120是这个格式,不是他想要的
: yyyy-mm-dd hh:mm:ss(24h)

avatar
l*d
37
thanks. so even built-in types return references

the

【在 T*****9 的大作中提到】
: 是不是因为这个?
: Assignment Should Return a Reference to *this
: The string assignment operators return a reference to string, which is
: consistent with assignment for the built-in types. Moreover, because
: assignment returns a reference there is no need to create and destroy a
: temporary copy of the result. The return value is usually a reference to the
: left-hand operand. For example, here is the definition of the Sales_item
: compound-assignment operator:

avatar
E*e
38
祝他马到成功!
avatar
i*a
39
1. Are these seriously interfering with your school work (remember that
nobody can focus 100% all the time) or sense of well-being?
avatar
s*o
40
好,算你做对了,我没看到你的瓦插

【在 j*****n 的大作中提到】
: why don't you try it first and say so?
: see varchar(10) there?

avatar
H*s
41
bless

【在 m******s 的大作中提到】
: 谢谢。
avatar
t*n
42
Try not to do too much at a time. Just one thing here and another thing
there, when you feel like trying something new. Talking a walk on a sunny
afternoon is more feasible than resolving to doing 2 hrs of cardio everyday.
On wasting time hanging out: you may consider setting aside certain time
under certain conditions (e.g. 30 minutes online shopping, after
proofreading Chapter X).
Keep talking to other dissertation writers -- at least to remind yourself
that you are not alone in this. I wen

【在 i*****a 的大作中提到】
: 1. Are these seriously interfering with your school work (remember that
: nobody can focus 100% all the time) or sense of well-being?

avatar
i*a
43
As long as your database table column is using date as date type, you don't
have to do anything else.

dd
[发表自未名空间手机版 - m.mitbbs.com]

【在 m*****y 的大作中提到】
: 求教:从text file load data 进sql server,怎么把m/d/yyyy(or mm/d/yyyy or m/dd
: /yyyy)格式的date column变成yyyy-mm-dd的格式。方法越简单越好。对满意的答案送
: 两个包子感谢!谢谢!

avatar
o*1
44
BLESS
avatar
i*a
45
my advisor said the same thing yesterday "you cannnt expect yourself to work
18 hours a day"...hell no! i had no guts to tell him my shameful working
hours
interestingly, another girl who seemed more procrasnating based on the
progress of work, said proudly in the meeting that she had been working hard
....OMG, maybe i should be more positive
didnt sleep until 6am last nite...

everyday.

【在 t*******n 的大作中提到】
: Try not to do too much at a time. Just one thing here and another thing
: there, when you feel like trying something new. Talking a walk on a sunny
: afternoon is more feasible than resolving to doing 2 hrs of cardio everyday.
: On wasting time hanging out: you may consider setting aside certain time
: under certain conditions (e.g. 30 minutes online shopping, after
: proofreading Chapter X).
: Keep talking to other dissertation writers -- at least to remind yourself
: that you are not alone in this. I wen

avatar
m*y
46
谢谢大家的恢复,这两天一直没时间来看。我后来用了string的处理方式把年月日分出
来了再组合的。
因为很穷,所以只能找一个ID送两个包子表示感谢。 我没试jackrun的程序,但觉得应
该是对了,而且很简单,所以包子就给你吧。但还是很感谢其他人。
avatar
s*k
47
祝福
avatar
t*n
48
He said "EXPECT".
If one has an unrealistic expectation, probably he/she will fail to meet it,
then feel upset/depressed/guilty. The negative emotional state will cause
this person to be even less productive. Sometimes instead of readjusting
the expectation, the person sets the standard even higher, and starts a
vicious cycle.
When working on stuff that really requires a lot of focus, I'd say 3-4 hrs a
day is very good (not counting busy work like backup and reference checking
). In the case

【在 i*****a 的大作中提到】
: my advisor said the same thing yesterday "you cannnt expect yourself to work
: 18 hours a day"...hell no! i had no guts to tell him my shameful working
: hours
: interestingly, another girl who seemed more procrasnating based on the
: progress of work, said proudly in the meeting that she had been working hard
: ....OMG, maybe i should be more positive
: didnt sleep until 6am last nite...
:
: everyday.

avatar
B*g
49
可惜不是oracle,要不也许可以用regExp

【在 m*****y 的大作中提到】
: 谢谢大家的恢复,这两天一直没时间来看。我后来用了string的处理方式把年月日分出
: 来了再组合的。
: 因为很穷,所以只能找一个ID送两个包子表示感谢。 我没试jackrun的程序,但觉得应
: 该是对了,而且很简单,所以包子就给你吧。但还是很感谢其他人。

avatar
d*o
50
bless
avatar
i*a
51
good....find the little monster "expectation"....hopefully, the shrink i
will see next week can help me identify other monsters

it,
cause
a
checking

【在 t*******n 的大作中提到】
: He said "EXPECT".
: If one has an unrealistic expectation, probably he/she will fail to meet it,
: then feel upset/depressed/guilty. The negative emotional state will cause
: this person to be even less productive. Sometimes instead of readjusting
: the expectation, the person sets the standard even higher, and starts a
: vicious cycle.
: When working on stuff that really requires a lot of focus, I'd say 3-4 hrs a
: day is very good (not counting busy work like backup and reference checking
: ). In the case

avatar
R*s
52
bless

【在 m******s 的大作中提到】
: 谢谢。
avatar
T*x
53

a
checking
我同意。一天能够集中注意力3,4个小时,那无事不办。
大多数人做不到。所以不要要求太高。

【在 t*******n 的大作中提到】
: He said "EXPECT".
: If one has an unrealistic expectation, probably he/she will fail to meet it,
: then feel upset/depressed/guilty. The negative emotional state will cause
: this person to be even less productive. Sometimes instead of readjusting
: the expectation, the person sets the standard even higher, and starts a
: vicious cycle.
: When working on stuff that really requires a lot of focus, I'd say 3-4 hrs a
: day is very good (not counting busy work like backup and reference checking
: ). In the case

avatar
g*9
54
Bless
avatar
s*y
55
I'm in the dissertation phase, but I am NOT writing my dissertation at all.
I know how busy life would be after graduation. So I just want to enjoy this
special period when I can enjoy most freedom.
Does my procrastination worry me? Oh yea, but not that much.
avatar
m*n
56
bless

【在 m******s 的大作中提到】
: 谢谢。
avatar
i*a
57
happy to hear that not everyone suffers as much as i do

.
this

【在 s****y 的大作中提到】
: I'm in the dissertation phase, but I am NOT writing my dissertation at all.
: I know how busy life would be after graduation. So I just want to enjoy this
: special period when I can enjoy most freedom.
: Does my procrastination worry me? Oh yea, but not that much.

avatar
i*o
58
big bless~~~~~~~~~~~
avatar
i*a
59
Thanks! at this point I can only manage less than 2 hours...

【在 T*******x 的大作中提到】
:
: a
: checking
: 我同意。一天能够集中注意力3,4个小时,那无事不办。
: 大多数人做不到。所以不要要求太高。

avatar
i*a
60
I went to see the psychologist this afternoon. We spent an hour together....
most of time, i was talking...and a little bit emotional (blush)
i told him that i hope the sessions will help me get things done instead of
only finding reasons why i cannot work efficiently....cause i basically know
why....
anyway, he asked me to meet him again on friday. although i kinda wonder
what makes him to think i need seeing a shrink twice a week (is this normal?)
, i said yes.
will keep updated here
avatar
T*x
61

..
of
know
normal?)
Your updates will be really helpful for others.
I'm interested in what a "shrink" can do for you.
Thanks.

【在 i*****a 的大作中提到】
: I went to see the psychologist this afternoon. We spent an hour together....
: most of time, i was talking...and a little bit emotional (blush)
: i told him that i hope the sessions will help me get things done instead of
: only finding reasons why i cannot work efficiently....cause i basically know
: why....
: anyway, he asked me to meet him again on friday. although i kinda wonder
: what makes him to think i need seeing a shrink twice a week (is this normal?)
: , i said yes.
: will keep updated here

avatar
i*a
62
today.
basically the shrink told me that my depression is pretty severe and he
suggested me to take medication
i said no.
my life has been through quite a lot emotional and mental ups and downs....
almost everytime I got out of the unhappy situation by working on myself. I
told him that if I have to use some medicine to see the world and face
myself, i would rather get stuck in depression, at least that is my true
feeling
i know i sound silly here...but that is me...i just want to accept who i a
avatar
p*l
63
am.
Hey, don't think like this!!! I was like this for almost two years if not
more than that...
我实际上从2006年就开始不干活,大片大片的浪费时间,拖拉拖拉拖拉,玩,我特
别会自己跟自己玩,有很多爱好,面对老板和学业充满了惭愧,觉得自己如烂泥一样(
事实上也是如此),最近我集中了大量的火力来思考自己,自己的过去,特别是童年和
大学这两个阶段,找自己的长处和真正的自己,自己的愿望,理想,能力,不足。也读
了一些书,还有本版上的一些文章,我不得不说是有帮助的。我改变了一个重要的想法
就是我再不认为自己是无法改变的,再也不认为我自己是救治不了自己的了。关键是自
己的想法,学会愚蠢的听从简单的指令而不去深入思考太多(这不意味着放弃思考自己
的经历并发现原因),procastination都是有原因的,我不相信你从幼年就是这样的。
我深深理解你的痛苦,我本人也在二月份看了医生,开始了ADHD的治疗,还没有到药物
那一步,只是刚确诊而已。不过我已经不想去了,我觉得我自己能行,我开始慢慢的变
得对自己有
avatar
t*g
64
good!

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~
~~~~~~~~~~~~~~~~~~
2007年11月到12月----偶也基本如此,但是当时我更痛苦的是,有爱好但是没法去做
能自娱自乐----独立自主多好。。。不必看别人的脸色形式
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
在lab/工作中是不是只有变得愚蠢,才能混得下去??不想变成机器人啊
。。。

【在 p***l 的大作中提到】
: am.
: Hey, don't think like this!!! I was like this for almost two years if not
: more than that...
: 我实际上从2006年就开始不干活,大片大片的浪费时间,拖拉拖拉拖拉,玩,我特
: 别会自己跟自己玩,有很多爱好,面对老板和学业充满了惭愧,觉得自己如烂泥一样(
: 事实上也是如此),最近我集中了大量的火力来思考自己,自己的过去,特别是童年和
: 大学这两个阶段,找自己的长处和真正的自己,自己的愿望,理想,能力,不足。也读
: 了一些书,还有本版上的一些文章,我不得不说是有帮助的。我改变了一个重要的想法
: 就是我再不认为自己是无法改变的,再也不认为我自己是救治不了自己的了。关键是自
: 己的想法,学会愚蠢的听从简单的指令而不去深入思考太多(这不意味着放弃思考自己

avatar
t*n
65
Antidepressant is kind of like painkiller, making one feel less terrible for
a short term in order to facilitate the normal adjustment process. It's
not meant to be used for long term maintenance. Some choose to take it and
some don't. Nothing is wrong with either choice.
Just curious, what is the credential of this shrink? It seems that those
are licensed to give prescriptions (M.D., psychiatrist) recommend medication
more readily than those who aren't (psychologist, social worker).

I
am.

【在 i*****a 的大作中提到】
: today.
: basically the shrink told me that my depression is pretty severe and he
: suggested me to take medication
: i said no.
: my life has been through quite a lot emotional and mental ups and downs....
: almost everytime I got out of the unhappy situation by working on myself. I
: told him that if I have to use some medicine to see the world and face
: myself, i would rather get stuck in depression, at least that is my true
: feeling
: i know i sound silly here...but that is me...i just want to accept who i a

avatar
i*a
66
He is a psychologist. He was trying to refer me to a psychatrist to get
medication.
I am kinda disappointed by him....maybe it is too early to say so after only
seeing him twice....but i dont think he's trying to solve this problem by
doing therapies alone...he jumped to the solution of medication, i think,
too quick without making enough efforts to help me find my innner strength
to deal with depression

for
and
medication

【在 t*******n 的大作中提到】
: Antidepressant is kind of like painkiller, making one feel less terrible for
: a short term in order to facilitate the normal adjustment process. It's
: not meant to be used for long term maintenance. Some choose to take it and
: some don't. Nothing is wrong with either choice.
: Just curious, what is the credential of this shrink? It seems that those
: are licensed to give prescriptions (M.D., psychiatrist) recommend medication
: more readily than those who aren't (psychologist, social worker).
:
: I
: am.

avatar
i*a
67
i think we are kinda on the same page:
1. still trust our own ability to get through this
2. used to be OK in self discipline or self control
3. trying to solve the current problem by examining the past and gaining the
innner strength
4. very (maybe over) confident that depression can be overcome without
exactly following doctor's suggestions
what i am doing now:
1. will still see the psychologist once a week...question his approach so
that i can gain more understanding on how he is trying to he

【在 p***l 的大作中提到】
: am.
: Hey, don't think like this!!! I was like this for almost two years if not
: more than that...
: 我实际上从2006年就开始不干活,大片大片的浪费时间,拖拉拖拉拖拉,玩,我特
: 别会自己跟自己玩,有很多爱好,面对老板和学业充满了惭愧,觉得自己如烂泥一样(
: 事实上也是如此),最近我集中了大量的火力来思考自己,自己的过去,特别是童年和
: 大学这两个阶段,找自己的长处和真正的自己,自己的愿望,理想,能力,不足。也读
: 了一些书,还有本版上的一些文章,我不得不说是有帮助的。我改变了一个重要的想法
: 就是我再不认为自己是无法改变的,再也不认为我自己是救治不了自己的了。关键是自
: 己的想法,学会愚蠢的听从简单的指令而不去深入思考太多(这不意味着放弃思考自己

avatar
t*g
68
天助自助者

only

【在 i*****a 的大作中提到】
: He is a psychologist. He was trying to refer me to a psychatrist to get
: medication.
: I am kinda disappointed by him....maybe it is too early to say so after only
: seeing him twice....but i dont think he's trying to solve this problem by
: doing therapies alone...he jumped to the solution of medication, i think,
: too quick without making enough efforts to help me find my innner strength
: to deal with depression
:
: for
: and

avatar
T*x
69

the
我觉得你的见解很成熟,目标很明确。
你肯定能克服你遇到的困难。

【在 i*****a 的大作中提到】
: i think we are kinda on the same page:
: 1. still trust our own ability to get through this
: 2. used to be OK in self discipline or self control
: 3. trying to solve the current problem by examining the past and gaining the
: innner strength
: 4. very (maybe over) confident that depression can be overcome without
: exactly following doctor's suggestions
: what i am doing now:
: 1. will still see the psychologist once a week...question his approach so
: that i can gain more understanding on how he is trying to he

avatar
i*a
70
did we ever have such a conversation?....hmm, i guess it was somebody
else
avatar
d*y
71
sorry, my mistake. several folks on SF board asked me before, and I don't
remember them clearly.

【在 i*****a 的大作中提到】
: did we ever have such a conversation?....hmm, i guess it was somebody
: else

avatar
i*a
72
avatar
p*l
73
嘿嘿。不变机器人的唯一的道路就是主观能动性,但是产生这个需要更加强大原始的力
量,我是不具备这种原始的力量的,因为最开始接触自己的subject的时候自己长歪了
。要想纠正这个(先不说为什么我们要纠正这个)实在不是容易的。
如果能变成一个机器人,在我的case,也是最好的solution了,可惜,我tmd(sorry)有
太多自己的爱好,跟小孩一样顽劣,每天来到实验室装成一个大人,然后----做伟大的
实验研究。
我还特别讨厌看别人脸色干活,因为我从小到大,妈妈爸爸就没有管教过我,所以我生
性顽劣,我不习惯听从指令。可惜,我发现成人的世界是一个指令的世界,不仅要听从
协调别人的,还要听从协调来源于自己的少数的可执行指令。
我下辈子一定不做人了,我的梦想是到花果山做个代王(dai字怎么写的?)

~~

【在 t*******g 的大作中提到】
: good!
:
: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: ~~
: ~~~~~~~~~~~~~~~~~~
: 2007年11月到12月----偶也基本如此,但是当时我更痛苦的是,有爱好但是没法去做
: 能自娱自乐----独立自主多好。。。不必看别人的脸色形式
: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: 在lab/工作中是不是只有变得愚蠢,才能混得下去??不想变成机器人啊
: 。。。

avatar
i*a
74
avatar
i*a
75
Third session
we were talking about what i did last week...and i told the psychologist i
was kinda back on track last week and didnt know how long this was gonna
last...
he said he respected my decision on focusing on the work i need do instead
of dealing with my many personal problems at once
i asked the question i ve had in mind for a while: how a psychologist or a
psychiatrist is supposed to help people like me?...i didnt get a very clear
clue...will keep trying next time

【在 i*****a 的大作中提到】

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。