1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Selling Full-stack web developer for hire

Discussion in 'Programming' started by abhinay.jain90, Mar 10, 2016.

Price

Information

Instant Pay:
No

Does not qualify for feedback.

Info here is claimed by the seller and is not a replacement for your own due diligence.

Embed

HTML:
BBCode:
Link image:
  1. #1
    Hi there,
    I'm offering my services as a full-stack web-developer.

    What I know:
    - Javascript (primary skill)
    - PHP
    - Visual basic
    - Wordpress, nodeJS, angularJS
    - Photoshop (just enough to make do :D)

    What I can do for you:
    - Web/desktop tools/bots (data manipulation, scraping etc.)
    - Full websites

    About me: I'm currently working full-time as a front-end developer at one of the biggest startups in India. I'm looking to quit the job in favour of online freelancing. Wish me luck :).

    Cheers,
    Jain
     
    Last edited: Mar 10, 2016
    abhinay.jain90, Mar 10, 2016 IP
  2. abhinay.jain90

    abhinay.jain90 Active Member

    Messages:
    247
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    80
    As Seller:
    100% - 1
    As Buyer:
    100% - 0
    #2
    Hey there, you stayed here long enough to read the second post. How about a small bonus :D?

    Scripts to automate twitter follows
    Step 1: Go to https://twitter.com/search?f=users&q=ABC (replace ABC with name/keyword)

    Step 2: Run 1st script for about a minute. It will scroll down at regular intervals to trigger new results.
    function scrollToBottom() {
        setTimeout(function() {
            scrollTo(0, document.body.scrollHeight);
            scrollToBottom();
        }, 2000)
    };
    scrollToBottom();
    Code (JavaScript):
    Step 3: Once you are sated with the number of results fetched run 2nd script. This will stop automatic scrolling.
    var id = setTimeout(function() {}, 0);
    while (id--) {
       clearTimeout(id);
    }
    Code (JavaScript):
    Step 4: Run third script. This will click on follow buttons at regular intervals. Leave the tab open for the some time (You can change tab. It will work in background). Scroll up/down to check progress.
    var timer = 0;
    $('.user-actions.not-following').find('.user-actions-follow-button').each(function(i, button) {
        setTimeout(function() {
            button.click();
        }, timer);
        timer = timer + 2000 + 500 * Math.random();
    });
    Code (JavaScript):
    I'm open to suggestions for these scripts

    PS: I'm sure you guessed that the number 2000 in script 1 and 3 refers to time interval between actions. That's correct. They are in milliseconds. You can change them to your liking.

    PPS: In case you don't know how run a script in a browser; here's how to do it in Chrome:
    Open Dev Tools by pressing F12 key or cmd+shift+i (mac).
    Look for console tab and click on it to open. This console works like cmd/terminal.
    Paste the script you want to run and press enter.
     
    Last edited: Mar 10, 2016
    abhinay.jain90, Mar 10, 2016 IP
  3. Jeffr2014

    Jeffr2014 Active Member

    Messages:
    254
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    55
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #3
    Jeffr2014, Mar 24, 2016 IP