05/24 - Feelgood Friday!

Is cereal a soup?


  • Total voters
    65
Status
Not open for further replies.

Siminey

New Member
Contributor
Joined
May 22, 2018
Messages
20
Reaction score
38
Points
338
Hey All - longtime lurker, yada yada. I know the other night someone was wondering if there was a way to do decently on the Perch backyard HITs. I wrote my very first script :) and thought I would share it.

Code:
// ==UserScript==
// @name         Backyard Picker
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Autoselect backyard options
// @author       Siminey
// @match        https://www.mturkcontent.com/dynamic/*
// @grant         GM_log
// @require      http://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==
var $ = window.jQuery;
(function() {
    'use strict';

    // Set starting values...
    $('input[value="mowed"]').click();
    $('input[value="partial_no_coverage"]').click();
    $('input[value="tall"]').click();
    $('input[value="neighbor_house"]').click();
    $('input[value="none_visible"]').click();
    $('input[value="flat"]').click();
    $("#enclosed_structure-3").click();

    //When click "no photo" it will be selected for all fields
     $("#grass-6").click(function(){
         $("#shade-2").click();
         $("#tree_placement-4").click();
         $("#tree_maturity-3").click();
         $("#view-6").click();
         $("#powerline-3").click();
         $("#slope-3").click();
         $("#exterior_home_structure-5").click();
         $("#enclosed_structure-4").click();
         $('#view-0').prop('checked', false); // Unchecks it

  });
    //CLicking "no trees" selects it in the other field
     $("#tree_placement-3").click(function(){
         $("#tree_maturity-2").click();
  });

})();
It pre-selects the options I was running across most frequently. It doesn't make the hourly awesome (I still haven't done that many) but it does save on your wrist :D
 

Trucker

Well-Known Member
Contributor
Crowd Pleaser
Joined
Sep 13, 2016
Messages
6,364
Reaction score
26,480
Points
1,213
Gender
Male
Hey All - longtime lurker, yada yada. I know the other night someone was wondering if there was a way to do decently on the Perch backyard HITs. I wrote my very first script :) and thought I would share it.

Code:
// ==UserScript==
// @name         Backyard Picker
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Autoselect backyard options
// @author       Siminey
// @match        https://www.mturkcontent.com/dynamic/*
// @grant         GM_log
// @require      http://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==
var $ = window.jQuery;
(function() {
    'use strict';

    // Set starting values...
    $('input[value="mowed"]').click();
    $('input[value="partial_no_coverage"]').click();
    $('input[value="tall"]').click();
    $('input[value="neighbor_house"]').click();
    $('input[value="none_visible"]').click();
    $('input[value="flat"]').click();
    $("#enclosed_structure-3").click();

    //When click "no photo" it will be selected for all fields
     $("#grass-6").click(function(){
         $("#shade-2").click();
         $("#tree_placement-4").click();
         $("#tree_maturity-3").click();
         $("#view-6").click();
         $("#powerline-3").click();
         $("#slope-3").click();
         $("#exterior_home_structure-5").click();
         $("#enclosed_structure-4").click();
         $('#view-0').prop('checked', false); // Unchecks it

  });
    //CLicking "no trees" selects it in the other field
     $("#tree_placement-3").click(function(){
         $("#tree_maturity-2").click();
  });

})();
It pre-selects the options I was running across most frequently. It doesn't make the hourly awesome (I still haven't done that many) but it does save on your wrist :D
Welcome.
 

mboone73

The Last Hit Poster
Contributor
Crowd Pleaser
HIT Poster
Half-Ass
Joined
May 9, 2017
Messages
20,565
Reaction score
54,719
Points
1,738
Location
Houston, TX
Gender
Male
Also, I bought a local IPA which is 9.5% alcohol. Now it's a party.
 
  • Like
Reactions: cb456 and Peachy

Amon

Well-Known Member
Contributor
Joined
Dec 23, 2018
Messages
2,174
Reaction score
3,675
Points
1,088
Age
34
Also, I bought a local IPA which is 9.5% alcohol. Now it's a party.
Its not a real party unless you are doing straight 190 everclear.
 

mboone73

The Last Hit Poster
Contributor
Crowd Pleaser
HIT Poster
Half-Ass
Joined
May 9, 2017
Messages
20,565
Reaction score
54,719
Points
1,738
Location
Houston, TX
Gender
Male
Its not a real party unless you are doing straight 190 everclear.
Well, I did have a few glasses of 100 proof whiskey beforehand.

Everclear is for teenagers who don't drink every night.
 
  • Like
Reactions: cb456
Status
Not open for further replies.