gabrielgiordano (Gabriel Giordano)
- Login: gabrielgiordano
- Registered on: 02/15/2017
- Last sign in: 02/15/2017
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
02/15/2017
-
08:58 PM Ruby Bug #13216 (Closed): Possible unexpected behaviour reading string starting with a byte order mark
- Maybe the comparison between symbols has an unexpected behaviour. Tested with ruby 2.4.0
```
$ echo -n -e '\xEF\xBB\xBFid' | ruby -e 'puts STDIN.read.bytes'
239
187
191
105
100
$ echo -n -e 'id' | ruby -e 'puts STDIN.read.byt...