GithubHelp home page GithubHelp logo

sergeyromanov / app-nopaste Goto Github PK

View Code? Open in Web Editor NEW

This project forked from karenetheridge/app-nopaste

0.0 2.0 0.0 393 KB

easy access to any pastebin

Home Page: http://metacpan.org/release/App-Nopaste/

License: Other

Perl 100.00%

app-nopaste's Introduction

NAME

App::Nopaste - Easy access to any pastebin

VERSION

version 1.013

SYNOPSIS

use App::Nopaste 'nopaste';

my $url = nopaste(q{
    perl -wle 'print "Prime" if (1 x shift) !~ /^1?$|^(11+?)\1+$/' [number]
});

# or on the command line:
nopaste test.pl
=> http://pastebin.com/fcba51f

DESCRIPTION

Pastebins (also known as nopaste sites) let you post text, usually code, for public viewing. They're used a lot in IRC channels to show code that would normally be too long to give directly in the channel (hence the name nopaste).

Each pastebin is slightly different. When one pastebin goes down (I'm looking at you, http://paste.husk.org), then you have to find a new one. And if you usually use a script to publish text, then it's too much hassle.

This module aims to smooth out the differences between pastebins, and provides redundancy: if one site doesn't work, it just tries a different one.

It's also modular: you only need to put on CPAN a App::Nopaste::Service::Foo module and anyone can begin using it.

INTERFACE

CLI

See the documentation in App::Nopaste::Command.

nopaste

use App::Nopaste 'nopaste';

my $url = nopaste(
    text => "Full text to paste (the only mandatory argument)",
    desc => "A short description of the paste",
    nick => "Your nickname",
    lang => "perl",
    chan => "#moose",
    private => 1, # default: 0

    # this is the default, but maybe you want to do something different
    error_handler => sub {
        my ($error, $service) = @_;
        warn "$service: $error";
    },

    warn_handler => sub {
        my ($warning, $service) = @_;
        warn "$service: $warning";
    },

    # you may specify the services to use - but you don't have to
    services => ["Shadowcat", "Gist"],
);

print $url if $url;

The nopaste function will return the URL of the paste on success, or undef on failure.

For each failure, the error_handler argument is invoked with the error message and the service that issued it.

For each warning, the warn_handler argument is invoked with the warning message and the service that issued it.

SEE ALSO

WebService::NoPaste, WWW::Pastebin::PastebinCom::Create, Devel::REPL::Plugin::Nopaste

http://perladvent.org/2011/2011-12-14.html

COPYRIGHT AND LICENSE

Copyright 2008- Shawn M Moore.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SUPPORT

Bugs may be submitted through the RT bug tracker (or [email protected]).

AUTHOR

Shawn M Moore, <[email protected]>

CONTRIBUTORS

COPYRIGHT AND LICENSE

This software is copyright (c) 2008 by Shawn M Moore.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

app-nopaste's People

Contributors

arcanez avatar arnuga avatar arodland avatar avar avatar bremner avatar dap avatar djzort avatar doy avatar eckankar avatar gregoa avatar grinnz avatar haarg avatar jgoulah avatar jibsheet avatar jmmills avatar karenetheridge avatar miyagawa avatar mxey avatar nothingmuch avatar rjbs avatar rkitover avatar sartak avatar sergeyromanov avatar shlomif avatar tsibley avatar xdg avatar zmughal avatar zoffixznet avatar

Watchers

 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.