mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

zunda

Rubyだと^が論理XORかいな?

$ irb
> true ^ true
=> false
> true ^ false
=> true
> false ^ true
=> true
> false ^ false
=> false

レシーバで変わるのか。左辺が真偽値になるようにしないと期待しない結果になるね。

> true ^ 1 # 1は真と解釈される(0でも真)
=> false
> 1 ^ 1 # 左の1は整数なので^はビット演算子。1は整数の1と解釈される
=> 0

@zundan その辺最初に知った時、&&みたいな^^が無いのが意外に感じました。(^^)←単なる顔文字で混乱する例。

@tadd 顔文字も混乱するけどレシーバで振る舞いが変わるの知らないと変なバグになりそうですね…