Giter Club home page Giter Club logo

tk's Introduction

The tk is an application of the http://lngtw.com service, which allows to post tweets longer than 140 characters on twitter in picture.

tk's People

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

formatq dmitriy-n

tk's Issues

Monospaced text in textarea

Text in textarea must be monospaced for ASCII-art for example. User must see text how he will see it in twitter.

Wrapping by punctuation

Many punctuation signs must be safe group of characters. Wrapping can be only after this groups. Not before.

Against censorship

Add the checkbox to prevent post annotation. It is necessary for hide text for censor bots.

Add message against censorship in Twitter.

¡No pasaran!

Title

Need common title for all pages "Long Twit". And meta key-words ("tweet", "twit", "twitter", "long", "140") are needed also.

Remove auth page.

It's needed to remove authentication page. User must enter on form. Text and colors before authentication must store in session and clear after.

Prevent JSESSIONID in URL

Need add the filter to prevent adding JSESSIONID to URL strings.
Change encodeURL to encodeResponseURL for sendRedirect.

Keep session

Need ping server periodically to keep session.

Это конец tk?

Твиттер сделал длину сообщений 280. Это положило конец данной разработке?

Logging

Need collect information about bugs.

Max image height

Max image height in twitter is 700px, it's about 34 strings. Need add constraint to strings count.

Incorrect long words wrapping.

When renderer render long words more than STRING_LENGTH, wrapping work wrong.

Need change org.kefirsf.TextRenderer:

            int end = Math.min(cur + STRING_LENGTH, string.length());
            list.add(string.substring(cur, end));
            cur = cur + end;

To

            int end = Math.min(cur + STRING_LENGTH, string.length());
            list.add(string.substring(cur, end));
            cur = end;

Немоноширинные шрифты

Нужно переработать рендеринг, чтобы можно ыбло использовать разные шрифты, в том числе немоноширинные.

Error pages

Need create pages for mapping 404 and 500 errors on server.

Static resources

Move static resources .js, .css to directory "static". For apache.

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.