in reply to Re: problem with hashes, loaded from file
in thread problem with hashes, loaded from file

What's tldr.
I was not aware about Storable, have to read on that. Thanx.
  • Comment on Re^2: problem with hashes, loaded from file

Replies are listed 'Best First'.
Re^3: problem with hashes, loaded from file
by AnomalousMonk (Archbishop) on Dec 24, 2014 at 13:32 UTC
      That sscce was tldr :)
      read about half of it.

        tlhr

Re^3: problem with hashes, loaded from file
by Anonymous Monk on Dec 24, 2014 at 13:04 UTC
    "too long; didn't read"

    Take a look at utf8::all, too

      Unfortunately, can't do that, I tried to turn everything to unicode (utf8) before, but it mangled filenames, with erroneous unicode encoding, so, I've had to reference filenames in byte, not character sequences.
        Well if I were a sys admin I would be glad that I found some broken file names (rather then not knowing they're there). Anyway, locale doesn't do much (I think pre-5.020 LC_CTYPES simply doesn't work with utf-8 locales) and encoding is problematic because it is global, which can break quite a lot of modules. Also, encoding is deprecated as of 5.018. I personally use
        use utf8; use open qw( :encoding(utf-8) :std ); use Encode;