12/17 - Sudden Sunday!

Discussion in 'Daily mTurk HITs Threads' started by TissueHime, Dec 17, 2017.

  1. laby

    laby Survey Slinger Former MTG MotM TurkerView Masters

    Messages:
    14,838
    Gender:
    Female
    Ratings:
    +31,575
    Your HIT activity for this week:
    - Number of HITs submitted: 430

    Approvals and payments that occurred this week:
    - Number of HITs approved: 620
    - Number of HITs rejected: 0
    - Bonus reward earned: $6.25
    - HIT reward earned: $244.95
    - Total Amount earned this week: $251.20
     
    • Like Like x 5
    • 5/5 Pay 5/5 Pay x 1
  2. Ballistic406

    Ballistic406 Survey Slinger

    Messages:
    3,888
    Gender:
    Male
    Ratings:
    +6,667
    Thanks. You wouldn't also know how to get into our old queues would you?
     
  3. CorvusSapiens

    CorvusSapiens Survey Slinger

    Messages:
    6,777
    Gender:
    Male
    Ratings:
    +9,896
    Testing

    Title: Write question-answer pairs about a verb | PANDA
    Requester: Julian Michael [A3AA2VKV87R6PG] (Contact)
    (TO): [Pay: 4.92] [Fair: 4.83] [Comm: 5.00] [Fast: 5.00]
    Description:
    Given a sentence and a verb from that sentence,
    write questions and answers about that verb.
    Questions must adhere to a certain template,
    provided by autocomplete functionality.
    Maintain high accuracy to stay qualified.
    Time: 10 minutes(s)
    HITs Available: 766
    Reward: $0.05
    Qualifications: Location NotEqualTo IN; Questions asked per verb disqualification DoesNotExist; Question-answer writing accuracy disqualification DoesNotExist; HIT approval rate (%) GreaterThanOrEqualTo 95;
     
    • Nom Nom Nom! Nom Nom Nom! x 1
  4. CorvusSapiens

    CorvusSapiens Survey Slinger

    Messages:
    6,777
    Gender:
    Male
    Ratings:
    +9,896
    I did a thing!! :flail:
     
    • Like Like x 1
    • Today I Learned Today I Learned x 1
  5. The_Templars_Twin

    The_Templars_Twin Active Turker

    Messages:
    477
    Gender:
    Male
    Ratings:
    +466
    Approved
    20,005

    [​IMG]

    [​IMG]
     
    • Like Like x 2
  6. CorvusSapiens

    CorvusSapiens Survey Slinger

    Messages:
    6,777
    Gender:
    Male
    Ratings:
    +9,896
    Don't know sorry. If you have a hit that doesn't work on worker, I know it will give you a link to complete it on www.
     
  7. jessers

    jessers Survey Slinger

    Messages:
    14,710
    Gender:
    Female
    Ratings:
    +44,814
    Well gosh it's about time you earned your keep around here, you never do anything helpful. :emoji_rolling_eyes:
     
    • LOL LOL x 3
  8. jessers

    jessers Survey Slinger

    Messages:
    14,710
    Gender:
    Female
    Ratings:
    +44,814
    [​IMG]
     
    • LOL LOL x 2
  9. laby

    laby Survey Slinger Former MTG MotM TurkerView Masters

    Messages:
    14,838
    Gender:
    Female
    Ratings:
    +31,575
    Title: Search for 20 short clips that show difficult driving situations on youtube. | AcceptA
    Requester: MIT Deep Cars [A3UOFLI8LQX8KP] Contact
    TV: No Reviews
    TO: [Pay: 2.67] [Fast: 0.00] [Comm: 0.00] [Fair: 1.00] [Reviews: 5] [ToS: 0]
    TO2: [Hrly: ---] [Pen: ---] [Res: ---] [Rec: ---] [Rej: 0] [ToS: 0] [Brk: 0]
    Reward:
    $4.00
    Duration: 4 hours
    Available: 1
    Description: You are going to search for 5 - ~15s clips on youtube that show difficult driving situations on youtube and submit the link.
    Requirements: Total approved HITs GreaterThan 100; HIT approval rate (%) GreaterThan 98
     
    • Nom Nom Nom! Nom Nom Nom! x 2
  10. CorvusSapiens

    CorvusSapiens Survey Slinger

    Messages:
    6,777
    Gender:
    Male
    Ratings:
    +9,896
    If you're using @ThisPoorGuy 's Hit Forker this should fix exports:


    Original starting around line 834
    Code:
     for (var i = 0; i < hits.length; i ++) {
        var hit = hits[i],
            req_name  = hit.requester_name,
            req_id    = hit.requester_id,
            req_link  = hit.requester_url,
            //req_link  = 'https://www.mturk.com/mturk/searchbar?selectedSearchType=hitgroups&requesterId=' + hit.requester_id,
            con_link  = 'https://www.mturk.com/mturk/contact?requesterId=' + hit.requester_id,
            group_id  = hit.hit_set_id,
            prev_link = hit.project_tasks_url,
            //prev_link = 'https://www.mturk.com/mturk/preview?groupId=' + hit.hit_set_id,
            pand_link = hit.accept_project_task_url,
            //pand_link = 'https://www.mturk.com/mturk/previewandaccept?groupId=' + hit.hit_set_id,
            title     = hit.title,
            safetitle = title.replace(/"/g, "&quot;" ),
            desc      = hit.description,
            time      = _convert_seconds(hit.assignment_duration_in_seconds),
            reward    = '$' + hit.monetary_reward.amount_in_dollars.toFixed(2),
            avail     = hit.assignable_hits_count;
    

    Fix
    Code:
     for (var i = 0; i < hits.length; i ++) {
        var hit = hits[i],
            req_name  = hit.requester_name,
            req_id    = hit.requester_id,
            req_link  = hit.requester_url,
            req_link  = 'https://worker.mturk.com/requesters/' + hit.requester_id + '/projects?',
            con_link  = 'https://www.mturk.com/mturk/contact?requesterId=' + hit.requester_id,
            group_id  = hit.hit_set_id,
            prev_link = hit.project_tasks_url,
            prev_link = 'https://worker.mturk.com/projects/' + hit.hit_set_id + '/tasks?',
            pand_link = hit.accept_project_task_url,
            pand_link = 'https://worker.mturk.com/projects/' + hit.hit_set_id + '/tasks/accept_random?',
            title     = hit.title,
            safetitle = title.replace(/"/g, "&quot;" ),
            desc      = hit.description,
            time      = _convert_seconds(hit.assignment_duration_in_seconds),
            reward    = '$' + hit.monetary_reward.amount_in_dollars.toFixed(2),
            avail     = hit.assignable_hits_count;
    
    Disclaimer: I am not a coder! I don't think this broke anything but IDK!
     
    • Today I Learned Today I Learned x 2
    • Like Like x 1
  11. byesaw

    byesaw Survey Slinger

    Messages:
    2,871
    Gender:
    Male
    Ratings:
    +3,802
    That Pats - Steelers game was insane
     
    • Like Like x 2
  12. laby

    laby Survey Slinger Former MTG MotM TurkerView Masters

    Messages:
    14,838
    Gender:
    Female
    Ratings:
    +31,575
    Title: Research Study on Hypothetical Cigarettes | AcceptA
    Requester: ARRC [A4NJMKW58VXL6] Contact
    TV: [Hrly: $4.82] [Pay: 1.00] [Fast: null] [Comm: null] [Rej: 0] [ToS: 0] [Blk: 0]
    TO: [Pay: 3.71] [Fast: 4.31] [Comm: 3.67] [Fair: 4.61] [Reviews: 238] [ToS: 3]
    TO2: [Hrly: $6.59] [Pen: 0.09 days] [Res: ---] [Rec: 50% of 2] [Rej: 0] [ToS: 0] [Brk: 0]
    Reward:
    $3.00
    Duration: 1 hour 30 minutes
    Available: 1
    Description: You will complete demographic, current cigarette usage, and current purchase behavior questions. You will participate in a hypothetical purchase task and decision-making task about cigarettes. Includes a brief 4-8 question unpaid qualification test.
    Requirements: TakenLNETM DoesNotExist; Total approved HITs GreaterThanOrEqualTo 50; HIT approval rate (%) GreaterThanOrEqualTo 90; Location EqualTo US
     
    • Nom Nom Nom! Nom Nom Nom! x 1
  13. Jenni

    Jenni Well-Known Turker

    Messages:
    1,291
    Gender:
    Female
    Ratings:
    +2,982
    Title: Pictures and Judgement (~5-10 min for $1.00) | Accept
    Requester: Brock Bastian [AB7F6PMGV5XY3] Contact
    TV: No Reviews
    TO: [Pay: 3.43] [Fast: 4.81] [Comm: 4.43] [Fair: 4.69] [Reviews: 116] [ToS: 0]
    TO2: [Hrly: $15.00] [Pen: ---] [Res: ---] [Rec: 100% of 1] [Rej: 0] [ToS: 0] [Brk: 0]
    Reward:
    $1.00
    Duration: 4 hours
    Available: 50
    Description: View an image from the internet and then answer some questions about your emotions, attitudes and beliefs.
    Requirements: Total approved HITs GreaterThan 500; HIT approval rate (%) GreaterThanOrEqualTo 95; Location EqualTo US
    HIT exported from Mturk Suite v1.26.4
     
    • Nom Nom Nom! Nom Nom Nom! x 3
  14. gurlondrums

    gurlondrums Cracker of the Step Whip

    Messages:
    27,160
    Gender:
    Female
    Ratings:
    +76,023
    [​IMG]
     
    • LOL LOL x 1
  15. byesaw

    byesaw Survey Slinger

    Messages:
    2,871
    Gender:
    Male
    Ratings:
    +3,802
    [​IMG]
     
    • LOL LOL x 1
  16. Totally Not Salem

    Totally Not Salem Survey Slinger

    Messages:
    5,664
    Gender:
    Male
    Ratings:
    +5,034
  17. jessers

    jessers Survey Slinger

    Messages:
    14,710
    Gender:
    Female
    Ratings:
    +44,814
    Testing:
    Title: POLL: Will bitcoin move above $20,000 by Christmas? (~1 minute) | PANDA
    Requester: Zakk Buckley [A1XLVM8BGXY5N3] (Contact)
    (TO): [Pay: N/A] [Fair: N/A] [Comm: N/A] [Fast: N/A]
    Description:
    Click "Agree" or "Disagree" to state whether you believe bitcoin will be above or below $20,000 by Christmas
    Time: 24 hour(s)
    HITs Available: 1
    Reward: $0.10
    Qualifications: Total approved HITs GreaterThanOrEqualTo 50; HIT approval rate (%) GreaterThanOrEqualTo 85;
     
    • Nom Nom Nom! Nom Nom Nom! x 1
  18. Ballistic406

    Ballistic406 Survey Slinger

    Messages:
    3,888
    Gender:
    Male
    Ratings:
    +6,667
    No worries. It's just impossible to work batches effectively from the new queue. Ended up just clicking the continue work button in wwwPC
     
    • Like Like x 1
  19. jessers

    jessers Survey Slinger

    Messages:
    14,710
    Gender:
    Female
    Ratings:
    +44,814
    You did a thing!! :flail:

    Thanks dude, as always.
     
    • Like Like x 2
  20. gurlondrums

    gurlondrums Cracker of the Step Whip

    Messages:
    27,160
    Gender:
    Female
    Ratings:
    +76,023
    [​IMG]
     
    • Love Love x 1