npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

elance-withdrawal

v1.0.7

Published

Automatically log into your elance account and withdrawal any avaliable balance to your specified account

Downloads

6

Readme

Elance Automatic Withdrawal Bot

Logs into your Elance account and withdrawals any available funds to the account you specify.

Installation

Run the following command on your command line to install this script:

npm install -g elance-withdrawal

(Requires node.js - download it from http://nodejs.org/)

Usage

To use this script on your computer, run elance-withdrawal from the command line to perform a withdrawal. The folowing arguments are all required:

  • username: your Elance username or email address
  • password: your Elance password
  • withdrawal-account-id: This is Elance's internal ID for your bank or paypal account. To find it, view-source on the withdrawal form, find the <select> dropdown that lists your accounts, and find <option> that lists your account. It should have a value="some number" - that number is the account ID.
  • Security questions: Copy all of your security questions and your answers. Format them like so: --"What's your pets name?"="Rover"

All arguments should be prefixed with -- and seperated from their values by an = (no spaces). So, alltogether, the command would look like this:

elance-withdrawal [email protected] --password=abc123 --withdrawal-account-id=12434567 --"security question?"="security answer" --"other security question?"="other answer"

Tip: you can shorten the security question to a smaller substring such as --pet=rover or --teacher="Mr.Smith"

Heroku Usage

This script can be run on a free Heroku server with a little bit of setup. Complete instructions for how to use heroku is beyond the scope of this document, but they have very good documentation. The following instructions require the Heroku Toolbelt.

Create the app with the casperjs buildpack from http://github.com/misza222/heroku-buildpack-casperjs

heroku apps:create [optional-app-name] --stack cedar --buildpack http://github.com/misza222/heroku-buildpack-casperjs.git

Add some logging and cronjob support:

heroku addons:add logentries
heroku addons:add scheduler

Open the cronjob config page:

heroku addons:open scheduler

Set the cronjob to run your complete withdrawal command like so:

./vendor/casperjs/bin/casperjs index.js [email protected] --password=... etc.

If it doesn't seem to be working, run heroku run bash to open a shell on a new server instance. Then you can try running different commands and see what's going on.

Hire me :)

Lets build something awesome together! My elance profile is https://www.elance.com/s/nfriedly/?rid=1IFCM

However, my avaliability is pretty limited and I have to turn down the majority of the jobs I get invited to. You'll have a better shot if you send me an email first: nathan@[my website (see below)].com

MIT License

Copyright (c) 2014 Nathan Friedly - http://nfriedly.com/

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.