name: so-daily version: 0.1.0.0 synopsis: App for logging into the Stackoverflow website. description: Opens a browser and logins into the stackoverflow website every X minutes. . An example of scheduling logins for each 12 hours of runtime: . > ./so-daily --email example@domain.com --password test123 -repeat $((12*60)) . This package is designed to work as a background process with a selenium server. Use the @verbose@ option to print runtime information to standard output. . > so-daily - automatic scheduled SO login > > Usage: sodaily [-r|--repeat X] [-v|--verbose] (-e|--email ARG) > (-p|--password ARG) > Login daily to the stackoverflow website > > Available options: > > -h, --help Show this help text > -r, --repeat X Login in each X seconds > -v, --verbose Show more information while running > -e, --email ARG Email to use for login > -p, --password ARG Password to use for login license: MIT license-file: LICENSE author: Afonso Matos maintainer: contact@afonsomatos.com copyright: (c) 2015 Afonso Matos category: Web build-type: Simple cabal-version: >= 1.10 extra-source-files: CHANGELOG.md README.md Server.sh Selenium.sh executable so-daily main-is: Main.lhs build-depends: base == 4.*, text >= 0.11, webdriver >= 0.6, optparse-applicative, HTTP, transformers == 0.3.*, time == 1.4.*, old-locale == 1.* ghc-options: -Wall hs-source-dirs: src other-modules: App.Cycle App.Interact App.Login App.Options default-language: Haskell2010