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 ) 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
Hey there, you stayed here long enough to read the second post. How about a small bonus ? Scripts to automate twitter followsStep 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.
Have a look at this thread (see below) and PM me if interested in this job. I am planning to pay $50 for this. https://forums.digitalpoint.com/threads/question-to-wordpress-and-php-experts.2776682/