08/02 - Whoa, it's already Wednesday!

Discussion in 'Daily mTurk HITs Threads' started by Melting Glacier, Aug 2, 2017.

Thread Status:
Not open for further replies.
  1. Rocknrolla

    Rocknrolla Survey Slinger

    Messages:
    10,014
    Gender:
    Male
    Ratings:
    +7,585
    I have both of them downloading now and I was sick this evening so I slept now I will be up all night watching them
     
  2. Taxi Driver

    Taxi Driver Turker

    Messages:
    122
    Gender:
    Male
    Ratings:
    +11
    Im doing shoes making so much bank
     
  3. Rocknrolla

    Rocknrolla Survey Slinger

    Messages:
    10,014
    Gender:
    Male
    Ratings:
    +7,585
    Have you ever see the documentarys about parkies - It has that guy that they used to find the diamond on snatch
     
  4. Taxi Driver

    Taxi Driver Turker

    Messages:
    122
    Gender:
    Male
    Ratings:
    +11
    Man I have seen like every movie in my favorite genres. You ever bored and want a suggestion just ask.
     
  5. SeDuCeR

    SeDuCeR Survey Slinger

    Messages:
    6,483
    Gender:
    Male
    Ratings:
    +11,180
    but these O5's are sooooooo mind numbingly bad
     
    • 5/5 Pay 5/5 Pay x 1
  6. Taxi Driver

    Taxi Driver Turker

    Messages:
    122
    Gender:
    Male
    Ratings:
    +11
    Lol ya pikies are insane. RIP paul masey
     
  7. Rocknrolla

    Rocknrolla Survey Slinger

    Messages:
    10,014
    Gender:
    Male
    Ratings:
    +7,585
    Just give me a list - I will make sure I download them cause I like em all
     
  8. Taxi Driver

    Taxi Driver Turker

    Messages:
    122
    Gender:
    Male
    Ratings:
    +11
    connor mccregor a pikey at heart. Saw video of him sparring the mountain from game of thrones and just was toying with him.
     
  9. SeDuCeR

    SeDuCeR Survey Slinger

    Messages:
    6,483
    Gender:
    Male
    Ratings:
    +11,180
    My fav movie is Cool Hand Luke, such an incredible movie on the human spirit and will
     
  10. Rocknrolla

    Rocknrolla Survey Slinger

    Messages:
    10,014
    Gender:
    Male
    Ratings:
    +7,585
    There was one on Pikie strongman fighting. They are crazy
     
  11. Rocknrolla

    Rocknrolla Survey Slinger

    Messages:
    10,014
    Gender:
    Male
    Ratings:
    +7,585
    I have like 8TB of movies and it is completely full
     
  12. ceedj

    ceedj Survey Slinger

    Messages:
    2,869
    Gender:
    Male
    Ratings:
    +6,408
    Eh, I was bored. I don't tend to do the 0.01s, as the PRE's tend not to be worth it for me. But if you like them, maybe this will help. 1-5 select the RIGHT side, 6-0 select the LEFT. Hitting Enter will submit. You can change them to whatever you want, really. As with all my scripts, do what you like with them, just credit me.

    Code:
    // ==UserScript==
    // @name A9 Shoes ($0.01)
    // @namespace None
    // @version 1.0.0
    // @description Because I CAN. 1-5 for RIGHT side, 6-0 for LEFT side.
    // @author ceedj
    // @include *.mturkcontent.com/*
    // @include https://s3.amazonaws.com/*
    // @grant GM_log
    // @require http://code.jquery.com/jquery-2.1.0.min.js
    // ==/UserScript==
    
    var my_var = $('font:contains(LEFT IMAGE PROBLEM)');
    if (my_var.length)
    {
    window.focus();
    $("input[id='result3']").focus();
    
    // Keybinds
    document.onkeydown = function(e) {
    
    if ((e.keyCode === 54) || (e.keyCode === 102) || (e.altKey && e.keyCode === 102)) { // 6 or Numpad1 or Alt+Numpad6
    $("input[id='PoorImageQuality']").click();
    }
    
    if ((e.keyCode === 55) || (e.keyCode === 103) || (e.altKey && e.keyCode === 103)) { // 7 or Numpad1 or Alt+Numpad7
    $("input[id='IncorrectInputCategory']").click();
    }
    
    if ((e.keyCode === 56) || (e.keyCode === 104) || (e.altKey && e.keyCode === 104)) { // 8 or Numpad2 or Alt+Numpad8
    $("input[id='InputMajorityNotVisible']").click();
    }
    
    if ((e.keyCode === 57) || (e.keyCode === 105) || (e.altKey && e.keyCode === 105)) { // 9 or Numpad3 or Alt+Numpad9
    $("input[id='InappropriateInput']").click();
    }
    
    if ((e.keyCode === 48) || (e.keyCode === 96) || (e.altKey && e.keyCode === 96)) { // 0 or Numpad0 or Alt+Numpad0
    $("input[id='InappropriateOutput']").click();
    }
    
    if ((e.keyCode === 49) || (e.keyCode === 97) || (e.altKey && e.keyCode === 97)) { // 1 or Numpad1 or Alt+Numpad1
    $("input[id='result1']").click();
    }
    
    if ((e.keyCode === 50) || (e.keyCode === 98) || (e.altKey && e.keyCode === 98)) { // 2 or Numpad2 or Alt+Numpad2
    $("input[id='result2']").click();
    }
    
    if ((e.keyCode === 51) || (e.keyCode === 99) || (e.altKey && e.keyCode === 99)) { // 3 or Numpad3 or Alt+Numpad3
    $("input[id='result3']").click();
    }
    
    if ((e.keyCode === 52) || (e.keyCode === 100) || (e.altKey && e.keyCode === 100)) { // 4 or Numpad4 or Alt+Numpad4
    $("input[id='result4']").click();
    }
    
    if ((e.keyCode === 53) || (e.keyCode === 101) || (e.altKey && e.keyCode === 101)) { // 5 or Numpad4 or Alt+Numpad5
    $("input[id='result5']").click();
    }
    //Submit
    if (e.keyCode === 13) { // Enter or NumpadEnter
    $("input[id='submitButton']").click();
    }
    };
    }
     
    • Today I Learned Today I Learned x 3
    • Like Like x 1
    • 5/5 Pay 5/5 Pay x 1
    Last edited: Aug 3, 2017
  13. Taxi Driver

    Taxi Driver Turker

    Messages:
    122
    Gender:
    Male
    Ratings:
    +11
    You like foreign crime movies?
     
  14. Rocknrolla

    Rocknrolla Survey Slinger

    Messages:
    10,014
    Gender:
    Male
    Ratings:
    +7,585
    yeah one of my favs is ROnin
     
  15. Taxi Driver

    Taxi Driver Turker

    Messages:
    122
    Gender:
    Male
    Ratings:
    +11
    ronin you american? I mean with subtitles
     
  16. GooseMcD

    GooseMcD Well-Known Turker

    Messages:
    1,694
    Gender:
    Female
    Ratings:
    +4,286
    Which Requester is Ads Force? I got a really weird email from them.


    Sent from my iPhone using Tapatalk
     
  17. Rocknrolla

    Rocknrolla Survey Slinger

    Messages:
    10,014
    Gender:
    Male
    Ratings:
    +7,585
    It depends on how good it is. One of the best movie on the IMDB list is subtitledd and worth every line of reading
     
  18. Taxi Driver

    Taxi Driver Turker

    Messages:
    122
    Gender:
    Male
    Ratings:
    +11
    Love subtitle flicks. I know youve seen city of god.
     
  19. Hazmat

    Hazmat Survey Slinger

    Messages:
    2,151
    Ratings:
    +3,845
    CreativeCheckups. They change their name a lot. I, and a lot of others, received the same email. Don't worry about it :)
     
  20. Rocknrolla

    Rocknrolla Survey Slinger

    Messages:
    10,014
    Gender:
    Male
    Ratings:
    +7,585
    Thats the movie I was talking about - Awesome
     
  21. Blue_Charrua

    Blue_Charrua Active Turker

    Messages:
    274
    Gender:
    Male
    Ratings:
    +304
    Hey all. Late night turking and dabbling in these A9's while watching Netflix. Good day today?
     
Thread Status:
Not open for further replies.