Result:
found more than 790 distributions - search limited to the first 2001 files matching your query ( run in 2.329 )


Alien-cares

 view release on metacpan or  search on metacpan

libcares/ares_init.c  view on Meta::CPAN

  }

  /* Return the metric value from that row, plus the interface metric.
   *
   * See
   * http://msdn.microsoft.com/en-us/library/windows/desktop/aa814494(v=vs.85).aspx
   * which describes the combination as a "sum".
   */
  return row.Metric + interfaceMetric;
}

 view all matches for this distribution


Alien-libsecp256k1

 view release on metacpan or  search on metacpan

libsecp256k1/CMakeLists.txt  view on Meta::CPAN

option(SECP256K1_USE_EXTERNAL_DEFAULT_CALLBACKS "Enable external default callback functions." OFF)
if(SECP256K1_USE_EXTERNAL_DEFAULT_CALLBACKS)
  add_compile_definitions(USE_EXTERNAL_DEFAULT_CALLBACKS=1)
endif()

set(SECP256K1_ECMULT_WINDOW_SIZE 15 CACHE STRING "Window size for ecmult precomputation for verification, specified as integer in range [2..24]. The default value is a reasonable setting for desktop machines (currently 15). [default=15]")
set_property(CACHE SECP256K1_ECMULT_WINDOW_SIZE PROPERTY STRINGS 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24)
include(CheckStringOptionValue)
check_string_option_value(SECP256K1_ECMULT_WINDOW_SIZE)
add_compile_definitions(ECMULT_WINDOW_SIZE=${SECP256K1_ECMULT_WINDOW_SIZE})

