Skip to main content

Home/ Perl/ Group items tagged code

Rss Feed Group items tagged

Roy Jensen

Net::OpenSSH - search.cpan.org - 0 views

  • 3 - run ssh from the command line Check you can connect to the remote host using the same parameters you are passing to Net::OpenSSH. In particular, ensure that you are running ssh as the same local user. If you are running your script from a webserver, the user would probably be www, apache or something alike. Common problems are: Not having the remote host public key in the known_hosts file.
    • Roy Jensen
       
      The key must be paired with the host i the known_hosts file, that is how Net::OpenSSH uses public key authentication for SSH
  • run ssh from the command line Check you can connect to the remote host using the same parameters you are passing to Net::OpenSSH. In particular, ensure that you are running ssh as the same local user. If you are running your script from a webserver, the user would probably be www, apache or something alike. Common problems are: Not having the remote host public key in the known_hosts file. Wrong permissions for the ~/.ssh directory or its contents. Incorrect settings for public key authentication.
Alberto Adrián Schiano

Koders - Source Code Search Engine - 0 views

  •  
    Another code search (regex?)
  • ...8 more comments...
  •  
    Another code search (regex?)
  •  
    Another code search (regex?)
  •  
    Another code search (regex?)
  •  
    Another code search (regex?)
  •  
    Another code search (regex?)
  •  
    Another code search (regex?)
  •  
    Another code search (regex?)
  •  
    Another code search (regex?)
  •  
    Another code search (regex?)
  •  
    Another code search (regex?)
Alberto Adrián Schiano

code.fmip.org - collaborative debugging tool - 0 views

  •  
    Just copy and paste in this site and copy the link to show it.
  •  
    Show highlighted copied code in forums/web for a certain time Mostrar codigo copiado resaltado en foros/web durante un tiempo
Alberto Adrián Schiano

Secure source code hosting and collaborative development - GitHub - 0 views

  •  
    Share code with the web Compartir codigo con la web
Alberto Adrián Schiano

Google Code Search - 0 views

  •  Advanced Code Search
  •  
    A good code search with regular expressions.
Alberto Adrián Schiano

Developer's Guide - Google AJAX Search API - Google Code - 0 views

  •  
    Perl Access 2 Google API Acceso con perl al Google API
Alberto Adrián Schiano

ROBODoc: Automating Software Documentation - 0 views

  • It is difficult to keep documentation in sync with source code. One of the reasons is that documentation and source code are stored in separate files that usually also require different editors to edit them. ROBODoc solves this problem. Specially formatted documentation headers are extracted from source files, reformatted in HTML, XML DocBook, TROFF, ASCII, LaTeX, PDF, or RTF, and stored in a different file.
Alberto Adrián Schiano

PLEAC - Programming Language Examples Alike Cookbook - 0 views

  •  
    Crazily comparing 20 popular programming languages with perl by code Comparando locamente 20 lenguajes famosos de programacion con perl mediante codigo
Alberto Adrián Schiano

XML Apache AxKit - 0 views

  •  
    provides on-the-fly conversion from XML to any format, such as HTML, WAP or text using either W3C standard techniques, or flexible custom code Separacion modular de estructura y contenido para lograr conversiones de formato perfectas siempre
Alberto Adrián Schiano

Pastebin.com - #1 paste tool since 2002! - 0 views

  •  
    paste tool since 2002 herramienta de pegado desde el 2002
Joelle Nebbe-Mornod

Tim Bunce / Devel-NYTProf-2.07 - search.cpan.org - 0 views

  •  
    i would have killed for something like this back in 2000
Alberto Adrián Schiano

Cognitive Code Corporation - 0 views

  •  
    New advanced artificial intelligence applications-libraries

    Nueva inteligencia artificial: aplicaciones - librerias

Alberto Adrián Schiano

Mastak Absolute Perl - 0 views

  • Mastak Absolute Perl is the unique tool for creating, editing and debugging Perl scripts and programs. Mastak Absolute Perl has intuitive interface and combines the ease of use with full featured development environment while using only small part of system resources. Mastak Absolute Perl features multiple document interface and syntax highlighting as well as web browser integration. Easy to use text editor and powerful Code Explorer together with ability to launch the integrated Perl interpreter and debugger both in editor window and in console allow the programmer to work fast and effectively. The software is highly configurable. You can set it up to use your favorite colors, fonts, macros, hot keys, files and folders MRU lists. The program remembers its previous state up to cursor position on re-launch. Mastak Absolute Perl supports all major Cyrillic encodings (including WIN1251, DOS866, ISO8859-5 and KOI8-R). The document encoding is automatically determined on file loading. The program has a simple FTP client built-in that allows fast uploads and downloads of CGI scripts to and from web servers. The built-in FTP client fully supports various Cyrillic encodings. Mastak Absolute Perl runs on the following operating systems: Microsoft Windows 95, 98, NT 4.0, 2000. The only requirement is that Microsoft Internet Explorer (version 4.0 or higher) should be installed on the machine.
  •  
    Another perl editor - freeware - no screenshots
    Otro editor de perl - gratis - no hay ilustraciones

Alberto Adrián Schiano

Klingon Imperial Diplomatic Corps: Klingon Programmer's Code of Honour - 0 views

  •  
    Programming excuses provided by the Klingon community

    Excusas de programacion propuestas por la comunidad klingon

Alberto Adrián Schiano

The MINIX 3 Operating System - 0 views

  • MINIX 3 Features POSIX compliant Networking with TCP/IP X Window System Languages: cc, gcc, g++, perl, python, etc. Over 400 UNIX programs Many improvements since V2 Full multiuser and multiprogramming Device drivers run as user processes High degree of fault tolerance Full C source code supplied
  •  
    LINUX's father comes back and is more hardware reliable than GNU-Linux
    Regresa el padre de LINUX y es más confiable en los perifericos que GNU-Linux

Alberto Adrián Schiano

Using Expect.pm 2 managge unreliable programs - 0 views

  • here is a working example. This script shows 2 ways, one is saving the key to a file and reading it back in, the other, just hard codes the file contents into a variable. I tried a few things to avoid a temp file, but no luck. There is a Content type for the write, but it dosn't seem to work for scalar....it still writes a file.
  • Because PHP sucks: escape to Perl
  • How to Make Crypt::DSA use a your key to sign something
  • ...4 more annotations...
  • looking at a post by Sisyphus on comp.lang.perl. misc, it seems that you CAN use the numeric keys, like you tried in your original post. He showed a neat trick ( which I will have to explore further) where he reblessed the key data, and it works.
  • This node How to Make Crypt::DSA use a your key to sign something got me thinking about how to extend Crypt::DSA's potential, to make public and private keys, for signing verification. The script below, will verify 2 ways, once with scalars inside the script, and once from files. The generated sig, is actually binary, so note the base64 encoding of it, for attachment to emails, etc. I must thank sisyphus for the trick of reblessing a hash back into an object. This is the critical part of the script, where the public and private keys are generated. The docs for Crypt::DSA don't show how to separate them,( and you wouldn't want to be distributing your private key in the public PEM file. :-)
  • Note: This isn't really a Perl thing, but I'm using it for Perl scripts and it's too handy not to share
  • Expect.pm Test Program One The following test program runs the unreliable program twenty times. If the unreliable program takes longer than five seconds, the attempt to run it is terminated and the test program continues.
  •  
    Using Expect with perl - tips and references - simple examples as a starting
1 - 20 of 21 Next ›
Showing 20 items per page