Coder Social home page Coder Social logo

acme-utf1's Introduction

NAME
    Acme::UTF1

SYNOPSIS
      use Acme::UTF1;
      use Encode qw( encode decode );
  
      # read utf-1 bytes from the input
      while ( my $bytes = <> ) {
        # decode to characters, and print
        my $chars = decode('utf-1', $bytes);
        print $chars;
      }

DESCRIPTION
    Implements the utf-1 encoding for perl.

    utf-1 is a way of encoding unicode characters so that they can be sent
    across networks that are unable to handle the full 8 bits normally
    required by utf-8. It will convert any character into a sequence of
    bytes, of which only the bottom bit is set, and is able to convert such
    a sequence back to characters.

FUTURE PLANS
    Rather than converting to bytes where only one bit is set, we could
    produce much denser bit sequences
    Using only the bottom bit leaves us open to interference. It might be
    better to use the _entire_ byte, sending all 1s, or all 0s, so we can
    use noisy channels. Or for data-hiding purposes, we could use the parity
    of the byte to hold the data, and send otherwise completely random
    noise.
    utf-1 would be ideal for hiding messages in the lowest bit of otherwise
    meaningful but noisy data.

SEE ALSO
    utf-7.

AUTHOR
    Tom Insam <[email protected]>

acme-utf1's People

Watchers

 avatar  avatar  avatar

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.