07/25 - Wooly Wednesday!

Status
Not open for further replies.

Jatis

Member
Joined
Apr 12, 2018
Messages
346
Reaction score
461
Points
263
Age
34
Gender
Male
do you have a link handy by chance?
 

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,618
Reaction score
123,839
Points
1,414
Age
123
Gender
Female
What if there are like three tops and they are all identical (no zipper no button, no hood) do i mark no or multiple?
I'm not doing the hits but it sounds like multiple would probably mean mmore than one.
 
  • Like
Reactions: FireMonkey

rsclone

This is my partner Fellatio Del Toro
Banned
Joined
Dec 17, 2016
Messages
6,128
Reaction score
12,435
Points
988
it's really tasty! give it a try. it's hard for me to eat normal versions now. it tastes so sweet and blah
that's why it's weird craving for me....I much prefer spicy and bitter and strong flavors over sweet stuff....
 
  • Like
Reactions: Despairagus

TSolo315

SnapNCrackle
Administrator
Joined
Jan 12, 2016
Messages
5,000
Reaction score
16,977
Points
2,538
Gender
Male
Title of IPSoft HIT "Creatively rephrase requests for help with specific life insurance rider claims."

Instructions: Please be very plainspoken and concise; there's no need to be creative or offbeat for this particular assignment

:cautious:
 

Jatis

Member
Joined
Apr 12, 2018
Messages
346
Reaction score
461
Points
263
Age
34
Gender
Male
Yeah my only thought is if there are three tops and they are all the same wouldn't i be saving them time by tagging all three for them? And I feel like is supported by the fact it lets me mark multiple tops for each category. But they also let me mark image didn't load for all three categories, so i think marking as multiple is correct in retrospect.
 

egryan1

Active Member
Joined
Jan 12, 2016
Messages
861
Reaction score
1,179
Points
393
Age
44
Gender
Male
Yeah my only thought is if there are three tops and they are all the same wouldn't i be saving them time by tagging all three for them? And I feel like is supported by the fact it lets me mark multiple tops for each category. But they also let me mark image didn't load for all three categories, so i think marking as multiple is correct in retrospect.
Yea in previous A9 hits they actually had an example of multiple of the same top different colors and told you that you were suppose to mark that has more then one
 

Michele

Working on degree in Moon
Contributor
HIT Poster
Joined
Feb 28, 2017
Messages
17,492
Reaction score
32,877
Points
1,388
Location
California
Gender
Female
Title: Hobbies Survey (not everyone will qualify) | Accept
Requester: Angela Listy [A1M2H0HAEXONBY] Contact
TV: [Hrly=$8.54] [Pay=2.80] [Fast=4.00] [Comm=null] [Rej=0] [ToS=0] [Blk=0]
TO: [Pay=3.04] [Fast=4.48] [Comm=3.36] [Fair=4.15] [Reviews=290] [ToS=2]
TO2: [Hrly=0.02] [Pen=2.76 days] [Res=0%] [Rec=50%] [Rej=1] [ToS=0] [Brk=8]
Reward: 0.40
Duration: 3600
Available: 1
Description: Answer a survey about your thoughts on recreational drug use.
Qualifications: HIT approval rate (%) GreaterThanOrEqualTo 98; Location EqualTo US
[tr][td]
HIT exported from Mturk Suite v2.3.7
[/td][/tr]
[tr][td][/td][/tr]
 
  • Like
Reactions: egryan1

Despairagus

Jorf Beeboos ???
Contributor
Crowd Pleaser
Joined
Feb 6, 2018
Messages
8,495
Reaction score
27,082
Points
1,263
Age
39
Gender
Female
that's why it's weird craving for me....I much prefer spicy and bitter and strong flavors over sweet stuff....
Taste twiiiiiins! Spicy/sour/bitter are crazy underrated.
 
  • Like
Reactions: rsclone

Jatis

Member
Joined
Apr 12, 2018
Messages
346
Reaction score
461
Points
263
Age
34
Gender
Male
What if buttons curve to the side and i don't see them go all the way down but they probably do
 

Minx2121

