词汇:self

n. 自己,自我;本质;私心

相关场景

SEAN:
It’s easy for women. Dump it in apurse and you’re good to go. Guy’sgotta distribute the load. Then you’ve got all the self-harmaccessories - the belt, the shoelaces, the tie He takes the combo-pen-laser-pointer from her SEAN (CONT’D) The combo-pen-laser-pointer... King & Maxwell Revised Network 01-10-12
>> King and Maxwell: Summer Adventures Season #1 Episode #1 Movie Script
You have to believe in yourself, even when the little self-doubt monster pays you a visit.That's because if you don't believe you can do it, no one else will either. When you have self-belief, you can achieve pretty much anything that does not defy the laws of physics.Without it, you're burnt toast.
>> How to Get Rich
你必须相信自己,即使这个自我怀疑的小怪物来拜访你。那是因为如果你不相信自己能做到,其他人也不会。当你有自信时,你几乎可以实现任何不违反物理定律的事情。没有它,你就完了。
It's doubt multiplied by the fear of failure, unconfronted, which leads to the creation of a vicious cycle where self-belief is eroded and nothing is achieved. Doubts can and should be confronted, as should fear. This is best done in daylight, under rigorous examination. (Three o'clock in the morning is a difficult time to confront any such messengers.) Write down your doubts and fears. Examine them. Hold them up to the light. Suck the wisdom out of them and discard their husks in the trash"
>> How to Get Rich
怀疑乘以对失败的恐惧,这导致了一个恶性循环,在这个恶性循环中,自我信念被侵蚀,什么也得不到。怀疑可以而且应该被面对,恐惧也应该被面对。这最好在白天进行,并经过严格检查。(凌晨三点很难面对任何这样的信使。)写下你的疑虑和恐惧。检查他们。把它们举到灯光下。吸取他们的智慧,把他们的外壳扔进垃圾桶。”
Doubt and self-belief
>> How to Get Rich
怀疑和自信
44.Communication skills, leadership skills and a very high self esteem will take you whereever you want.
>> If I'm 16.what high-value skills should I learn now.
44.沟通技巧、领导能力和高度的自尊会带你去任何你想去的地方。
29.As an introvert, I wish I had taken classes on how to sell myself. At the age of 57. I am self-assured and confident in my business and what i bring to the table. Hope that helps.
>> If I'm 16.what high-value skills should I learn now.
29.作为一个内向的人,我希望我上过如何推销自己的课。57岁。我对自己的业务和我带来的东西充满信心。希望这能有所帮助。
Don't let your once-motivated self down.
>> A bit of moti
You started your book with boredom and a really good idea. You devoted hours and days to the words that build up your world. Don't let your once-motivated self down. Don't let all that time go to waste. Finish it.
>> 10 reasons to keep writing your book.
你带着无聊和一个好主意开始写这本书。你花费了数小时和数天的时间来构建你的世界。不要让曾经有动力的自己失望。不要浪费那么多时间。完成它。
She shoots some self-portraits by her Polaroid, mandatory grimace.
>> 这个杀手不太冷Léon: The Professional Movie Script
FRODO has a sudden moment of SELF REALISATION and releases GOLLUM, horrified at his VIOLENCE.
>> 指环王3:王者归来The Lord of the Rings: The Return of the King Movie Script
PIPPIN looks up at him, unnerved. GANDALF gives him a small self-deprecating smile . . .
>> 指环王3:王者归来The Lord of the Rings: The Return of the King Movie Script
Kill him!) [Legolas shoots the Uruk again. It stumbles and then throws it self and the torch at the bombs. An enormous explosion is set off, blowing away a large part of the wall. Rock, debris and bodies are thrown up. Aragorn is also thrown back by the force of the explosion and on the ground, knocked out. Théoden looks on in shock as the Uruk-hai streams in past the Deeping Walls.] THÉODEN Brace the Gate! Hold them! Stand firm!
>> 指环王2:双塔奇兵The Lord of the Rings: The Two Towers Movie Script
[Frodo looks at up him with bloodshot eyes. He smiles at Sméagol and looks at Sam. Sméagol raises a fist in self-congratulation and dances around. He then picks up one of the rabbits and snaps the rabbit's back in front of Frodo.] SMÉAGOL They are young. They are tender. They are nice. Yes they are! Eat them! Eat them!
>> 指环王2:双塔奇兵The Lord of the Rings: The Two Towers Movie Script
32.猴子补丁Monkey Patching and refinement:
Active Support的问题; module OnlySpace ONLY_SPACE_UNICODE_RE= %r/\A[[:space:]]*\z/
def self.only_space?(str) if str.ascii_only? !str.bytes.any {|b| !32 && !b.between?(9,13)} else ONLY_SPACE_UNICODE_RE === str end end

>> Effective Ruby
31. eval; instance_eval定义的是单例方法;:
def glass_case_of_emotion x="I'm in a " + __method__.to_s.tr('_',' ') binding; binding 可以获得当前的临时域并把这个临时域封装到Binding对象中作为返回结果。这个指定的上下文是eval方法的第二个参数; eval("x", glass_case_of_emotion); class_eval很像是重新打开类,实际上是被定义在Module里面,only被模块和类使用。= moudle_eval; instance_eval访问实例变量;class_eval定义实例方法。 class Widget attr_accessor(:name, :quantity) def initialize(&block) instance_eval(&block) if block end ;;; w= Widget.new do |widget| widget.name= "Elbow Grease" ; @quantity = 0; end ; instance_exec, class_exec, moudle_exec; only accept 代码块, no string; object.instance_eval("@#{name} = DEFAULT")
module Reset def self.reset_var (object, name) object.instance_exec("@#{name}.to_sym") do |var| const = self.class.const_get(:DEFAULT); instance_variable_set(var, const) end ...
>> Effective Ruby
29.钩子方法中执行super方法:
def self.inherited(subclass) { super; handlers << subclass};
>> Effective Ruby
28. 模块和类的钩子方法:
Ruby的hook在类和模块的级别实现元编程。在类和模块中定义方法-单例方法。混合引入模块时,ruby都会调用钩子方法included or extended;这个钩子可以看作是一个,通知通知当前模块即将要被扩展到另一个类中。代理的方法只是重定向了。interited; method_added method_removed method_undefined 实例方法;singleton_method_added singleton_method_remove singleton_mothod_undefined 可以被用于模块方法或类方法。这些方法只接受一个symbol ,方法名; Triggers singleton_method_removed(:hello) class << self; remove_mothod(hello);end
>> Effective Ruby
24. block and ensure:
分配-使用-释放;file = File.open(file_name, 'w'_...file.close;因为又垃圾回收的原因,中途发生异常也会被回收资源,但是你不确定什么时候会被回收,所以你如果能及时处理,那更好。那么就算需要begin。。。ensure file.close if file end;也可以通过 File.open(file_name, 'w') do |file| ...end,这种block的方式。块执行晚后文件会被关闭。将资源管理简单化。 简单化的资源管理,也衍生出一个 传block给方法的问题,可以用class Lock def self.acquire ; lock =new ; lock.exclusive_lock!; if block_given? yield(lock) else lock # Act more like Lock::new. end ensure if block_given? # ...end end end; 没有绑定块时候,Lock::acquire 。。。; 类方法上使用块和ensure语句将资源管理的逻辑抽离出来。
>> Effective Ruby
15.优先使用实例变量:
@@开头的变量是类变量,bind在类上。; 单例模式;private_class_method(:new, :dup, :clone) def self.instance @@single ||= new; 其实类方法是一个假象,类方法实际上是一个类的对象的实例方法。Singleton模块作为Ruby标准库的一部分;require('singleton'); class Configuration include(Singleton) end;
>> Effective Ruby
9.setter:
setter方法时候需要指定接受者;attr_accessor attr_write; self.first = ...;调用非setter方法,不需要显式指定接收者;
>> Effective Ruby
One of the things that we must do is that we must be involved in working on achieving self mastery. You must work on yourself continuously. Never be satisfied with yourself, always know that as you invest the effort and time on you.That's the greatest ability that human beings have above animals.
>> Motivate yourself in the morning
Find 3 to 5 resources(books or DVD...). Learn just enough that you can actually practice and self correct or self edit as you practice , so the learning becomes a way of getting better at noticing when you're making a mistake and doing something a little different .
>> 20 hours and 4 steps to rapid skill acquisition
2:
Low motivation, low self-esteem. high anxiety: the block goes up. the filter goes up. the input can not get in.both getting comprehensible input, one makes progress, the other doesn't. One is open to the input, the other is closed.
>> comprehensible input - One way only one way to acquire a language
If the student isn't motivated, if self-esteem is low, if anxiety is high , if the student is on the defensive, if the student thinks the language class is a place where his weaknesses will be revealed. he may understand the input, but it won't penetrate. It won't reach those parts of the brain that do language acquisition. A block keeps it out. We call this block the affective filter.
>> comprehensible input - One way only one way to acquire a language