set(SECP256K1_ECMULT_GEN_KB 86 CACHE STRING "The size of the precomputed table for signing in multiples of 1024 bytes (on typical platforms). Larger values result in possibly better signing or key generation performance at the cost of a larger table....
set_property(CACHE SECP256K1_ECMULT_GEN_KB PROPERTY STRINGS 2 22 86)
check_string_option_value(SECP256K1_ECMULT_GEN_KB)
if(SECP256K1_ECMULT_GEN_KB EQUAL 2)
  add_compile_definitions(COMB_BLOCKS=2)
  add_compile_definitions(COMB_TEETH=5)

 view all matches for this distribution


Alien-uv

 view release on metacpan or  search on metacpan

libuv/docs/src/fs.rst  view on Meta::CPAN

    Equivalent to :man:`readlink(2)`.
    The resulting string is stored in `req->ptr`.

.. c:function:: int uv_fs_realpath(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb)

    Equivalent to :man:`realpath(3)` on Unix. Windows uses `GetFinalPathNameByHandle <https://msdn.microsoft.com/en-us/library/windows/desktop/aa364962(v=vs.85).aspx>`_.
    The resulting string is stored in `req->ptr`.

    .. warning::
        This function has certain platform-specific caveats that were discovered when used in Node.

libuv/docs/src/fs.rst  view on Meta::CPAN

    aligned. Buffer size and address should be a multiple of the physical sector
    size of the block device.

    .. note::
        `UV_FS_O_DIRECT` is supported on Linux, and on Windows via
        `FILE_FLAG_NO_BUFFERING <https://msdn.microsoft.com/en-us/library/windows/desktop/cc644950.aspx>`_.
        `UV_FS_O_DIRECT` is not supported on macOS.

.. c:macro:: UV_FS_O_DIRECTORY

    If the path is not a directory, fail the open.

libuv/docs/src/fs.rst  view on Meta::CPAN

    The file is opened for synchronous I/O. Write operations will complete once
    all data and a minimum of metadata are flushed to disk.

    .. note::
        `UV_FS_O_DSYNC` is supported on Windows via
        `FILE_FLAG_WRITE_THROUGH <https://msdn.microsoft.com/en-us/library/windows/desktop/cc644950.aspx>`_.

.. c:macro:: UV_FS_O_EXCL

    If the `O_CREAT` flag is set and the file already exists, fail the open.

libuv/docs/src/fs.rst  view on Meta::CPAN

    Access is intended to be random. The system can use this as a hint to
    optimize file caching.

    .. note::
        `UV_FS_O_RANDOM` is only supported on Windows via
        `FILE_FLAG_RANDOM_ACCESS <https://msdn.microsoft.com/en-us/library/windows/desktop/aa363858.aspx>`_.

.. c:macro:: UV_FS_O_RDONLY

    Open the file for read-only access.

libuv/docs/src/fs.rst  view on Meta::CPAN

    Access is intended to be sequential from beginning to end. The system can
    use this as a hint to optimize file caching.

    .. note::
        `UV_FS_O_SEQUENTIAL` is only supported on Windows via
        `FILE_FLAG_SEQUENTIAL_SCAN <https://msdn.microsoft.com/en-us/library/windows/desktop/aa363858.aspx>`_.

.. c:macro:: UV_FS_O_SHORT_LIVED

    The file is temporary and should not be flushed to disk if possible.

    .. note::
        `UV_FS_O_SHORT_LIVED` is only supported on Windows via
        `FILE_ATTRIBUTE_TEMPORARY <https://msdn.microsoft.com/en-us/library/windows/desktop/aa363858.aspx>`_.

.. c:macro:: UV_FS_O_SYMLINK

    Open the symbolic link itself rather than the resource it points to.

libuv/docs/src/fs.rst  view on Meta::CPAN

    The file is opened for synchronous I/O. Write operations will complete once
    all data and all metadata are flushed to disk.

    .. note::
        `UV_FS_O_SYNC` is supported on Windows via
        `FILE_FLAG_WRITE_THROUGH <https://msdn.microsoft.com/en-us/library/windows/desktop/cc644950.aspx>`_.

.. c:macro:: UV_FS_O_TEMPORARY

    The file is temporary and should not be flushed to disk if possible.

    .. note::
        `UV_FS_O_TEMPORARY` is only supported on Windows via
        `FILE_ATTRIBUTE_TEMPORARY <https://msdn.microsoft.com/en-us/library/windows/desktop/aa363858.aspx>`_.

.. c:macro:: UV_FS_O_TRUNC

    If the file exists and is a regular file, and the file is opened
    successfully for write access, its length shall be truncated to zero.

 view all matches for this distribution


Alt-ExtUtils-PkgConfig-PLICEASE

 view release on metacpan or  search on metacpan

lib/ExtUtils/PkgConfig.pm  view on Meta::CPAN

  L<ExtUtils::Depends>

  L<http://gtk2-perl.sourceforge.net/>

This module is really just an interface to the pkg-config utility program.
http://www.freedesktop.org/Software/pkgconfig

=head1 BUNDLED CODE

This version of L<ExtUtils::PkgConfig> comes with functions and documentation
that were taken from the original, which was distributable under the LGPL.

 view all matches for this distribution


Alvis-Convert

 view release on metacpan or  search on metacpan

t/test-data/original/3/189-2.xml  view on Meta::CPAN

        <urls>
          <url>http://blog.searchenginewatch.com/blog/0505</url>
        </urls>
      </acquisitionData>
      <canonicalDocument>        
        <section>If you've been wanting an option to keyword search your Gmail using Google's desktop search tool, your wait is over. A 105K plug-in was made available late last week on the GDS site called, "Larry's Gmail Indexer" (beta). It uses GMa...
      <metaData>
        <meta name="title">Search Your Gmail with Google Desktop Search</meta>
        <meta name="dc:date">2005-05-01</meta>
        <meta name="dc:type">text/html</meta>
      </metaData>
      <links>
        <outlinks>
          <link type="a">
            <anchorText>desktop search</anchorText>
            <location>http://desktop.google.com</location>
          </link>
          <link type="a">
            <anchorText>"Larry's Gmail Indexer"</anchorText>
            <location>http://desktop.google.com/plugins/gmail.html</location>
          </link>
          <link type="a">
            <anchorText>on his site</anchorText>
            <location>http://www.trivex.net/</location>
          </link>

 view all matches for this distribution


Amethyst

 view release on metacpan or  search on metacpan

factpacks/Linux.fact  view on Meta::CPAN

Apollo => <reply> $who, Svgalib Multiplayer Gravity Game. URL: http://members.xoom.com/jopman/
App => <reply> $who, Algebraic Typing and Pattern Matching Preprocessor for C++. URL: http://www.primenet.com/~georgen/app.html
Appindex browser => <reply> $who, Simple ncurses-based Freshmeat appindex.txt browser. URL: http://www.penguin.cz/~mhi/appindex/
Appletalk Configurator => <reply> $who, GTK+ GUI for Netatalk package. URL: http://members.yourlink.net/aaron/atalkconf.html
Applix SHELF => <reply> $who, An embedable fully featured programming language for Linux. URL: http://www.applixware.org
Applixware => <reply> $who, Integrated suite of desktop productivity tools.. URL: http://linux.applixware.com/
APRIL => <reply> $who, Agent Process Interaction Language. URL: http://www.nar.fla.com/Activities/Programming/APRIL/april.html
aproxy => <reply> $who, Forwarding TCP-Proxy. URL: http://www.dilledabb.de/projects/aproxy.html
APSEND => <reply> $who, TCP/IP packet sender. URL: http://elxsi.axxs.de/
apsfilter => <reply> $who, Intelligent line printer input filter. URL: http://www.freebsd.org/~andreas/apsfilter/
apt-find => <reply> $who, AptFind is an ncurses interface for finding and installing packages using APT.. URL: ftp://ftp.circlefx.com/apt-find/

factpacks/Linux.fact  view on Meta::CPAN

asmail => <reply> $who, Asmail is a. URL: http://www.angelfire.com/mn/asmail
asmem => <reply> $who, Memory utilization monitor for X.. URL: http://bewoner.dma.be/Albert/afterstep/
asmon => <reply> $who, Afterstep or Window Maker CPU/Load/Mem/etc Meter. URL: http://rio.dhs.org/asmon/
asmounter => <reply> $who, An all-purpose mounter designed for the AfterStep window manager.. URL: http://www.cit.nepean.uws.edu.au/~dtaylor/linux/asmounter.html
asmutils => <reply> $who, A set of different utilities for Linux/i386 written in assembly language. URL: http://lightning.voshod.com/asm/
asNews => <reply> $who, Simple news retrieving software which shows the news on your desktop. URL: http://www.geocities.com/SiliconValley/Vista/2075/new/asNews.html
asp2php => <reply> $who, Converts Active Server Pages (ASP) to PHP3 scripts. URL: http://home.i1.net/~naken/asp2php/
aspbm => <reply> $who, AfterStep Phone bill monitor. URL: http://ip.pt/~ip241956/aspbm/aspbm.html
Aspell => <reply> $who, Intelligent Spell Checker. URL: http://metalab.unc.edu/kevina/aspell/
asRum => <reply> $who, segfault.org headlines in your AfterStep rootmenu. URL: http://members.xoom.com/ishamae1/asr.html
asScotch => <reply> $who, The days UserFriendly comic strip in your AfterStep rootmenu. URL: http://members.xoom.com/ishamae1/

factpacks/Linux.fact  view on Meta::CPAN

CGILua => <reply> $who, CGILua is a tool for developing dynamic Web pages.. URL: http://www.tecgraf.puc-rio.br/cgilua/
CGIProxy => <reply> $who, Anonymizing, filter-bypassing HTTP proxy in a CGI script (in Perl). URL: http://www.jmarshall.com/tools/cgiproxy/
CGIWrap => <reply> $who, Wrapper for securely allowing all users to use CGI scripts. URL: http://www.unixtools.org/cgiwrap/
CGM Viewer Applet => <reply> $who, Scriptable vector graphics viewer written in Java.. URL: http://www.online.de/home/bdaum/howto.htm
cgvg => <reply> $who, Tools for command-line source browsing.. URL: http://linux.ucla.edu/~uzi/cgvg.html
Chameleon => <reply> $who, X utility to customize desktop colors. URL: ftp://ftp.lagged.net/pub/software/
Chaperon memory access checker => <reply> $who, Checks memory accesses for bad behavior. URL: http://www.BitWagon.com/chaperon.html
chbg => <reply> $who, Desktop background changer and manager. URL: http://www.idata.sk/~ondrej/chbg/
CHC => <reply> $who, Columbia House Play Club Catalog Browser. URL: http://www.dnc.net/users/collver/chc.tar.gz
Chebyshev => <reply> $who, Engine for forwarding email service (w/spam filtering). URL: http://www.jab.org/cheb
check-ps => <reply> $who, Reports or kills processes 'hidden' from the system administrator. URL: http://checkps.alcom.co.uk/

factpacks/Linux.fact  view on Meta::CPAN

Code Breaker => <reply> $who, MasterMind clone.. URL: http://www.cs.nmt.edu/~mberg/programming/codebreaker/
Code Crusader => <reply> $who, complete code development environment, inspired by MetroWerks CodeWarrior. URL: http://www.cco.caltech.edu/~jafl/jcc/
Code Medic => <reply> $who, UNIX Debugging Environment. URL: http://www.cco.caltech.edu/~glenn/medic/
code2html => <reply> $who, Converts a program's source code to syntax highlighted HTML. URL: http://www.cosy.sbg.ac.at/~ppalfrad/code2html/
CodeBase => <reply> $who, . URL: http://www.sequiter.com/
CodeWarrior => <reply> $who, Professional, industrial-strength IDE that integrates with EGCS/GNU coding tools. URL: http://www.metrowerks.com/desktop/linux/gnu/
Codewizard/Java => <reply> $who, Improves and standardizes your Java[tm] code-automatically.. URL: http://www.parasoft.com/products/wizard/java/
CoffeeCup HTML Editor for Linux => <reply> $who, Powerful GTK HTML Editor. URL: http://www.coffeecup.com/linux/
Cohesion => <reply> $who, Java-based Plugable Application Framework, including Modelling Plugin and others. URL: http://europa.it.swin.edu.au/teamb/
Coin => <reply> $who, 3D graphics library with Open Inventor API. URL: http://www.sim.no/coin.html
coldread => <reply> $who, A test-scoring and fortune-telling application.. URL: http://coldread.siteless.com/

factpacks/Linux.fact  view on Meta::CPAN

demcd => <reply> $who, CDPlayer for Linux. URL: http://demcd.virtualave.net/
dennis => <reply> $who, Automated DNS builder. URL: http://www.carumba.com/code/dennis/
Dents => <reply> $who, Well-designed nameserver which aims to be completely standards comformant. URL: http://www.dents.org/
dep.pl => <reply> $who, Check dependencies of multiple files.. URL: http://home.lonyay.edu.hu/~mhp/dep/
Deskmate! => <reply> $who, A new and improved Desktop friend to keep you company. URL: http://kijo.net/linux.shtml
desktop_stream.pl => <reply> $who, A Perl script for making screenshots available on the Web.. URL: http://www.angelfire.com/ma2/desktopstream/
DeuTex => <reply> $who, Doom wad composer/decomposer. URL: http://www.teaser.fr/~amajorel/deutex/
devfs patch => <reply> $who, Device FileSystem for Linux kernel. URL: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
devo => <reply> $who, Perl script to convert MS Windows themes to KDE themes. URL: http://www.circle-path.org/garrett/tech/devo.html
dfcolor => <reply> $who, Colourized df with graph and monitoring option. URL: http://www.macroshaft.org/iggie/scripts/ugh/site/
dfm => <reply> $who, Filemanager like OS/2 WPS. URL: http://dfm.linuxbox.com/

factpacks/Linux.fact  view on Meta::CPAN

expat => <reply> $who, XML Parser Toolkit. URL: http://www.jclark.com/xml/expat.html
Expect => <reply> $who, . URL: http://expect.nist.gov/
exphack => <reply> $who, Wrapper script for nethack to find a. URL: ftp://lathi.myip.org/pub/exphack/
Explore2fs => <reply> $who, A win32 explorer for Linux ext2 partitions.. URL: http://uranus.it.swin.edu.au/~jn/linux/explore2fs.htm
exportsql => <reply> $who, Export all tables in a MS-Access database file to SQL command files. URL: http://www.cynergi.net/exportsql/
Express => <reply> $who, Open source web browser being part of the GNOME desktop project. URL: http://www.cse.unsw.edu.au/~conradp/express/
exscan => <reply> $who, An enhanced network/Internet port scan utility. URL: http://exscan.netpedia.net/exscan.html
ext2-os2 => <reply> $who, Ext2 filesystem support for OS/2. URL: http://perso.wanadoo.fr/matthieu.willm/ext2-os2/
ext2resize => <reply> $who, Resizes ext2 filesystems. URL: http://www.dsv.nl/~buytenh/ext2resize/
eXtace => <reply> $who, ESD FFT visual plugin, eye-candy. URL: http://techdev.buffalostate.edu/~dave/extace/
Extern_Link => <reply> $who, Adds informational window to links of an HTML page. URL: http://perso.easynet.fr/~jguellec/program/perl/extern_link/extern_link_english.htm

factpacks/Linux.fact  view on Meta::CPAN

Flash Mount Menu => <reply> $who, Automounter/umounter. URL: http://lonestar.bizland.com/
Flash Web Server => <reply> $who, A fast, portable web server that performs aggressive caching. URL: http://www.cs.rice.edu/~vivek/flash/
Flashback => <reply> $who, Flashback is an mp3 visualization program.. URL: http://deadzone.student.umd.edu/flashback/news.pl
fletch => <reply> $who, Non interactive, multiplexing FTP/HTTP client.. URL: http://vipul.net/perl/
flexbackup => <reply> $who, Flexible backup script. URL: http://members.home.com/flexbackup/
FlexButtonZ => <reply> $who, Make desktop buttons in X from shellscripts.. URL: http://www.penguinpowered.com/~buttonz/
Flight Gear => <reply> $who, Flight simulator. URL: http://www.flightgear.org/
flip => <reply> $who, Page-flipper for previewing TIFF sequence animations.. URL: http://www.reptilelabour.com/
flmake => <reply> $who, Graphical user interface for make , compiler output and nedit. URL: http://www.iua.upf.es/~mdeboer/fltk/
Flog => <reply> $who, ftpd log analyzer. URL: http://www.glue.umd.edu/~ajoshi/
flow => <reply> $who, Particle animation software with GL preview and Renderman output.. URL: http://www.reptilelabour.com/

factpacks/Linux.fact  view on Meta::CPAN

gbuild => <reply> $who, build tool to automate cvs update, compilation, and packaging. URL: http://www.cryon.com/gbuild/
GCache => <reply> $who, Generic cache class for Python. URL: ftp://minkirri.apana.org.au/pub/python/GCache-0.1.tar.bz2
gcc => <reply> $who, . URL: http://egcs.cygnus.com/
GCD => <reply> $who, A cd-player with a gtk+ interface. URL: http://www.nostatic.org/grip/
Gcdplay => <reply> $who, GPL'ed CD player with local and server-based cddb support.. URL: http://www.korax.net/~mglisic/gcdplay/index.html
gchbkgrd => <reply> $who, Program to constantly change the desktop's background. URL: http://www.bitdaddy.com/~mono/gchbkgrd/
GChip8 => <reply> $who, An interpreter/emulator for the CHIP8 virtual machine.. URL: http://cerealbox.angel.nu/gchip8.html
GClipper => <reply> $who, A multiple buffer clipboard that automatically fetches new selections.. URL: http://thunderstorms.org/gclipper/gclipper-1.1.tar.gz
GCO => <reply> $who, A database for keeping track of your comic collection.. URL: http://www.daimi.au.dk/~maxx/html/maxximum-linux.html
gcombust => <reply> $who, gtk+ frontend for mkisofs and cdrecord. URL: http://www.iki.fi/jmunsin/gcombust
GCompte => <reply> $who, A program to keep track of your finances. URL: http://www.linux-france.org/prj/gcompte/

factpacks/Linux.fact  view on Meta::CPAN

geektalkd => <reply> $who, Simple, yet extendable chat server. URL: http://www.geektalk.org/
gefax => <reply> $who, Frontend for efax. URL: http://www.konqui.de/
geg => <reply> $who, Simple GTK+ 2D-function plotting program. URL: http://www.infolaunch.com/~daveb/
Geheimnis => <reply> $who, A KDE shell for GPG/PGP2/PGP5. URL: http://members.home.com/cdwiegand/geheimnis/
Gem Drop X => <reply> $who, A fast-paced puzzle game. URL: http://www.newbreedsoftware.com/gemdropx/
GEM/3 => <reply> $who, GUI desktop environment produced by Digital Research. URL: http://www.devili.iki.fi/cpm/gemworld.html
GEMTA => <reply> $who, Convenience library for mutithreaded apps using glib. URL: http://surazal.nerp.net/fractals/eoti/
GemVT => <reply> $who, . URL: http://www.SoftHome.net/pub/users/timj/gemvt/index.htm
Generic Colouriser => <reply> $who, Colourises any files or outputs of commands.. URL: http://melkor.dnp.fmph.uniba.sk/~garabik/grc.html
Generic Graphical Server Daemon => <reply> $who, Generic Graphical Server Daemon. URL: http://devplanet.fastethernet.net/files.html
Generic Information Server Toolkit => <reply> $who, GIST is a free tool kit for the development of interactive web sites. URL: http://gist.jrc.it/

factpacks/Linux.fact  view on Meta::CPAN

Gnomoku => <reply> $who, Gomoku game for X and GTK. URL: http://cactus.rulez.org/debs/gnomoku_0.19990128.orig.tar.gz
GnOpenGL3ds => <reply> $who, GNOME 3DS file viewer. URL: http://www.ifrance.coom/yburgevin/
GnoRPM => <reply> $who, A graphical front end to the Redhat package managementsystem. URL: http://www.daa.com.au/~james/gnome/
GnoSamba => <reply> $who, Gtk front end to configuring Samba. URL: http://www.open-systems.com/gnosamba.html
gnotepad+ => <reply> $who, An easy-to-use, yet fairly feature-rich, simple text editor. URL: http://ack.netpedia.net/gnp/
GNotes => <reply> $who, Allows you to place cool little yellow sticky notes all over your desktop. URL: http://www.angelfire.com/sk/gnomestuff/
GNotes! => <reply> $who, A nifty GNOME Panel applet that allows you to create notes on your desktop.. URL: http://www.netcom.com/~spoon/gnotes.html
Gnotline => <reply> $who, GTK+ hotline client. URL: http://www.rpi.edu/~thompe2/gnotline/gnotline.html
gntedit => <reply> $who, GTK+ NES Tile Editor. URL: http://emu.simplenet.com/misc/gntedit/
GNU Ada => <reply> $who, Ada95 Compiler frontend based on gcc and Tools.. URL: http://www.gnuada.org/
GNU Animation Multimedia Entertainment System (GAMES) => <reply> $who, collection of libraries for game and graphics development under Unix. URL: http://members.xoom.com/bitwize
GNU awk => <reply> $who, a pattern scanning and processing language. URL: http://www.gnu.org/software/gawk/gawk.html

factpacks/Linux.fact  view on Meta::CPAN

GTetrinet => <reply> $who, A clone of the game Tetrinet.. URL: http://gtetrinet.netpedia.net/
GTExplorer => <reply> $who, A game theory visualization tool. URL: http://www.ling.ed.ac.uk/~oliphant/gte
gTick => <reply> $who, GTK+ based metronome. URL: http://bsenet.cjb.net/gtick
GTimer => <reply> $who, Scheduler for your personal activities. URL: http://www.radix.net/~cknudsen/gtimer/
GTK File Browser => <reply> $who, Small, fast, lightweight, GTK File Browser. URL: http://members.tripod.com/Yarick/FileBrowser.html
GTK H3O.net Headline Viewer => <reply> $who, Headline grabber for your Linux desktop.. URL: http://www.h3o.net/h3o4/bin/gtk.h3opoll.tgz
GTK MikMod => <reply> $who, An advanced multi-threaded module player.. URL: http://www.gnugeneration.com/
Gtk See => <reply> $who, An image viewer based on the X-Window system and GTK+. URL: http://hotaru.clinuxworld.com/gtksee/
Gtk Undo Library => <reply> $who, A multilevel undo/redo facility for GTK.. URL: http://www-dse.doc.ic.ac.uk/~np2/software/undo.html
GTK xset => <reply> $who, GTK xset is a graphical frontend to xset(1), based on GTK+. URL: http://www.seindal.dk/rene/software/gxset/
GTK+ => <reply> $who, Library for creating graphicaluser interfaces. URL: http://www.gtk.org/

factpacks/Linux.fact  view on Meta::CPAN

gwsearch => <reply> $who, Gnome web search engine front-end. URL: http://gwsearch.netpedia.net/
Gwydion Dylan => <reply> $who, Compiler for Dylan, an dynamic, efficient, object-oriented language. URL: http://www.gwydiondylan.org/
Gwydion Dylan MySQL interface => <reply> $who, An interface to the mySQL RDMBS for Gwydion Dylan. URL: ftp://berlin.ccc.de/pub/gd/contributions/gd-mysql-0.1.tar.gz
gx10 => <reply> $who, X10 controller. URL: http://www.thestuff.net/bob/projects/gx10/
GXAnim => <reply> $who, GTK+ front end for Xanim movie player. URL: http://www.iag.net/~aleris/gxanim.html
GXdesktop => <reply> $who, . URL: http://devplanet.fastethernet.net/gxdesktop.html
GXedit => <reply> $who, Simple GPL'ed graphical editor using GTK. URL: http://users.linuxbox.com/~drow/GXedit/
GXF86vidmode => <reply> $who, Change your video mode when using a XFree86 X server. URL: http://itactics.com/~rgwood/GXF86vidmode/doc/
gxsnmp => <reply> $who, snmp managment frontend. URL: http://www.gxsnmp.org
gxTar => <reply> $who, Gnome/GTK+ front-end to tar/gzip/zip. URL: http://gxtar.netpedia.net/
Gyahtzee => <reply> $who, gnomified version of yahtzee. URL: http://www.geocities.com/CapeCanaveral/Lab/7731/gyahtzee.html

factpacks/Linux.fact  view on Meta::CPAN

Jooky => <reply> $who, MP3 controller with a foreground curses client, or background client/server.. URL: http://soomka.com/
Journal => <reply> $who, A text-based journal/diary.. URL: http://soapbox.fissure.org/journal/journal.html
journyx Timesheet => <reply> $who, Timesheet software via the web. URL: http://www.journyx.com/
Joy2Key => <reply> $who, Translate joystick movements into keyboard events (X and console). URL: http://www-unix.oit.umass.edu/~tetron/joy2key/
Joydesk => <reply> $who, Web-based Groupware. URL: http://joydesk.com/
jpilot => <reply> $who, Palm pilot desktop software for Linux. URL: http://jpilot.linuxbox.com/
jPOS => <reply> $who, 100% java ISO-8583/ANSI X9.2 implementation. URL: http://www.cs.com.uy/jPOS/
jProc => <reply> $who, CGI and a Java applet that present some of /proc data in an HTML interface.. URL: http://www.tansodesign.com/sasha/jProc/
jpub => <reply> $who, Integrated platform for intranets with OS like features. URL: http://www.jpub.de
JPython => <reply> $who, Java reimplementation of the Python programming language. URL: http://www.jpython.org/
JRun => <reply> $who, JSP Engine. URL: http://www.allaire.com/products/jrun/

factpacks/Linux.fact  view on Meta::CPAN

KAGENT => <reply> $who, A simple and extensible mail filter. URL: http://patriot.net/~kurt/kagent/
Kalendar => <reply> $who, Simple, easy to use calendar and to-do list manager. URL: http://www.linuxsupportline.com/~kalendar/index.html
Kalinux => <reply> $who, Online gaming system to find other gamers online.. URL: http://www.kali.net/
Kam => <reply> $who, . URL: http://wetap8.physik.uni-mainz.de/kam/
KanjiPad => <reply> $who, Look up Japanese characters through handwriting. URL: http://www.gtk.org/~otaylor/kanjipad/
Kapm => <reply> $who, An APM-BIOS monitor for the KDE desktop.. URL: http://bodnar42.dhs.org/kapm
Karchiveur => <reply> $who, A little archiver for KDE, like ark but more powerful. URL: http://www-mips.unice.fr/~biederd/eric/karchiveur_en.shtml
karma => <reply> $who, Oracle Database Monitor. URL: http://www.panix.com/~shull/karma/index.html
karpski => <reply> $who, Network sniffer/scanner with a GTK interface. URL: http://mojo.calyx.net/~btx/karpski.html
katchit => <reply> $who, KDE Game (strategy). URL: http://perso.club-internet.fr/p_george/katchit.html
Katy => <reply> $who, Text editor inspired by UltraEdit. URL: http://members.xoom.com/doxxx/katy.html

factpacks/Linux.fact  view on Meta::CPAN

KDat => <reply> $who, Tar based tape archiver. URL: http://sunsite.auc.dk/qweb/kdat/
kdb => <reply> $who, Built-in Kernel Debugger. URL: http://reality.sgi.com/slurn_engr/
kdbg => <reply> $who, A graphical KDE front end to the GDB debugger. URL: http://members.telecom.at/~johsixt/kdbg.html
kdc2tiff => <reply> $who, Convert from Kodak .kdc file to .tiff or .jpg. URL: http://www.bus.ualberta.ca/cstudhol/unix/software/kdc2tiff/kdc2tiff.tar.gz
kdcpi => <reply> $who, Program to download pictures from a Kodak DC200/DC210 Digital Camera. URL: http://www.berkhirt.com/HomerProductions/products/kdcpi/
KDE => <reply> $who, Powerful graphical desktop environment for Unix workstations.. URL: http://www.kde.org/
kde2wm => <reply> $who, Translate the KDE-style links into links in wmconfig-style. URL: http://www.linux-france.org/prj/kde2wm/index-en.html
kdem => <reply> $who, OpenGL Digital Elevation Model (DEM) viewer for the KDE.. URL: http://home.i1.net/~jamoyers/kdem/
kdepopup => <reply> $who, Send and receive messages via Samba. URL: http://www.franken.de/users/duffy1/rjakob/
KDEStudio => <reply> $who, IDE for Linux. URL: http://www.chat.ru/~kdestudio/index.html
kdesu => <reply> $who, A KDE front end to the UNIX su(1) command.. URL: http://www.stack.nl/~geertj/kde/kdesu.html

factpacks/Linux.fact  view on Meta::CPAN

Kingfig => <reply> $who, Config file configuration utility. URL: http://kingfig.netpedia.net/
Kingpin => <reply> $who, Kingpin Full Linux Client Port. URL: http://www.xatrix.com
kinst => <reply> $who, Application Installer for KDE. URL: http://members.xoom.com/stevedany/steffen/kinst_1_en.htm
Kinstall => <reply> $who, Program installator from source. URL: http://home.retribution.net/products/kinstall/index.php3
Kiosk => <reply> $who, A WWW Based MySQL database manager. URL: http://www.icaap.org/software/kiosk/
kIRC => <reply> $who, IRC client for Unix running X Windows and the KDE desktop environment. URL: http://x.unicom.net/kirc/
kISDN => <reply> $who, ISDN configuration and monitoring GUI. URL: http://www.millenniumx.de
KISDNLoad => <reply> $who, . URL: http://wetap8.physik.uni-mainz.de/sas/kisdnload/index.html
KIshido => <reply> $who, A KDE board game based on Ishido from an Atari LYNX. URL: http://www.ozemail.com.au/~tabbycat/
KisoCD => <reply> $who, KDE frontend for mkisofs and cdrecord. URL: http://www.uni-karlsruhe.de/~um12/
KiT => <reply> $who, . URL: http://kit.tpu.org/

factpacks/Linux.fact  view on Meta::CPAN

KLACK => <reply> $who, A small game with spheres. URL: http://www.student.informatik.tu-darmstadt.de/~kloss/klack/klack.html
KLandscape => <reply> $who, 3D rendered landscape generator. URL: http://members.xoom.com/nbasili/
klavg => <reply> $who, Small KDE applet showing load average graph on the panel.. URL: http://www.crocodile.org/software.html
kldap => <reply> $who, kldap is a LDAP client (browser) for the KDE. URL: http://www.mountpoint.ch/oliver/kldap/
kless => <reply> $who, Simple text viewer for the KDE Desktop. URL: http://snoopy.et-inf.fho-emden.de/~norbert/kless/
KLicq => <reply> $who, A patched version of Licq with support for the KDE desktop.. URL: http://www.cs.nmt.edu/~dquist/klicq/
KLILO => <reply> $who, GUI to configure the lilo bootmanager. URL: http://mitglied.tripod.de/AndreasHeck/klilo/
Klipper => <reply> $who, KDE Clipboard history. URL: ftp://ftp.ksirc.org/pub/klipper/
klm => <reply> $who, KDE frontend for the LM SENSORS linux kernel. URL: http://synergy.linuxbox.com/klm_home.html
klogic => <reply> $who, Digital circuit simulation in KDE GUI. URL: ftp://ftp.kde.org/pub/kde/unstable/apps/scientific/
kludge => <reply> $who, Document generator using a user-defined markup language.. URL: http://freespace.virgin.net/john.sutton/programming/kludge/

factpacks/Linux.fact  view on Meta::CPAN

KMol => <reply> $who, Chemical calculator for the KDE. URL: http://socrates.berkeley.edu/~tomi/kmol.html
KMonop => <reply> $who, The Monopoly(tm) boardgame for KDE.. URL: http://capsi.com/kmonop/
Kmp3 => <reply> $who, A KDE MP3 Player. URL: http://area51.mfh-iserlohn.de/kmp3/
Kmp3te => <reply> $who, MP3 tag editor. URL: http://perso.wanadoo.fr/smf/
kmpg => <reply> $who, A mp3 player for the K Desktop Environment.. URL: http://www.rhrk.uni-kl.de/~mvogt/linux/kmpg/index.html
kmplot => <reply> $who, Mathematical function plotter for the kde-desktop. URL: http://members.tripod.de/~kdm/
kmp_msql => <reply> $who, KMySql plugin to connect to mSQL databases. URL: http://www.xnot.com/kmysql/
kmp_mysql => <reply> $who, MySql plugin for KMySql. URL: http://www.xnot.com/kmysql/
kmp_psql => <reply> $who, KMySQL plugin providing access to PostGres databases. URL: http://www.xnot.com/kmysql/
kmp_sybase => <reply> $who, KMySql plugin for Sybase.. URL: http://www.xnot.com/kmysql
KMsgModem => <reply> $who, A tool to read the memory of an USR Message Modem. URL: http://www.tuhlmann.purespace.de/projects/kmsgmodem/

factpacks/Linux.fact  view on Meta::CPAN

Rasca => <reply> $who, Extended MP3 Player.. URL: http://www.penultima.org/~rasca/
Raven SSL Module => <reply> $who, RSA licensed 128-bit strong cryptography SSL module for the Apache web server.. URL: http://www.covalent.net/
raw2s => <reply> $who, This changes a binary file into GNU ASM. URL: http://www.dextrose.com/info/0309raw2s.htm
RawSnif => <reply> $who, Easily configurable Perl based network sniffer written using Net::RawIP modules.. URL: http://www.nfsg.org/downloads/rawsnif.html
Ray++ => <reply> $who, easily extensible C++ library for ray tracing. URL: http://www.mpa-garching.mpg.de/~martin/ray++
Raychase => <reply> $who, Random Recursive Raytracer, automagically creates cool images on desktop. URL: http://members.linuxstart.com/~flux/
rbison => <reply> $who, parser generator for ruby. URL: http://www.cs.umass.edu/~aseltine/rbison.html
rblcheck => <reply> $who, A lightweight anti-spam program. URL: http://www.xnet.com/~emarshal/rblcheck/
rblfilter => <reply> $who, Checks E-mail against RBL lists. URL: http://pobox.com/~b.candler/software/rblfilter/
RBoot => <reply> $who, A remote boot facility for PC operating systems.. URL: http://www.bs.ni.schule.de/support/rboot/
rc => <reply> $who, The shell from Plan 9 and 10th Edition Unix. URL: http://www.star.le.ac.uk/~tjg/rc/

factpacks/Linux.fact  view on Meta::CPAN

S3 Trio64 frame buffer driver for Linux/x86 => <reply> $who, Linux framebuffer driver for S3 Trio64-based cards on Intel. URL: http://www.hut.fi/~hmallat/linux/s3.html
Sabre Flight Plane Simulator => <reply> $who, Fligh simulator. URL: http://sabre.cobite.com/
SAC => <reply> $who, System Accounting Tool. URL: http://mama.indstate.edu/users/ice/sac/
safecat => <reply> $who, Copies stdin to a qmail-style maildir. URL: http://www.pobox.com/~lbudney/linux/software/safecat.html
SafeGossip => <reply> $who, SSL support for FTP, IMAP, POP, SMTP and telnet. URL: http://www.skygate.co.uk/safegossip/
Sailor Mars => <reply> $who, Anime desktopmate. URL: http://home.rmci.net/fiachra/
Saint => <reply> $who, Security Administrator's Integrated Network Tool. URL: http://www.wwdsi.com/saint/
sam => <reply> $who, Rob Pike's sam editor for Unix, using 9libs for Plan 9 support.. URL: ftp://netlib.bell-labs.com/netlib/research/9libs/sam-9libs.tar.gz
Samba => <reply> $who, Allows clients to access to a server's filespace and printers via SMB. URL: http://www.samba.org/
Sambaconfig => <reply> $who, Edit your smb.conf file with you web browser. URL: http://www.geocities.com/TimesSquare/Zone/5267/sambaconfig/
SambaLink/Q => <reply> $who, Qt version of smb.conf file editor. URL: http://www.spanware.com/linkq/sambalinkq.html

factpacks/Linux.fact  view on Meta::CPAN

w3mir => <reply> $who, HTTP copying and mirroring program. URL: http://www.math.uio.no/~janl/w3mir/
Wacom Driver for XFree86 => <reply> $who, Wacom driver for XFree86. URL: http://www.lepied.com/xfree86/
WAILI.xl: Wavelets with Integer Lifting (XL) => <reply> $who, C++ wavelet transform library targeted at large scale image processing. URL: http://www.cs.kuleuven.ac.be/~wavelets/
WAILI: Wavelets with Integer Lifting => <reply> $who, C++ wavelet transform library targeted at image processing. URL: http://www.cs.kuleuven.ac.be/~wavelets/
Wall => <reply> $who, Wallpaper Changer. URL: http://homepages.udayton.edu/~balserbl/wall.html
WallP => <reply> $who, Random desktop wallpaper changer. URL: http://mcss.mcmaster.ca/~rafal/
waspchat => <reply> $who, Human to computer chat prog. URL: http://www.pansydivision.free-online.co.uk/
watchdog => <reply> $who, A software watchdog. URL: http://metalab.unc.edu/pub/Linux/system/daemons/watchdog/
Watcher => <reply> $who, A unique Biff. URL: http://www.ccs.neu.edu/home/jared/watcher/
wavamplify => <reply> $who, Filter to alter the volume of WAVE (.wav) files.. URL: http://www.drmach.demon.co.uk/vashti/software/
WaveForge => <reply> $who, A Sound Forge Wave Editor Clone for Linux.. URL: http://tfm.profm.ro/

factpacks/Linux.fact  view on Meta::CPAN

wmfirew => <reply> $who, wmfirew is a windowmaker dock applet that draws fireworks. URL: http://www.reed.edu/~turnerd/programs/wmfirew-0.20.tar.gz
wmflame => <reply> $who, A windowmaker dock applet that draws flames.. URL: http://www.reed.edu/~turnerd/programs/wmflame-0.60.tar.gz
WMFmixer => <reply> $who, A mixer dock-app for WindowMaker/AfterStep/etc. URL: http://www.finik.net/software.html
wmfsm => <reply> $who, Monitors your filesystem usage.. URL: http://wmfsm.netpedia.net/
wmG => <reply> $who, A small, lightweight, GNOME-compliant window manager for X.. URL: http://www.geocities.com/SiliconValley/Screen/4079/
WMGlobe => <reply> $who, The whole Earth spinning on your desktop. URL: http://perso.linuxfr.org/jdumont/wmg/
wmgpager => <reply> $who, Simple desktop pager for the WindowMaker dock.. URL: http://www.fortyoz.org/software.html
wmGrabImage => <reply> $who, Displays a thumbnail version of an image from the www.. URL: http://nis-www.lanl.gov/~mgh/WindowMaker/DockApps.shtml
wmGrav => <reply> $who, Simulates several objects acting under gravity.. URL: http://www.gnu.demon.co.uk/wmgrav.html
wmH3O Headlines => <reply> $who, Pull news headlines to your Window Maker menu. URL: http://www.h3o.net/h3o4/back.php
WMHeadlines => <reply> $who, Put web-news headlines in your Window Maker root menu.. URL: http://rive.boxybutgood.com/WMHeadlines/
WMiFS => <reply> $who, . URL: http://windowmaker.mezaway.org/dockapps/wmifs.html

factpacks/Linux.fact  view on Meta::CPAN

WMMon+SMP => <reply> $who, WMMon modified to work on Dual-Processor systems. URL: http://www.ne.jp/asahi/linux/timecop/
wmMoonClock => <reply> $who, Displays the current phase and ephemeris of the Moon.. URL: http://nis-www.lanl.gov/~mgh/WindowMaker/DockApps.shtml
wmmp3 => <reply> $who, mpg123 front end for Window Maker. URL: http://www.dotfiles.com/software/wmmp3/
WMmpg123 => <reply> $who, Menu generator for WindowMaker and mpg123. URL: http://hub.org/~jeff/
wmMuezzin => <reply> $who, Computes time and direction for a prayer to Mecca. URL: http://www.worldnet.net/~labayle/
wmnet => <reply> $who, Provides network statistics for the Window Maker desktop. URL: http://www.digitalkaos.net/linux/wmnet/
WMNetMon => <reply> $who, A WindowMaker dockable network host monitoring tool using ICMP pings.. URL: http://neubula.utad.pt/~alvieboy/new/wmaker.html
wmphoto => <reply> $who, Put your favorites pictures on your desktop. URL: http://www.dcc.uchile.cl/~amartoq/wmphoto
wmpinboard => <reply> $who, Window Maker pinboard dock-app. URL: http://www.tu-ilmenau.de/~gomar/stuff/wmpinboard/
WMpop => <reply> $who, WidowMaker DockApp for monitoring a POP3 mailbox. URL: http://www.multimania.com/zubro/wmpop.html
WMPop3 => <reply> $who, Window Maker Dockable App. URL: http://www.cs.mun.ca/~scotth/
WMPPP => <reply> $who, WindowMaker frontend to PPPD. URL: http://windowmaker.mezaway.org/dockapps/wmppp.html
WMProxyPer => <reply> $who, Dockapp that displays RC5 Personal Proxy logfiles. URL: http://home.student.utwente.nl/w.k.havinga/wmproxyper/

factpacks/Linux.fact  view on Meta::CPAN

XGalaga => <reply> $who, . URL: http://www.rumsey.org/xgal.html
xgate => <reply> $who, Client-initiated X11 relay, for displaying X11 through firewalls.. URL: http://verdict.uthscsa.edu/gram/xgate/index.html
Xgfe => <reply> $who, X11 GUI front end to Gnuplot. URL: http://www.bl.physik.uni-muenchen.de/rechner/grafik/xgfe/xgfe.html
XGGI => <reply> $who, X server which uses LibGGI to do hardware independent graphics and input. URL: http://www.stacken.kth.se/~mackan/ggi/xggi/
XgIRC => <reply> $who, Internet Relay Chat client for Linux / X Windows. URL: http://www.inforoute.capway.com/pieraut/
XGlobe => <reply> $who, A toy that displays a globe on your X desktop. URL: http://wwwrzstud.rz.uni-karlsruhe.de/~uddn/xglobe/
xgrk => <reply> $who, Support for GREEK keyboard in XWindows. URL: http://www.softlab.ece.ntua.gr/~sivann/xgrk/
Xhack => <reply> $who, . URL: http://www.chronozon.demon.co.uk
xhangglider => <reply> $who, X-based program that makes hanggliders fly in the background of your screen.. URL: http://plaza.harmonix.ne.jp/~redstar/xhang-en.html
xhdbench => <reply> $who, Qt-based X-program for testing the output speed of severaldevices. URL: ftp://metalab.unc.edu/pub/Linux/system/benchmark/
XHourGas => <reply> $who, An alarm clock that exhibits what can happen with an improper diet. URL: http://qu.dhs.org/xhourgas/xhourgas.html

factpacks/Linux.fact  view on Meta::CPAN

xls2xml => <reply> $who, A free converter from Microsoft Excel to XML, and a free C library. URL: http://arturo.directmail.org/filtersweb/
Xmahjongg => <reply> $who, Colorful X solitaire Mah Jongg game. URL: http://www.lcdf.org/xmahjongg/
XMangle => <reply> $who, X frontend for Mangle. URL: http://neptune.spaceports.com/~rvb/xmangle/
Xmap => <reply> $who, . URL: http://www.mayko.com/xmap/
Xmcd => <reply> $who, Full-featured CD Player utility package. URL: http://metalab.unc.edu/tkan/xmcd/
xmemo => <reply> $who, X Windows desktop memo.. URL: http://www.bea.hi-ho.ne.jp/abetakao/
Xmerge => <reply> $who, Xmerge merges two windows, creating a new window, with two. URL: http://xmerge.mini.dhs.org/
xmixer => <reply> $who, Soundcard mixer program for Linux. URL: http://home.pages.de/~rasca/xmixer/
XML Parser for Java => <reply> $who, XML Parser & Generator for Java. URL: http://www.alphaworks.ibm.com/
XML Security Suite => <reply> $who, The XML Security Suite provides security features such as digital signatures.. URL: http://www.alphaworks.ibm.com/
XML-RPC => <reply> $who, A remote protocol that uses XML and HTTP to connect various scripting platforms.. URL: http://www.xmlrpc.com/

factpacks/Linux.fact  view on Meta::CPAN

XSIDPLAY => <reply> $who, C64 music player and SID sound chip emulator. URL: http://www.geocities.com/SiliconValley/Lakes/5147/
Xskat => <reply> $who, Skatordnung card game, playable against humans or the computer. URL: http://www.gulu.net/xskat/
xskijump => <reply> $who, Skijumping game for X. URL: http://www.vtoy.fi/~smkl/
xSMBrowser => <reply> $who, Tcl/Tk Samba GUI that emulates Network Neighborhood. URL: http://www.public.iastate.edu/~chadspen/
XSnake => <reply> $who, An small Snake clone for X11. URL: http://www.ctv.es/USERS/sromero/prog/xsnake.html
xsnow => <reply> $who, This toy makes snow fall on your windows and desktop.. URL: http://www.euronet.nl/~rja/Xsnow/
Xsoundtrack => <reply> $who, A soundtracker that deals with XM modules (runs under X11, requires only Xlib). URL: http://sed.free.fr/xsound/index.html
xspeakfree => <reply> $who, TCL/TK frontend for Speak Freely. URL: http://www.spearce.org/projects/xspeakfree/
xstep => <reply> $who, Application toolkit providing the look-and-feel of NeXTSTEP applications. URL: http://www.bsi.com.br/~marcelos/
xstepfiles => <reply> $who, Simple file manager for X. URL: http://www.xando.com.br/cassio/
XSwallow => <reply> $who, . URL: http://www.csn.ul.ie/~caolan/docs/Xswallow.html

factpacks/Linux.fact  view on Meta::CPAN

dupmerge => <reply> $who, Dupmerge reads a list of files from standard input (eg., as produced by "find . URL: http://people.qualcomm.com/karn/code/dupmerge/dupmerge.c
efx => <reply> $who, EFX is a standalone program which will load XMMS effect plugins for use with Esound. URL: http://code.linuxcore.com/download.php3?id=efx&type=tgz
MP3 Player Upload and Download utilities => <reply> $who, The MP3 Player Upload and Download utilities is a collection of programs which provide support for portable MP3 players such the Diamond Rio and the Saehan MpMan under operating systems other ...
cpp1 => <reply> $who, Cpp1 is an experimental chess program written in C++. URL: http://www.keetweej.demon.nl/cpp1.tgz
rdial => <reply> $who, rdial is an extremely simple RPC server for Linux. URL: http://colorfullife.com/~manfreds/rdial/rdial.tar.gz
dclock => <reply> $who, dclock is an X11 desktop clock with a realistic LED-style display of the current time. URL: http://bach.ece.jhu.edu/~tim/programs/archive/dclock.tar.gz
gatO => <reply> $who, gatO is an interface to the UNIX command 'at'.. URL: http://www.arquired.es/users/aldelgado/proy/gato/gato-0.6.2.tgz
g3DSE => <reply> $who, g3DSE is a little tool to set the 3D Stereo Enhancement of your SoundBlaster card (if supported).. URL: http://studwww.rug.ac.be/~fcorneli/g3dse/download/g3dse-0.1.tar.gz
CAFire => <reply> $who, CAFire is a small toy that displays a burning trace after the mouse pointer in X. URL: http://home.zcu.cz/~cimrman3/cafire-latest.tgz
GPPP-Dialer => <reply> $who, GPPP-Dialer runs a connection script and shows the contents of a PPP log, and can run other programs after connecting. URL: http://www.pobox.com/~epg/software/gppp-dialer-0.1.0.tar.gz
Perlmclient => <reply> $who, Perlmclient is a Masqdialler client written in Perl. URL: http://www.vicnet.net.au/~jeremyl/perlmclient/perlmclient-0.2.tar.gz
Address Book => <reply> $who, Address Book is an extremely simple address database with search, edit, insert, drop, etc.. URL: http://ps-ax.com/address/
GTool => <reply> $who, GTool is a program to draw and analyze graphs (as in Graph Theory, not data analysis).. URL: http://erwin.math.lakeheadu.ca/gtool/index.php3?topic=download
gbgrand => <reply> $who, gbgrand is a small shell script that uses a list of directories to select a random background for the GNOME desktop. URL: http://www.chameleon.net/daf/gbgrand.tgz
The Bookexchange => <reply> $who, Bookexchange is a book exchange for the Web, allowing users to search, add, and edit books. URL: http://cs.uiowa.edu/~bdeitte/bookexchange.zip
WMFstatus => <reply> $who, WMFstatus is a general purpose 8x5 LCD screen dockapp for WindowMaker and other managers. URL: http://www.finik.net/files/wmfstatus-0.1.tar.gz
Metapixel => <reply> $who, Metapixel is a program for generating photomosaics. URL: http://www.complang.tuwien.ac.at/~schani/metapixel/metapixel-0.1.tar.gz
oracledump => <reply> $who, oracledump is a command-line tool that dumps Oracle data and table setup information as SQL. URL: http://www.bennyvision.com/~ddkilzer/projects/oracledump/
GNU Standard C++ Library v3 => <reply> $who, The Standard C++ Library v3, or libstc++-2.90.x, is an ongoing project to implement the ISO 14882 Standard C++ library as described in chapters 17 through 27 and annex D, as a drop-in replacement for the c...

 view all matches for this distribution


Android-ElectricSheep-Automator

 view release on metacpan or  search on metacpan

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

EODC

# NOTE: by default, it assumes that no device is connected
# and so it does not enquire about screen size etc on startup
# In order to tell it that a device (just one)
# is connected to the desktop and that we should connect to
# it, 
#   use param 'device-is-connected' => 1
# if there are more than one devices and you want to connect to
# one of them, then 
#  use param 'device-serial' => <serial-of-device-to-connect>

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN


	return $self;
}

# This signals our object that there is at least one device connected
# to the desktop which ADB can access and so can we.
# set the device by specifying one of
#  'serial' : the device's serial
#  'device-object' : a Android::ADB::Device object
#     as returned by any item of $self->adb->devices()
# However, if there is ONLY ONE device connected to the desktop, then
# you do not need to specify a device, use this method without arguments
#
# It returns the device object (Android::ADB::Device) on success
# or undef on failure
sub connect_device {

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	} elsif( exists($params->{'device-object'}) && defined($m=$params->{'device-object'})
	      && (ref($params->{'device-object'})eq'Android::ElectricSheep::Automator::ADB::Device')
	){
		$what_device = $m
	} else {
		# no params means we assume there is exactly 1 device connected to the desktop
		my $devs = $self->devices();
		if( scalar(@$devs) == 1 ){
			$what_device = $devs->[0];
		} else { $log->error("${whoami} (via $parent), line ".__LINE__." : error, expecting exactly one device connected to the desktop but found ".scalar(@$devs)." instead. In the case of more than one devices connected to the desktop then specify which o...
	}

	# this can die
	my $res = eval { $self->adb->set_device($what_device) };
	if( $@ || ! defined $res ){ $log->error(device_toString($what_device)."\n${whoami} (via $parent), line ".__LINE__." : error, call to ".'adb->set_device()'." has failed for above device."); return undef }

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $whoami = ( caller(0) )[3];

	my $log = $self->log();
	my $verbosity = $self->verbosity;

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'device_connected()'." before calling this."); return undef }

	my $filename = exists($params->{'filename'}) && defined($params->{'filename'}) ? $params->{'filename'} : undef;

	my $FH;
	if( ! defined $filename ){

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return 1 }

	my $w = $self->device_properties->get('w');
	my $h = $self->device_properties->get('h');

	my @fullspec;

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	# optionally caller can specify a list of app names to enquire
	# either as exact package name (string), a Regexp object (qr//)
	# an ARRAY of package names or a HASH of package names:
	my $packages = exists($params->{'packages'}) && defined($params->{'packages'}) ? $params->{'packages'} : undef;

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	my ($package);
	if( ! exists($params->{'package'}) || ! defined($package=$params->{'package'}) ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, input parameter 'package' is required."); return undef }
	if( (ref($package)ne'') && (ref($package)ne'Regexp') ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, the type of input parameter 'package' must be a scalar string (the package name) or a Regexp object (compiled regex via ".'qr//'...

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	my ($package);
	if( ! exists($params->{'package'}) || ! defined($package=$params->{'package'}) ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, input parameter 'package' is required."); return undef }
	if( (ref($package)ne'') && (ref($package)ne'Regexp') ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, the type of input parameter 'package' must be a scalar string (the package name) or a Regexp object (compiled regex via ".'qr//'...

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	if( ! exists($params->{'name'}) || ! defined($params->{'name'}) ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, missing parameter 'name' is required, it must be the exact app name, if you do not have the exact name then use 'pgre...

	my @cmd = ('pidof', $params->{'name'});
	if( $verbosity > 0 ){ $log->info("${whoami} (via $parent), line ".__LINE__." : sending command to adb: @cmd") }

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	if( ! exists($params->{'name'}) || ! defined($params->{'name'}) ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, missing parameter 'name' is required, it must be the exact app name, if you do not have the exact name then use 'pgre...

	my $dont_show_command_name = (exists($params->{'dont-show-command-name'}) && defined($params->{'dont-show-command-name'}) && ($params->{'dont-show-command-name'}>0)) ? 1 : 0;
	# -f will search the full command name

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	my (@position, $m);
	if( exists($params->{'position'}) && defined($m=$params->{'position'}) ){ 
		@position = ($m->[0], $m->[1]);
	} elsif( exists($params->{'bounds'}) && defined($m=$params->{'bounds'}) ){

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	my (@position, $m);
	if( exists($params->{'position'}) && defined($m=$params->{'position'}) ){ 
		@position = ($m->[0], $m->[1]);
	} elsif( exists($params->{'bounds'}) && defined($m=$params->{'bounds'}) ){

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	my (@position, $m);
	if( exists($params->{'position'}) && defined($m=$params->{'position'}) ){ 
		@position = ($m->[0], $m->[1]);
	} elsif( exists($params->{'bounds'}) && defined($m=$params->{'bounds'}) ){

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $whoami = ( caller(0) )[3];

	my $log = $self->log();
	my $verbosity = $self->verbosity;

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'device_connected()'." before calling this."); return undef }

	my $filename = exists($params->{'filename'}) && defined($params->{'filename'}) ? $params->{'filename'} : undef;
	my $extrafields = exists($params->{'extra-fields'}) && defined($params->{'extra-fields'}) ? $params->{'extra-fields'} : [];

	my ($FH, $tmpfilename) = tempfile(CLEANUP=>$self->cleanup);

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	for ('latitude', 'longitude'){
		if( ! exists $params->{$_} ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, input parameter '$_' was not specified (as [x,y])."); return 1 }
	}

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	my @cmd = ('dumpsys', 'location');
	if( $verbosity > 0 ){ $log->info("${whoami} (via $parent), line ".__LINE__." : sending command to adb: @cmd") }
	my $res = $self->adb->shell(@cmd);
	if( ! defined $res ){ $log->error(join(" ", @cmd)."\n${whoami} (via $parent), line ".__LINE__." : error, above shell command has failed, got undefined result, most likely shell command did not run at all, this should not be happening."); return 1 }

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	my @cmd = ('dumpsys', 'SurfaceFlinger', '--display-id');
	if( $verbosity > 0 ){ $log->info("${whoami} (via $parent), line ".__LINE__." : sending command to adb: @cmd") }
	my $res = $self->adb->shell(@cmd);
	if( ! defined $res ){ $log->error(join(" ", @cmd)."\n${whoami} (via $parent), line ".__LINE__." : error, above shell command has failed, got undefined result, most likely shell command did not run at all, this should not be happening."); return 1 }

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $whoami = ( caller(0) )[3];

	my $log = $self->log();
	my $verbosity = $self->verbosity;

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'device_connected()'." before calling this."); return undef }

	my $filename = exists($params->{'filename'}) && defined($params->{'filename'}) ? $params->{'filename'} : undef;

	my $FH;
	if( ! defined $filename ){

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $whoami = ( caller(0) )[3];

	my $log = $self->log();
	my $verbosity = $self->verbosity;

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'device_connected()'." before calling this."); return 1 }

	my $filename = exists($params->{'filename'}) && defined($params->{'filename'}) ? $params->{'filename'} : undef;
	if( ! defined $filename ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, input parameter 'filename' is not specified, an output filename must be specified."); return 1 }

	my @options;

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	my @cmd = qw/input keyevent KEYCODE_WAKEUP/;
	if( $verbosity > 0 ){ $log->info("${whoami} (via $parent), line ".__LINE__." : sending command to adb: @cmd") }
	my $res = $self->adb->shell(@cmd);
	if( ! defined $res ){ $log->error(join(" ", @cmd)."\n${whoami} (via $parent), line ".__LINE__." : error, above shell command has failed, got undefined result, most likely shell command did not run at all, this should not be happening."); return unde...

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	$self->wake_up();

	my @cmd = qw/am start -a android.intent.action.MAIN -c android.intent.category.HOME/;
	if( $verbosity > 0 ){ $log->info("${whoami} (via $parent), line ".__LINE__." : sending command to adb: @cmd") }

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	if( $self->swipe({'direction' => 'right', dt => 100}) ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, call to ".'swipe()'." has failed."); return undef }

	return 0; # success
}

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	if( $self->swipe({'direction' => 'left', dt => 100}) ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, call to ".'swipe()'." has failed."); return undef }

	return 0; # success
}

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	my @cmd = ('input', 'keyevent', 'KEYCODE_BACK');
	if( $verbosity > 0 ){ $log->info("${whoami} (via $parent), line ".__LINE__." : sending command to adb: @cmd") }
	my $res = $self->adb->shell(@cmd);
	if( ! defined $res ){ $log->error(join(" ", @cmd)."\n${whoami} (via $parent), line ".__LINE__." : error, above shell command has failed, got undefined result, most likely shell command did not run at all, this should not be happening."); return unde...

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	my @cmd = ('input', 'keyevent', 'KEYCODE_HOME');
	if( $verbosity > 0 ){ $log->info("${whoami} (via $parent), line ".__LINE__." : sending command to adb: @cmd") }
	my $res = $self->adb->shell(@cmd);
	if( ! defined $res ){ $log->error(join(" ", @cmd)."\n${whoami} (via $parent), line ".__LINE__." : error, above shell command has failed, got undefined result, most likely shell command did not run at all, this should not be happening."); return unde...

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	my @cmd = ('input', 'keyevent', 'KEYCODE_APP_SWITCH');
	if( $verbosity > 0 ){ $log->info("${whoami} (via $parent), line ".__LINE__." : sending command to adb: @cmd") }
	my $res = $self->adb->shell(@cmd);
	if( ! defined $res ){ $log->error(join(" ", @cmd)."\n${whoami} (via $parent), line ".__LINE__." : error, above shell command has failed, got undefined result, most likely shell command did not run at all, this should not be happening."); return unde...

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	# go to home, swipe up and all apps will be revealed
	# then dump the UI
	# then swipe down
	if( $self->home_screen() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, call to ".'home_screen()'." has failed."); return undef }

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

	my $parent = ( caller(1) )[3] || "N/A";
	my $whoami = ( caller(0) )[3];
	my $log = $self->log();
	my $verbosity = $self->verbosity();

	if( ! $self->is_device_connected() ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, you need to connect a device to the desktop and ALSO explicitly call ".'connect_device()'." before calling this."); return undef }

	my $apps = $self->apps_roundabout_way();
	if( (! defined($apps))
	 || (exists($params->{'force-reload-apps-list'}) && defined($params->{'force-reload-apps-list'}) && ($params->{'force-reload-apps-list'}>0))
	){

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

			path => $pathtoadb,
			verbosity => $self->verbosity
		)) ){ $log->error("${whoami} (via $parent), line ".__LINE__." : error, call to ".'Android::ElectricSheep::Automator::ADB->new()'." has failed (path to executable was specified as '$pathtoadb')."); return 1; }
	}

	# does caller have a device connected to the desktop and wants us to
	# target it?
	# if just one device, we don't need serial etc:
	my $device_params;
	if( exists($params->{'device-is-connected'}) && defined($params->{'device-is-connected'}) && ($params->{'device-is-connected'}>0) ){
		# just one device, we don't need serial of the device

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN


=encoding utf8

=head1 NAME

Android::ElectricSheep::Automator - Do Androids Dream of Electric Sheep? Smartphone control from your desktop.

=head1 VERSION

Version 0.06

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN


The present package fascilitates the control
of a USB-debugging-enabled
Android device, e.g. a real smartphone,
or an emulated (virtual) Android device,
from your desktop computer using Perl.
It's basically a thickishly-thin wrapper
to the omnipotent Android Debug Bridge (adb)
program.

B<Note that absolutely nothing is

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

      'verbosity' => 1,
      # we already have a device connected and ready to control
      'device-is-connected' => 1,
    });

    # find the devices connected to desktop and set one.
    my @devices = $mother->adb->devices;
    $mother->connect_device({'serial' => $devices->[0]->serial})
	or die;
    # no device needs to be specified if just one:
    $mother->connect_device() if scalar(@devices)==0;

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

the default path will not work for you.

=item B<C<adb-path-to-executable>>

optionally specify the path to the C<adb> executable in
your desktop system. This will override the setting
C< 'adb'-E<gt>'path-to-executable' > in the configuration,
if it was provided. Use this option if you are not
providing any configuration and so the default configuration
will be used. But it will most likely fail because of this
path not being correct for your system. So, if you are going

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

After instantiation, you can use the
method L</connect_device($params)> and
L</disconnect_device()> for conveying
this information to the module.
Also note that if there are
more than one devices connected to the desktop, make sure
you specify which one with the C<device> parameter.
Default value is 0.

=item B<C<logger>>

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

=over 1

=item devices()

Lists all Android devices connected to your
desktop and returns these as an ARRAY_REF which can be empty.

It returns C<undef> on failure.

=item connect_device($params)

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

object on success or C<undef> on failure.

=item connect_device()

It signals to our object that there is now
a device connected to the desktop and its
enquiry and subsequent control can commence.
If this is not called and neither C<device-is-connected =E<gt> 1>
is specified as a parameter to the constructor, then
the functionality will be limited and access
to functions like C<swipe()>, C<open_app()>, etc.
will be blocked until the caller signals that
a device is now connected to the desktop.

Using L</connect_device($params)> to specify which device
to target in the case of multiple devices
connected to the desktop will also call this
method.

This method will try to enquire the connected device
about some of its properties, like screen size,
resolution, orientation, serial number etc.

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN


=item disconnect_device()

Signals to our object that it should consider
that there is currently no device connected to
the desktop (irrespective of that is true or not)
which will block access to L</swipe()>, L</open_app()>, etc.

=item device_properties()

It returns the currently connected device properties

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

functions which require interaction with a connected
device.

The I<live tests> under C<xt/live>, initiated with
C<make livetest>, require
an Android device connected to your desktop on which
you installed this package and on which you are doing the testing.
This suffices to be an emulator. It can also be a real Android
phone but testing
with your smartphone is not a good idea, please do not do this,
unless it is some phone which you do not store important data.

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

=head2 Android Studio

This is not a prerequisite but it is
highly recommended to install
(from L<https://developer.android.com/studio>)
on your desktop computer because it contains
all the executables you will need,
saved in a well documented file system hierarchy,
which can then be accessed from the command line.

Additionally, Android Studio offers possibly the
easiest way to create Android Virtual Devices (AVD) which emulate
an Android phone of various specifications.
I mention this because one can install apps
on an AVD and control them from your desktop
as long as you are able to receive sms verification
codes from a real phone. This is great for
experimenting without pluggin in your real
smartphone on your desktop.

The bottom line is that by installing Android Studio,
you have all the executables you need for running things
from the command line and, additionally, you have
the easiest way for creating Android

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

=head2 ADB

Android Debug Bridge (ADB) is the program
which communicates with your smartphone or
an Android Virtual Device from
your desktop (Linux, osx and the unnamed C<0$>).

If you do not want to install Android Studio, the C<adb> executable
is included in the package called
"Android SDK Platform Tools" available from
the Android official site, here:

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN


B<Do not leave home with Developer Mode ON>.

Once you have enabled "USB Debugging", you have
two options for making your device visible to
your desktop and, consequently, to ADB and to this module:

=over 4

=item connect your android device via a USB cable
to your desktop computer. I am not sure if you also
need to tap on the USB charging options and allow
"Transfer Files".

=item connect your device to the same WIFI network
as your desktop computer. Then follow instructions
from, e.g., here L<https://developer.android.com>.
This requires a newer Android version.

=back

lib/Android/ElectricSheep/Automator.pm  view on Meta::CPAN

You can install apps on the the virtual device which
you can register by supplying your real smartphone
number.

List all virtual devices currently available
in your desktop computer,  with C<emulator -list-avds>
which outputs something like:

    Pixel_2_API_27_x86_
    Pixel_2_API_30_x86_

Start a virtual device with C<emulator -avd Pixel_2_API_30_x86_>

And hey, you have an android phone running on your
desktop in its own space, able to access the network
but not the telephone network (no SIM card).

It is possible to create a virtual device
from the command line.
But perhaps it is easier if you download Android Studio

 view all matches for this distribution


AnyEvent-BitTorrent

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

t/000_tests/002_basic.t
t/000_tests/004_global.t
t/000_tests/005_local.t
t/800_utils/Tracker.pm
t/800_utils/Tracker/HTTP.pm
t/900_data/kubuntu-active-13.04-desktop-i386.iso.torrent
META.yml
MANIFEST

 view all matches for this distribution


AnyEvent-MPV

 view release on metacpan or  search on metacpan

MPV.pm  view on Meta::CPAN


   --audio-client-name=doomfrontend
   --osd-on-seek=msg-bar --osd-bar-align-y=-0.85 --osd-bar-w=95
   --sub-auto=exact --audio-file-auto=exact

Since it runs on a TV without a desktop environemnt, it tries to keep complications such as dbus
away and the screensaver happy:

   # prevent xscreensaver from doing something stupid, such as starting dbus
   $ENV{DBUS_SESSION_BUS_ADDRESS} = "/"; # prevent dbus autostart for sure
   $ENV{XDG_CURRENT_DESKTOP} = "generic";

 view all matches for this distribution


AnyEvent-MSN

 view release on metacpan or  search on metacpan

examples/client.pl  view on Meta::CPAN

            }
    }
);
$cv->wait;

# SOAP stuff: http://telepathy.freedesktop.org/wiki/Pymsn/MSNP/ContactListActions
# http://imfreedom.org/wiki/MSN
# http://msnpiki.msnfanatic.com/index.php/MSNP13:Contact_Membership

=pod

 view all matches for this distribution


AnyEvent-SlackBot

 view release on metacpan or  search on metacpan

lib/AnyEvent/SlackBot.pm  view on Meta::CPAN


  $|=1;
  my $sb=AnyEvent::SlackBot->new(
    on_event=>sub {
      my ($sb,$json,$conn_data)=@_;
      if(exists $json->{type} and $json->{type} eq 'desktop_notification') {
        my $ref={
          type=>'message',
          bot_id=>$sb->bot_id,
          channel=>$json->{channel},
          text=>'this is a test',

 view all matches for this distribution


AnyEvent

 view release on metacpan or  search on metacpan

lib/AnyEvent/TLS.pm  view on Meta::CPAN

   skip512 => "MEYCQQD1Kv884bEpQBgRjXyEpwpy1obEAxnIByl6ypUM2Zafq9AKUJsCRtMIPWak|XUGfnHy9iUsiGSa6q6Jew1XpKgVfAgEC",
   skip1024 => "MIGHAoGBAPSI/VhOSdvNILSd5JEHNmszbDgNRR0PfIizHHxbLY7288kjwEPwpVsY|jY67VYy4XTjTNP18F1dDox0YbN4zISy1Kv884bEpQBgRjXyEpwpy1obEAxnIByl6|ypUM2Zafq9AKUJsCRtMIPWakXUGfnHy9iUsiGSa6q6Jew1XpL3jHAgEC",
   skip2048 => "MIIBCAKCAQEA9kJXtwh/CBdyorrWqULzBej5UxE5T7bxbrlLOCDaAadWoxTpj0BV|89AHxstDqZSt90xkhkn4DIO9ZekX1KHTUPj1WV/cdlJPPT2N286Z4VeSWc39uK50|T8X8dryDxUcwYc58yWb/Ffm7/ZFexwGq01uejaClcjrUGvC/RgBYK+X0iP1YTknb|zSC0neSRBzZrM2w4DUUdD3yIsxx8Wy2O9vPJI8B...
   skip4096 => "MIICCAKCAgEA+hRyUsFN4VpJ1O8JLcCo/VWr19k3BCgJ4uk+d+KhehjdRqNDNyOQ|l/MOyQNQfWXPeGKmOmIig6Ev/nm6Nf9Z2B1h3R4hExf+zTiHnvVPeRBhjdQi81rt|Xeoh6TNrSBIKIHfUJWBh3va0TxxjQIs6IZOLeVNRLMqzeylWqMf49HsIXqbcokUS|Vt1BkvLdW48j8PPv5DsKRN3tloTxqDJGo9tKvj1...

   # generated on a linux desktop with openssl using /dev/urandom - entropy_avail was >= 3600 each time
   # the 8192 bit key took 25 hours to generate :/
   schmorp1024 => "MIGHAoGBAN+GjqAhNxLesSuGfDzYe6HdexXtHuxe85umshfPHfnmLSkGWl/FE27+|v+50mwY5XaNnCmo1VvGju4iTKxWoZTGgslUSc8KX197XWAXIpab8ESyg442if9Kr|vSOuu0fopwvvTOgHK8mkEWI4joU5G4/MQy+pnC5NIEVBP4HtGiTrAgEC",
   schmorp1539 => "MIHHAoHBByJzpVGUsXysX8w/+uuXRUCL9exhAixoHkaJU5lf4noJUtp9F0yr/5rb|hF8M9mSZJ+RlPyB+Zt37GPp1WQDO1+/2yZJX9kHE3+h5JCRoR8PKc2G+ts9jhM7r|CnTQ0z0b6s12Pusf+UhQPwLust4JAYE/LPuTK8yFiVx5L2a+aZhGMVlYN/12SEtY|jRl3lGXdZj9g8E2PzTQbA9CGy5dGIvz/ENTz...
   schmorp2048 => "MIIBCAKCAQEAhR5Fn9h3Tgnc+q4o3CMkZtre3lLUyDT+1bf3aiVOt22JdDQndZLc|FeKz8AqliB3UIgNExc6oDtuG4znKPgklfOnHv/a9tl1AYQbV+QFM/E0jYl6oG8tF|Epgxezt1GCivvtu64ql0s213wr64QffNMt3hva8lNqK1PXfqp13PzzLzAVsfghrv|fMAX7/bYm1T5fAJdcah6FeZkKof+mqbs8HtR...
   schmorp4096 => "MIICCAKCAgEA5WwA5lQg09YRYqc/JILCd2AfBmYBkF19wmCEJB8G3JhTxv8EGvYk|xyP2ecKVUvHTG8Xw/qpW8nRqzPIyV8QRf6YFYSf33Qnx2xYhcnqOumU3nfC0SNOL|/w2q1BA9BbHtW4574P+6hOQx9ftRtbtZ2HPKBMRcAKGjpYZiKopv0+UAM4NpEC2p|bfajp7pyVLeb/Aqm/oWP3L63wPlY1SDp+XRz...

 view all matches for this distribution


Apache-ASP

 view release on metacpan or  search on metacpan

ASP.pm  view on Meta::CPAN

printenv.html, accessed as http://127.0.0.1/asp/printenv.html
which, if working, will print out your environment variables.

=head2 WinME / 98 / 95 flock() workaround

For those on desktop Windows operation systems, Apache::ASP v2.25 and
later needs a special work around for the lack of flock() support
on these systems.  Please add this to your Apache httpd.conf to
fix this problem after mod_perl is installed:

  <Perl>

 view all matches for this distribution


Apache2-ApacheMobileFilter

 view release on metacpan or  search on metacpan

lib/Apache2/AMF51DegreesFilter.pm  view on Meta::CPAN

            $f->pnotes("is_tablet" => lc($ArrayCapFound{'IsTablet'}));
            $f->subprocess_env("AMF_DEVICE_IS_TABLET" => lc($ArrayCapFound{'IsTablet'}));
        }
        if ($amfFull ne "") {
            $f->subprocess_env("AMF_FORCE_TO_DESKTOP" => 'true');
            $f->pnotes("amf_force_to_desktop" => 'true');
        }
	$f->pnotes("amf_device_ismobile" => lc($ArrayCapFound{'IsMobile'}));      
	$f->subprocess_env("AMF_DEVICE_IS_MOBILE" => lc($ArrayCapFound{'IsMobile'}));
	$f->subprocess_env("AMF_VER" => $VERSION);
	$f->subprocess_env("AMF_DEGREES51_VER" => $DegreesVersion);

 view all matches for this distribution


Apache2-MimeInfo

 view release on metacpan or  search on metacpan

lib/Apache2/MimeInfo.pm  view on Meta::CPAN

    PerlOutputFilterHandler Apache2::MimeInfo

=head1 DESCRIPTION

This module bolts L<File::MimeInfo::Magic> and the
L<shared-mime-info|http://freedesktop.org/wiki/Software/shared-mime-info/>
database to Apache 2.x. Its purpose is to clean up C<Content-Type>
headers on responses that come from potentially misconfigured or
untrustworthy sources (e.g. a proxy).

Insert L<Apache2::MimeInfo> as an output filter as described in the

lib/Apache2/MimeInfo.pm  view on Meta::CPAN

the C<Content-Type> header with C<application/zip>. It will likewise
replace the C<Content-Type> header if it is missing altogether, or if
it asserts a type that is inconsitent with the one which was detected.

If you aren't familiar with
L<shared-mime-info|http://freedesktop.org/wiki/Software/shared-mime-info/>,
it's an XML database containing useful information about the mappings
of, and relations between MIME types. This means that you can hack new
type signatures into it, just as you can with
L<file|http://darwinsys.com/file/>.

 view all matches for this distribution


App-BCSSH

 view release on metacpan or  search on metacpan

lib/App/BCSSH/Handler/scp.pm  view on Meta::CPAN


has destination => (
    is => 'ro',
    default => sub {
        -d && return $_
            for ("$ENV{HOME}/Desktop", "$ENV{HOME}/desktop", $ENV{HOME});
    },
);
has scp => (
    is => 'ro',
    default => sub { 'scp' },

 view all matches for this distribution


App-BCVI-NotifyClient

 view release on metacpan or  search on metacpan

lib/App/BCVI/NotifyClient.pm  view on Meta::CPAN


__END__

=head1 NAME

App::BCVI::NotifyClient - Send a notification message back to the user's desktop

=head1 SYNOPSIS

Send a message to the desktop notifications widget on your workstation:

  $ long-running-command; bnotify "long-running-command has finished"

or fork a background monitor to advise you when a subsequent command pauses for
input:

lib/App/BCVI/NotifyClient.pm  view on Meta::CPAN

  ...

=head1 DESCRIPTION

This module is a plugin for C<bcvi> (see: L<App::BCVI>).  It uses the C<notify>
command to send a message back for display on the user's desktop.  This plugin
assumes a plugin back on the workstation will route the message to the desktop
notification applet or use some other mechanism to bring it to the attention of
the user.  The L<App::BCVI::NotifyDesktop> plugin is one implementation of the
workstation-end of the protocol.

The plugin registers the C<bnotify> alias as:

 view all matches for this distribution


App-BCVI-NotifyDesktop

 view release on metacpan or  search on metacpan

lib/App/BCVI/NotifyDesktop.pm  view on Meta::CPAN



App::BCVI->register_command(
    name        => 'notify',
    description => <<'END_POD'
Send a message which will be displayed as a notification on the user's desktop
(where the bcvi listener is running).  Typically used with the
C<--no-path-xlate> option so that any arguments are passed as text strings
rather than as a list of filenames.

The client side for this command (the 'bnotify' alias) also accepts C<--idle>

lib/App/BCVI/NotifyDesktop.pm  view on Meta::CPAN


__END__

=head1 NAME

App::BCVI::NotifyDesktop - Display a notification message at the user's desktop


=head1 DESCRIPTION

This module is a plugin for C<bcvi> (see: L<App::BCVI>).  It displays messages
from the C<bcvi> client using the Desktop Notification  protocol.  It assumes
the user has also installed a plugin (such as App::BCVI::NotifyClient) to send
the messages.

The module uses the L<Desktop::Notify> module to generate DBus messages for
display by a notification applet running in the user's desktop environment.


=head1 SUPPORT

You can look for information at:

 view all matches for this distribution


App-BCVI

 view release on metacpan or  search on metacpan

lib/App/BCVI.pm  view on Meta::CPAN

  changelog.Debian.gz  copyright    README
  changelog.gz         manual.pdf   README.Debian
  sally@pluto:acmecrm$ bcp manual.pdf

In the final command above, Sally used the C<bcp> command to copy the PDF file
back to the desktop on her workstation.  Then she was able to simply
double-click the desktop icon to open it in her PDF viewer.

=head2 How Example 2 Worked

This second example used all the same infrastructure as the first (listener
process, shell aliases and port forward) but added the command C<bcp>.  Once

lib/App/BCVI.pm  view on Meta::CPAN

separated by a semicolon):

  sally@pluto:~$ pg_restore -d acmecrm crm.pgdump; bnotify 'DB is restored!'

Sally then minimises her shell/ssh window and gets on with some other important
work.  Some minutes later, a desktop notification window pops up on her screen:

  +-------------------------+
  | Notification from pluto |
  | DB is restored!         |
  +-------------------------+

lib/App/BCVI.pm  view on Meta::CPAN


Once again, this example used all the same back channel infrastructure used by
the previous examples, but this one also used C<bcvi> plugins.

The C<bcvi> script itself requires no extra CPAN modules, but the interface to
the desktop notifications API requires the L<Desktop::Notify> module from CPAN.
It also requires a small 'plugin' module to provide the glue between the
listener process and the additional modules.  Plugins are described in more
detail in L<App::BCVI::Plugins>.

=head1 INSTALLATION

lib/App/BCVI.pm  view on Meta::CPAN

Same as above, but uses sudoedit so system files (requiring root access) can be
edited too

=item B<bcp>

Copies the named file back to your workstation desktop

=back

Note: you may like to try SSHMenu (L<http://sshmenu.sourceforge.net/>) which
can invoke the ssh wrapper automatically when connecting to servers.

 view all matches for this distribution


App-CSE

 view release on metacpan or  search on metacpan

lib/App/CSE/Command/Check.pm  view on Meta::CPAN

  unless( File::BaseDir::data_files('mime/globs') ){
      $LOGGER->warn($self->cse->colorizer->colored(q|No mime type info database (mime-info) on the machine.

All the files will be considered to be application/octet-stream at index time, making the search useless.

The shared-mime-info package is available from http://freedesktop.org/

On linux:
  Check your  package manager

On OSX:

 view all matches for this distribution


App-Chart

 view release on metacpan or  search on metacpan

inc/MyMakeMakerExtras.pm  view on Meta::CPAN

    # the "." obscures it from MyExtractUse.pm
    $post .= "\t-\$(PERLRUNINST) -e 'use "."Pod::Coverage package=>$class'\n";
  }
  # ------ pc: podlinkcheck ------
  $post .= <<'HERE';
	-podlinkcheck -I lib `ls $(LINT_FILES) | grep -v '\.bash$$|\.desktop$$\.png$$|\.xpm$$'`
HERE
  # ------ pc: podchecker ------
  # "podchecker -warnings -warnings" too much reporting every < and >
  $post .= <<'HERE';
	-podchecker `ls $(LINT_FILES) | grep -v '\.bash$$|\.desktop$$\.png$$|\.xpm$$'`
	perlcritic $(LINT_FILES)
HERE

  # ------ check-copyright-years ------
  $post .= <<'HERE';

 view all matches for this distribution


App-Cheats

 view release on metacpan or  search on metacpan

cheats.txt  view on Meta::CPAN


#############################################################
## Ubuntu - Desktop/Tasklist App
#############################################################

# Sample .desktop file to add xair as a favorite program.
cat xair.desktop
[Desktop Entry]
Encoding=UTF-8
Version=1.0
Type=Application
Name=XAIR

 view all matches for this distribution


App-Chronicle

 view release on metacpan or  search on metacpan

themes/bs2/static/css/bootstrap-responsive.css  view on Meta::CPAN


.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

.visible-desktop {
  display: inherit !important;
}

@media (min-width: 768px) and (max-width: 979px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important ;
  }
  .visible-tablet {
    display: inherit !important;
  }

themes/bs2/static/css/bootstrap-responsive.css  view on Meta::CPAN

    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
  .visible-phone {
    display: inherit !important;
  }

 view all matches for this distribution


App-ClusterSSH

 view release on metacpan or  search on metacpan

lib/App/ClusterSSH/Getopt.pm  view on Meta::CPAN

        q{If you have any ideas about how to fix the below bugs, please get in touch and/or provide a patch.}
    );
    output '=over';
    output '=item *';
    output $self->loc(
        q{Swapping virtual desktops can cause a redraw of all the terminal windows.  This is due to a lack of distinction within Tk between switching desktops and minimising/maximising windows.  Until Tk can tell the difference between the two events...
    );
    output '=back';

    output '=head1 ', $self->loc('TROUBLESHOOTING');

 view all matches for this distribution


App-Codit

 view release on metacpan or  search on metacpan

lib/App/Codit/Plugins/FileBrowser.pm  view on Meta::CPAN

=head1 DETAILS

The FileBrowser plugin lets you browse and manage your harddrive.

Double clicking a file will open it in Codit if it is a text file.
Otherwise it will open in the appropriate application of your desktop.

Clicking the right mouse button will open a context menu with options for opening, copy, cut, paste and delete selected files.

All columns are sortable and sizable. If you left-click the header it will give you options to display hidden files (that start with a dot), Sort case dependant or not and directories first.

 view all matches for this distribution


App-CveClient

 view release on metacpan or  search on metacpan

t/cve_schema51.CVE-2024-4761.json  view on Meta::CPAN

{"dataType":"CVE_RECORD","dataVersion":"5.1","cveMetadata":{"cveId":"CVE-2024-4761","assignerOrgId":"ebfee0ef-53dd-4cf3-9e2a-08a5bd7a7e28","state":"PUBLISHED","assignerShortName":"Chrome","dateReserved":"2024-05-10T15:52:59.148Z","datePublished":"202...

 view all matches for this distribution


App-DesktopNotifyUtils

 view release on metacpan or  search on metacpan

lib/App/DesktopNotifyUtils.pm  view on Meta::CPAN

our $DIST = 'App-DesktopNotifyUtils'; # DIST
our $VERSION = '0.001'; # VERSION

our %SPEC;

$SPEC{notify_desktop} = {
    v => 1.1,
    summary => 'Show a notification on your desktop',
    description => <<'MARKDOWN',

Currently a very simple interface to <pm:Desktop::Notify>. Will offer more
options in the future.

lib/App/DesktopNotifyUtils.pm  view on Meta::CPAN

            schema => 'uint*',
            default => 5000,
        },
    },
};
sub notify_desktop {
    require Desktop::Notify;

    my %args = @_;
    my $notify = Desktop::Notify->new;

lib/App/DesktopNotifyUtils.pm  view on Meta::CPAN

#INSERT_EXECS_LIST

=head1 FUNCTIONS


=head2 notify_desktop

Usage:

 notify_desktop(%args) -> [$status_code, $reason, $payload, \%result_meta]

Show a notification on your desktop.

Currently a very simple interface to L<Desktop::Notify>. Will offer more
options in the future.

This function is not exported.

 view all matches for this distribution


App-DesktopOpenUtils

 view release on metacpan or  search on metacpan

lib/App/DesktopOpenUtils.pm  view on Meta::CPAN

use warnings;
use Log::ger;

our %SPEC;

$SPEC{open_desktop} = {
    v => 1.1,
    args => {
        paths_or_urls => {
            'x.name.is_plural' => 1,
            'x.name.singular' => 'path_or_url',

lib/App/DesktopOpenUtils.pm  view on Meta::CPAN

    },
    features => {
        dry_run => 1,
    },
};
sub open_desktop {
    require Desktop::Open;

    my %args = @_;
    for my $path_or_url (@{ $args{paths_or_urls} }) {
        if ($args{-dry_run}) {

lib/App/DesktopOpenUtils.pm  view on Meta::CPAN

            #    Browser::Open::open_browser_cmd();
            #log_info "[DRY_RUN] Opening %s in browser with: %s ...", $url, $cmd;
            #log_info "[DRY_RUN] Opening %s ...", $path_or_url;
        } else {
            log_trace "Opening %s ...", $path_or_url;
            #Desktop::Open::open_desktop($url, $args{all});
            Desktop::Open::open_desktop($path_or_url);
        }
    }
    [200];
}

lib/App/DesktopOpenUtils.pm  view on Meta::CPAN

#INSERT_EXECS_LIST

=head1 FUNCTIONS


=head2 open_desktop

Usage:

 open_desktop(%args) -> [$status_code, $reason, $payload, \%result_meta]

This function is not exported.

This function supports dry-run operation.

 view all matches for this distribution


App-EventStreamr

 view release on metacpan or  search on metacpan

share/status/app/css/bootstrap-responsive.css  view on Meta::CPAN


.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

.visible-desktop {
  display: inherit !important;
}

@media (min-width: 768px) and (max-width: 979px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important ;
  }
  .visible-tablet {
    display: inherit !important;
  }

share/status/app/css/bootstrap-responsive.css  view on Meta::CPAN

    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
  .visible-phone {
    display: inherit !important;
  }

 view all matches for this distribution


App-Fetchware

 view release on metacpan or  search on metacpan

t/bin-fetchware-command-line.t  view on Meta::CPAN



    # Sleep for 2 seconds to ensure that the new version is a least a couple of
    # seconds newer than the original version. Perl is pretty fast, so it can
    # actually execute this whole friggin subtest in less than one second on my
    # decent desktop system.
    sleep 2;


    my $new_test_dist_path = make_test_dist(file_name => 'test-dist',
        ver_num => '1.01', destination_directory => $upgrade_temp_dir);

t/bin-fetchware-command-line.t  view on Meta::CPAN

    }


    # Sleep for 2 seconds to ensure that the new version is a least a couple of
    # seconds newer than the original version. Perl is pretty fast, so it can
    # actually execute this whole friggin subtest on my decent desktop system
    # in less thatn one second.
    sleep 2;


    # Create new test fpkgs and md5s in same dir for cmd_upgrade_all() to work.

 view all matches for this distribution


( run in 2.329 seconds using v1.01-cache-2.11-cpan-299005ec8e3 )