Well-Known Member
Joined
Jul 9, 2018
Messages
2,778
Reaction score
5,816
Points
763
Age
34
Gender
Female
Hit my limit for the day, but I'm motivated. If there were some proven requestors with$0.00 hits I'd probably do those. I shouldn't be encouraging them to post nothing hits though.

What to do... what to do...

What is everyone having for dinner? I made pasta salad.
Probably grilled chicken, potatoes and peas :)
 

desallemands

Member
Joined
Jul 22, 2018
Messages
348
Reaction score
761
Points
293
Gender
Female
Do you remember the name of the script that we use along with for mturk that would let you set how much you wanted to make per day, your goal, and would tell you how many hours you were on mturk ? thanks
 

egryan1

Active Member
Joined
Jan 12, 2016
Messages
861
Reaction score
1,179
Points
393
Age
44
Gender
Male
What if buttons curve to the side and i don't see them go all the way down but they probably do
Best judgement I guess it does say do you "see" buttons go all the way down.
 

egryan1

Active Member
Joined
Jan 12, 2016
Messages
861
Reaction score
1,179
Points
393
Age
44
Gender
Male
Do you remember the name of the script that we use along with for mturk that would let you set how much you wanted to make per day, your goal, and would tell you how many hours you were on mturk ? thanks
Not sure if that got ported over to the new site
 

K'Lee

The Royal Taster
Contributor
Joined
Aug 6, 2016
Messages
4,769
Reaction score
8,180
Points
838
Age
56
Gender
Female
Code:
// ==UserScript==
// @name         A9 tops -- 3ED2P6N3KZTII1LLNVI2EZLYDBT6F0
// @version      3
// @description   enter to submit
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// @require     https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

var i = 0;

window.onkeydown = function (event) {
        if(event.which == 97){
            if (i == 0){
                $('input[value="YesZipper"]').click();
            }
            if (i == 1){
                $('input[value="YesButtons"]').click();
            }
            if (i == 2){
                $('input[value="YesHood"]').click();
            }
            i++;
        }
        if(event.which == 98){
            if (i == 0){
                $('input[value="NoZipper"]').click();
            }
            if (i == 1){
                $('input[value="NoButtons"]').click();
            }
            if (i == 2){
                $('input[value="NoHood"]').click();
            }
            i++;
            }
        if(event.which == 99){
            if (i == 0){
                $('input[value="MoreThanOne"]').eq(0).click();
            }
            if (i == 1){
                $('input[value="MoreThanOne"]').eq(1).click();
            }
            if (i == 2){
                $('input[value="MoreThanOne"]').eq(2).click();
            }
            i++;
            }
        if(event.which == 100){
            if (i == 0){
                $('input[value="NotTop"]').eq(0).click();
            }
            if (i == 1){
                $('input[value="NotTop"]').eq(1).click();
            }
            if (i == 2){
                $('input[value="NotTop"]').eq(2).click();
            }
            i++;
        }
        if(event.which == 101){
            if (i == 0){
                $('input[value="NoLoad"]').eq(0).click();
            }
            if (i == 1){
                $('input[value="NoLoad"]').eq(1).click();
            }
            if (i == 2){
                $('input[value="NoLoad"]').eq(2).click();
            }
            i++;
        }
        if(event.which == 13){
            $('#submitButton').click();
        }
}
How do I add this to tampermonkey, I'm having a brain fart.
 

rsclone

This is my partner Fellatio Del Toro
Banned
Joined
Dec 17, 2016
Messages
6,128
Reaction score
12,435
Points
988
Taste twiiiiiins! Spicy/sour/bitter are crazy underrated.
that's why I wind up eating Asian 80% of the time...not many other food cultures combine all those together well....it's usually just savory or sweet....
 
  • Like
Reactions: Despairagus

egryan1

Active Member
Joined
Jan 12, 2016
Messages
861
Reaction score
1,179
Points
393
Age
44
Gender
Male
How do I add this to tampermonkey, I'm having a brain fart.
click on the tampermonkey icon there is option to create new script click that and copy and paste
 
Status
Not open for further replies.