こんがりぃ

都内在住フリーランスのエンジニア。主にRuby on Rails。Twitter(@Kongari_Bug)で格ゲー。

2018-08-01から1ヶ月間の記事一覧

RubyのClass#inheritedの実行タイミングはクラス定義文の実行直前

サブクラスを呼び出したかったがそうはならない。 class A def self.inherited(child) p child child.aaa B.aaa aaa end def self.aaa p "A" end end class B < A def self.aaa p "B" end end p "#" * 40 B.aaa 実行結果 B "A" "A" "A" "###################…

mount_smbfs: server rejected the connection: Authentication error

mount_smbfs: server rejected the connection: Authentication error が出る場合、sambaのパスワードを設定しなせばいけた。 sudo su smbpasswd -a ユーザ名 参考リンク www.ksknet.net