Code Monkey home page Code Monkey logo

eludia's Introduction

Eludia

The Eludia.pm

Build Status Coverage Status

eludia's People

Contributors

degra avatar do- avatar jonny64 avatar matveevrs avatar moominpappa avatar vprokhorova avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

eludia's Issues

Problem about first look

Hellow
I have a problem for the first time install. Steps about man at "http://eludia.ru/wiki/%D0%9A%D1%80%D0%B0%D1%82%D0%BA%D0%B8%D0%B9_%D0%BA%D1%83%D1%80%D1%81". Stopped at "Обратившись на 8000-й порт, получим форму авторизации.". I cant get "Form of authorization". I get error "Не удается получить доступ к сайту
Веб-страница по адресу http://192.168.48.136:8000/?type=_boot&salt=0.21265612117741495, возможно, временно недоступна или постоянно перемещена по новому адресу.
ERR_CONTENT_DECODING_FAILED". What wrong?

Spreadsheet::XLSX column limitation

Hi there

We use your modules all the time in custom scripts for our clients.
I have recently encountered a workbook with sheets containing more than 702 columns (i.e.beyond column ZZ).
I have located the issue in your module and made a local hack but obviously I'd prefer that the source be updated so everyone can benefit.

The change requires the replacement of

  if (/^\<c r=\"([A-Z])([A-Z]?)(\d+)\"/) {

    $col = ord ($1) - 65;

    if ($2) {
      $col++;
      $col *= 26;
      $col += (ord ($2) - 65);
    }

with

  if (/^\<c r=\"([A-Z])([A-Z]*)(\d+)\"/) {

    $col = ord ($1) - 65;

    my $rest = $2;
    while (my $c = substr($rest, 0, 1, '')) {
      $col++;
      $col *= 26;
      $col += (ord ($c) - 65);
    }

Thanks
Denby

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.