05/03 - Wacky Waving Inflatable Arm Flailing Tube Man Thursday

Discussion in 'Daily mTurk HITs Threads' started by WhoTookDogan, May 3, 2018.

Thread Status:
Not open for further replies.
  1. Girl Polar Bear

    Girl Polar Bear Queen of the North

    Messages:
    29,273
    Gender:
    Female
    Ratings:
    +45,742
    [​IMG]
     
    • Like Like x 1
  2. MrTrentSD

    MrTrentSD Survey Slinger

    Messages:
    5,908
    Gender:
    Male
    Ratings:
    +9,645
    Nice area!
     
    • Love Love x 1
  3. bowtied

    bowtied Well-Known Turker

    Messages:
    1,053
    Ratings:
    +1,531
    could someone please post this script?
     
  4. SoonerChris

    SoonerChris Survey Slinger

    Messages:
    5,033
    Gender:
    Male
    Ratings:
    +6,959
    You walked for four hours on purpose?
     
    • LOL LOL x 1
    • 5/5 Pay 5/5 Pay x 1
  5. Hummingbirdee

    Hummingbirdee Big Bird

    Messages:
    54,302
    Gender:
    Female
    Ratings:
    +115,710
    If it makes you feel better, I get home and get out of Mister Jeep for my crazy neighbor bobbo to start screaming at me about how I park my car and how I need to stop it or he's calling the cops. And yeah, he can have fun with that, cause it's not blocking his spot, it's not in his way, and I doubt the cops are gonna wanna respond to that type of crazy shit.

    Apparently, my headlights "shine in his window, " at night when I pull up and he doesn't appreciate when we start our vehicles at 6am (jobs, go figure!) and he "didn't go to Vietnam twice for girls not to do what he says."

    I told him to go ahead and call. Have fun. Cause this is the same old man who DEALS DRUGS and has blocked me in time and time again because of his "friends," parking half in my spot. He legit made it in the doorway of my apartment, still yelling, and Skeeter lost his mind.

    Gonna call my realtor again, before I lose my sanity with this crazy old man. Nothing will kill your mellow hiking buzz like your insane old man drug dealer neighbor immediately screaming at you when you park your car. I love our building! ...not. At least the dude and his family next door wave at me, sometimes pet the dogs, and leave it at things like, "Good morning neighbor! Enjoy your hike!" Be that neighbor, be the "have a good day!" neighbor. Don't be the crazy, screaming over nothing neighbor.
     
    • Love Love x 4
  6. Hummingbirdee

    Hummingbirdee Big Bird

    Messages:
    54,302
    Gender:
    Female
    Ratings:
    +115,710
    It's called hiking! It's great!

    [​IMG]
     
    • Like Like x 1
  7. WildFlower

    WildFlower Survey Slinger FF Champion II

    Messages:
    4,305
    Gender:
    Female
    Ratings:
    +5,004
    I don't think it does much and seems like it causes problems with other HITs, but search yesterday's thread. Make sure the one you get is the CT edit.
     
    • Like Like x 1
  8. NotASingleClare

    NotASingleClare Well-Known Turker

    Messages:
    2,637
    Gender:
    Female
    Ratings:
    +3,246
    That doesn't make me feel better at all! lol. Sorry you have to deal with that :(
     
    • Love Love x 1
  9. jim718181

    jim718181 Survey Slinger

    Messages:
    2,713
    Gender:
    Male
    Ratings:
    +3,788
    Code:
    // ==UserScript==
    // @name aashima arora
    // @version 1.0
    // @description adds buttons
    // @author jim718181
    // @include /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
    // @grant none
    // @require https://code.jquery.com/jquery-3.1.1.min.js
    // ==/UserScript==
    var left_Pic_Invalid = null;
    var myButton1 = '<button type="button" id="myButton1">Sky</button>';
    $('#workContent > div.col-xs-12.col-sm-8.image > table > tbody > tr > td:nth-child(1) > img').before(myButton1);
    $('button[id="myButton1"]').css("background-color","red");
    $("#myButton1").click(function(){
    $('input[value="mostly sky"]').click();
    $('button[id="myButton1"]').css("background-color","green");
    $('button[id="myButton2"]').css("background-color","green");
    $('button[id="myButton3"]').css("background-color","green");
    });
    var myButton2 = '<button type="button" id="myButton2">Trees</button>';
    $('#workContent > div.col-xs-12.col-sm-8.image > table > tbody > tr > td:nth-child(1) > img').before(myButton2);
    $('button[id="myButton2"]').css("background-color","red");
    $("#myButton2").click(function(){
    $('input[value="mostly trees"]').click();
    $('button[id="myButton1"]').css("background-color","green");
    $('button[id="myButton2"]').css("background-color","green");
    $('button[id="myButton3"]').css("background-color","green");
    });
    var myButton3 = '<button type="button" id="myButton3">Build/Ceilings</button>';
    $('#workContent > div.col-xs-12.col-sm-8.image > table > tbody > tr > td:nth-child(1) > img').before(myButton3);
    $('button[id="myButton3"]').css("background-color","red");
    $("#myButton3").click(function(){
    $('input[value="mostly buildings or ceilings"]').click();
    $('button[id="myButton1"]').css("background-color","green");
    $('button[id="myButton2"]').css("background-color","green");
    $('button[id="myButton3"]').css("background-color","green");
    });
    var myButton4 = '<button type="button" id="myButton4">Day Sky</button>';
    $('#workContent > div.col-xs-12.col-sm-8.image > table > tbody > tr > td:nth-child(1) > img').after(myButton4);
    $('button[id="myButton4"]').css("background-color","red");
    $("#myButton4").click(function(){
    $('input[value="Outdoor"]').click();
    $('button[id="myButton4"]').css("background-color","green");
    $('button[id="myButton5"]').css("background-color","green");
    });
    var myButton5 = '<button type="button" id="myButton5">No Day Sky</button>';
    $('#workContent > div.col-xs-12.col-sm-8.image > table > tbody > tr > td:nth-child(1) > img').after(myButton5);
    $('button[id="myButton5"]').css("background-color","red");
    $("#myButton5").click(function(){
    $('input[value="Indoor"]').click();
    $('button[id="myButton4"]').css("background-color","green");
    $('button[id="myButton5"]').css("background-color","green");
    });
    var myButton6 = '<button type="button" id="myButton6">Valid</button>';
    $('button[id="myButton4"]').after(myButton6);
    $('button[id="myButton6"]').css("background-color","yellow");
    $("#myButton6").click(function(){
    left_Pic_Invalid = false;
    $('button[id="myButton6"]').css("background-color","green");
    $('button[id="myButton7"]').css("background-color","green");
    });
    var myButton7 = '<button type="button" id="myButton7">Invalid</button>';
    $('button[id="myButton4"]').after(myButton7);
    $('button[id="myButton7"]').css("background-color","yellow");
    $("#myButton7").click(function(){
    left_Pic_Invalid = true;
    $('button[id="myButton6"]').css("background-color","green");
    $('button[id="myButton7"]').css("background-color","green");
    });
    var myButton8 = '<button type="button" id="myButton8">Valid</button>';
    $('#workContent > div.col-xs-12.col-sm-8.image > table > tbody > tr > td:nth-child(3) > img').after(myButton8);
    $('button[id="myButton8"]').css("background-color","yellow");
    $("#myButton8").click(function(){
    $('button[id="myButton8"]').css("background-color","green");
    $('button[id="myButton9"]').css("background-color","green");
    if(left_Pic_Invalid === true){
    $('input[value="left"]').click();
    } else if (left_Pic_Invalid === false){
    $('input[value="neither"]').click();
    }
    });
    var myButton9 = '<button type="button" id="myButton9">Invalid</button>';
    $('#workContent > div.col-xs-12.col-sm-8.image > table > tbody > tr > td:nth-child(3) > img').after(myButton9);
    $('button[id="myButton9"]').css("background-color","yellow");
    $("#myButton9").click(function(){
    $('button[id="myButton8"]').css("background-color","green");
    $('button[id="myButton9"]').css("background-color","green");
    if(left_Pic_Invalid === true){
    $('input[value="both"]').click();
    } else if (left_Pic_Invalid === false){
    $('input[value="right"]').click();
    }
    });
    
     
  10. AMindAtTurk

    AMindAtTurk Survey Slinger TurkerView Masters

    Messages:
    26,051
    Gender:
    Female
    Ratings:
    +39,565
    stellawhite [A3U6UNDU0Y44JI] E-commerce study - $0.50 | PANDA
    [3D8B00U52I53WEA92XNU2X9SU4G83E]


    Fair

    Unrated

    Unrated
    $9.94 / hour
    00:03:01 / completion time
    Pros:

    Cons:

    To read stellawhite's full profile check out TurkerView!
     
    • Nom Nom Nom! Nom Nom Nom! x 1
  11. Momof1

    Momof1 Survey Slinger

    Messages:
    5,739
    Gender:
    Female
    Ratings:
    +5,912
    Greetings from Amazon Mechanical Turk,

    You've received a bonus from Mike Farjam for work related to 37G6BXQPLQD9T5DEMRTIE9DK7NBQEF.
    The value of your bonus is: $1.00 USD

    The Requester included this note:
    Thank you

    Thanks for being a Worker on Mechanical Turk!

    Sincerely,
    Amazon Mechanical Turk
    https://www.mturk.com

    I got a $1..take that greedy guy!
     
    • Like Like x 1
  12. morweeg

    morweeg Triple Double Certified Organic Batch Master

    Messages:
    40,571
    Ratings:
    +54,131
    Wait, I thought California was all urban sprawl or boring desert with no in-between. What's all this green stuff? California is supposed to only come in shades of brown and grey.
     
    • LOL LOL x 1
  13. cheyenne

    cheyenne Survey Slinger

    Messages:
    6,583
    Gender:
    Female
    Ratings:
    +7,691

    I got $1.36 I was timed out only 2 people joined.
     
    • Nom Nom Nom! Nom Nom Nom! x 1
  14. EssArrBee

    EssArrBee Survey Slinger

    Messages:
    14,946
    Gender:
    Male
    Ratings:
    +20,007
    That's not a punishment. You could just play video games and talk about Silicon Valley with him. Thomas is awesome.
     
    • Like Like x 1
    • LOL LOL x 1
  15. Firespirit

    Firespirit Active Turker

    Messages:
    950
    Gender:
    Female
    Ratings:
    +2,122
    Mike Farjam [A1LKFNCXV20OU2] Academic study on decision making - $1.50 $3.80 bonus | PANDA
    [3P15LLOASAG2H1MZJH6KO78W9XTZ9J]


    Unrated

    Unrated

    Unrated
    $25.11 / hour
    00:12:40 / completion time
    Pros:
    Fun and bonus and the opportunity to get a nice bonus- depending on other turkers
    Cons:

    To read Mike Farjam's full profile check out TurkerView!
     
    • Nom Nom Nom! Nom Nom Nom! x 1
  16. AMindAtTurk

    AMindAtTurk Survey Slinger TurkerView Masters

    Messages:
    26,051
    Gender:
    Female
    Ratings:
    +39,565
    Angela Listy [A1M2H0HAEXONBY] Sexual Behavior Survey - $0.43 | PANDA
    [36MWL0IRGC9AQ2P6F6MYR1FQGK3HO9]


    Fair

    Unrated

    Unrated
    $8.75 / hour
    00:02:57 / completion time
    Pros:

    Cons:

    To read Angela Listy's full profile check out TurkerView!
     
  17. Hummingbirdee

    Hummingbirdee Big Bird

    Messages:
    54,302
    Gender:
    Female
    Ratings:
    +115,710
    Oh, It's fine! It would technically be a 35 buck fine if the cops actually cared enough to ticket me (prolly not) , cause I am "facing the wrong way," but I've literally had to talk to cops cause of crap down the road and we have a speed trap near our house because of issues with people speeding and they've not ever given a damn...plus half the block parks that way. I'm pretty sure the worst that happens is being nicely asked to turn my car around. I've literally had a cop parked BEHIND my jeep, talked to him for 10 minutes about someone down the road, and he didn't say a word to me, so I don't think it's a priority issue here.

    I never get in trouble. I'm not a trouble maker type. This is the most rule breaking I ever do, and I'm not super worried cause when cars pull up and my neighbor goes out to exchange "packages," with them for wads of cash...I don't think he's giving them little packets of fairy dust. Honestly, he would have to be a total idiot to call the cops because... I feel like that's the opposite of what a low scale drug dealer is supposed to do? :emoji_laughing:
     
    • Like Like x 1
    • Love Love x 1
  18. bowtied

    bowtied Well-Known Turker

    Messages:
    1,053
    Ratings:
    +1,531
    thanks, didn't realize it was in yesterday's thread so when everyone was like, it was posted, i didn't see it today.
     
  19. Trickydude24

    Trickydude24 Survey Slinger

    Messages:
    2,720
    Gender:
    Male
    Ratings:
    +5,206
    [​IMG]
     
    • LOL LOL x 1
  20. morweeg

    morweeg Triple Double Certified Organic Batch Master

    Messages:
    40,571
    Ratings:
    +54,131
    Do you have video evidence of this? Also idiot types are always threatening to call the cops, I've noticed, even if they've engaged in far worse illegal activity themselves.
     
    • Like Like x 1
    • LOL LOL x 1
Thread Status:
Not open for further replies.