08/18 - Fisticuffs Friday!

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

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

    angel Survey Slinger

    Messages:
    15,335
    Gender:
    Female
    Ratings:
    +28,737
    doesn't work..tried it just incase
     
  2. lefty

    lefty Survey Slinger

    Messages:
    18,930
    Gender:
    Female
    Ratings:
    +49,005
    I try at least once a day

    [​IMG]
     
    • Like Like x 1
    • LOL LOL x 1
  3. Salamander

    Salamander Survey Slinger

    Messages:
    6,816
    Gender:
    Female
    Ratings:
    +31,720
    just what i needed this afternoon, ty :)
     
  4. jdzane

    jdzane Survey Slinger

    Messages:
    9,239
    Gender:
    Female
    Ratings:
    +8,650
    @ChrisTurk @Hummingbirdee - your Alma mater can't plan things well. They're doing freshman weekend the weekend, ie right before the solar eclipse where the town's population is going to double (at least). So yeah, no Clemson tour for us.... There really is nothing to do out there.... Wish we had taken the later flight...
     
  5. Hummingbirdee

    Hummingbirdee Big Bird

    Messages:
    54,302
    Gender:
    Female
    Ratings:
    +115,710
    [​IMG]

    hello!
     
    • Love Love x 1
  6. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    Best CI batch ever
     
  7. lefty

    lefty Survey Slinger

    Messages:
    18,930
    Gender:
    Female
    Ratings:
    +49,005
    finally got captcha'd on worker, rip
     
  8. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    [​IMG]

    Welcome

    If you have any questions about scripts ect feel free to ask. (But we likely will be slow to respond if mturk is popping lol)
     
    • Love Love x 1
  9. Hummingbirdee

    Hummingbirdee Big Bird

    Messages:
    54,302
    Gender:
    Female
    Ratings:
    +115,710
    Go to Greenville, they have a lovely downtown with plenty to do. Anderson has a small but adorable downtown. Clemson is always jam packed this time of year, it's tradition and it would be bonkers weird to interfere with start dates or freshman weekend. And you're plenty welcome to walk around Clemson, apart from the freshman moving in and parents crying their eyes out, it will be a pretty pleasant place to be still.
     
    • Like Like x 1
  10. dan

    dan daelian

    Messages:
    28,285
    Gender:
    Male
    Ratings:
    +61,817
    Friendly Reminder: Football Unamericana. 8 minutes.
     
    • LOL LOL x 2
  11. RicanGuy86

    RicanGuy86 Survey Slinger

    Messages:
    4,452
    Ratings:
    +9,138
    Took @Melting Glacier 's adaptation of Chris' UofI script and butchered it.

    Plays sounds at half speed. 1-8 plays sound, then focuses the respective textarea. 9 focuses the submit button, then clicks it.

    Use at your own discretion.

    Code:
    // ==UserScript==
    // @name _UofI - Report what a foreign language sounds like.
    // @namespace https://turkerhub.com/
    // @version 1.0
    // @description blank
    // @author ChrisTurk - butchered by RicanGuy86
    // @include /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
    // @grant GM_log
    // @require https://code.jquery.com/jquery-3.1.0.min.js
    // ==/UserScript==
    if ($( 'body:contains(listen to eight audio clips in a foreign language)' ).length) { _cycleText(); }
    function _cycleText () {
    //for every text box in the hit, we'll cycle through and see whats already in it.
    $('textarea').each(function(){
    //lets set a variable.. why? because its slightly cleaner and shows how to do it.. its pretty simple but whatever.
    var currentText = $(this).text();
    if (currentText == 'Text goes here') {
    //ok, we're comparing the string that is in there to what we don't want, since its true we'll remove it.
    $(this).val('');
    }
    });}
    $('.audio-clips').each(function(){
    $(this).children('p:first').css('float', 'left');
    });
    $('.instructions').hide();
    $(document).keydown(function (e) {
    switch (e.which) {
    case 49: // 1
    $('audio')[1].play();
    $('audio')[1].playbackRate = 0.5;
    $('textarea').blur();
    setTimeout(function() { $('textarea[name=text1]').focus(); }, 50);
    break;
    case 50: // 2
    $('audio')[2].play();
    $('textarea').blur();
    $('audio')[2].playbackRate = 0.5;
    setTimeout(function() { $('textarea[name=text2]').focus(); }, 50);
    break;
    case 51: // 3
    $('audio')[3].play();
    $('textarea').blur();
    $('audio')[3].playbackRate = 0.5;
    setTimeout(function() { $('textarea[name=text3]').focus(); }, 50);
    break;
    case 52: // 4
    $('audio')[4].play();
    $('textarea').blur();
    $('audio')[4].playbackRate = 0.5;
    setTimeout(function() { $('textarea[name=text4]').focus(); }, 50);
    break;
    case 53: // 5
    $('audio')[5].play();
    $('textarea').blur();
    $('audio')[5].playbackRate = 0.5;
    setTimeout(function() { $('textarea[name=text5]').focus(); }, 50);
    break;
    case 54: // 6
    $('audio')[6].play();
    $('textarea').blur();
    $('audio')[6].playbackRate = 0.5;
    setTimeout(function() { $('textarea[name=text6]').focus(); }, 50);
    break;
    case 55: // 7
    $('audio')[7].play();
    $('textarea').blur();
    $('audio')[7].playbackRate = 0.5;
    setTimeout(function() { $('textarea[name=text7]').focus(); }, 50);
    break;
    case 56: // 8
    $('audio')[8].play();
    $('textarea').blur();
    $('audio')[8].playbackRate = 0.5;
    setTimeout(function() { $('textarea[name=text8]').focus(); }, 50);
    break;
    case 57: // 9
    $('#submitButton').focus();
    setTimeout(function() { $('#submitButton').click(); }, 50);
    break;
    }
    });
     
    • Today I Learned Today I Learned x 5
    • Like Like x 1
    • Love Love x 1
  12. MNHammer

    MNHammer Survey Slinger

    Messages:
    3,965
    Gender:
    Male
    Ratings:
    +23,836
    Title: 5 minute survey for $0.50 | PANDA
    Worker: Preview | Accept | Requester
    Requester: The Wharton School [ABIUW8FBC3EE7] (Contact)
    TO 1: [Pay: 3.87] [Fast: 4.60] [Comm: 4.06] [Fair: 4.65] [Reviews: 403] [ToS: 2]
    TO 2:
    [Rate: $6.21/hr] [Pen: 0.47 days] [Res: -- of 0] [Rec: 81% of 16] [Rej: 0] [ToS: 0] [Brk: 0]
    Description:
    In this survey, you will read about a scenario and answer a question about it
    Time: 30 minutes
    HITs Available: 1
    Reward: $0.50
    Qualifications: Total approved HITs is not less than 100; Rob_8_18_17 has not been granted; HIT approval rate (%) is not less than 95; Location is US;
     
    • Nom Nom Nom! Nom Nom Nom! x 13
  13. jdzane

    jdzane Survey Slinger

    Messages:
    9,239
    Gender:
    Female
    Ratings:
    +8,650
    What is your definition of 'plenty to do'? Is it basically walk around and window shopping? Hubby hates that lol.

    And yeah we could go to Clemson still but they cancelled the walking tours for the day :(
     
  14. MNHammer

    MNHammer Survey Slinger

    Messages:
    3,965
    Gender:
    Male
    Ratings:
    +23,836
    I think this graph is flipping me off.

    [​IMG]
     
    • LOL LOL x 4
  15. SoonerChris

    SoonerChris Survey Slinger

    Messages:
    5,033
    Gender:
    Male
    Ratings:
    +6,959
    First HIT I've caught this afternoon. So. Slow.
     
  16. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    [​IMG]
     
    • LOL LOL x 1
  17. dan

    dan daelian

    Messages:
    28,285
    Gender:
    Male
    Ratings:
    +61,817
    Looks a bit erect to me.
     
    • LOL LOL x 1
  18. lefty

    lefty Survey Slinger

    Messages:
    18,930
    Gender:
    Female
    Ratings:
    +49,005
    • Nom Nom Nom! Nom Nom Nom! x 14
  19. Cnaw

    Cnaw Turker

    Messages:
    106
    Ratings:
    +100
    You need to perform a NSFW occulty ritual during the Solar eclipse on August 21st 2017.
     
    • LOL LOL x 2
  20. Hummingbirdee

    Hummingbirdee Big Bird

    Messages:
    54,302
    Gender:
    Female
    Ratings:
    +115,710
    Movies, go bowling, try different bars or restaurants, see what local events are going on? Anderson has an adorable ice cream shop and they make it from scratch, it's delish. There's a marina in Anderson that's pretty, Clemson has botancial gardens, a great little downtown, you don't really need a walking tour to make your way around campus or the town. There are plenty of lakes and such. Greenvilel downtown has falls park with Liberty bridge. Falls park basically always has something going on on the weekend. There is Paris Mountain, there is Cleveland Park, the Greenville Zoo which is small but cute, Flour Field- not sure if there is a minor league game in town but worth checking, Bike tours and Segway tours in greenville. There is an escape room. Historical museums, like multiple, a ton of walking tours. There is a comedy club, there is a cafe with improv, there is a dueling pianos bar that puts on a great show. There is a distillery and several breweries around the area.

    So, yeah, a lot to do.
     
    • Today I Learned Today I Learned x 1
Thread Status:
Not open for further replies.