Can't Find Great Hits? 5/22 There, They're, Their THURSDAY

Discussion in 'Great HITs' started by lanone, May 22, 2014.

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

    lanone User

    Joined:
    Apr 10, 2013
    Messages:
    6,100
    Likes Received:
    0
  2. Wiggles

    Wiggles Popular Stranger

    Joined:
    Jan 8, 2014
    Messages:
    9,245
    Likes Received:
    0
  3. nanaki254

    nanaki254 User

    Joined:
    Jul 13, 2013
    Messages:
    7,619
    Likes Received:
    0
  4. elt

    elt User

    Joined:
    Feb 19, 2013
    Messages:
    2,300
    Likes Received:
    139
    Title: Interact with other Turkers in a fictional scenario in which you can earn more money - Deer
    Requester: Kyle Thomas [A36GMJHM1BWY1A] (TO)
    TO Ratings:
    4.48 Communicativity
    4.72 Generosity
    4.92 Fairness
    4.50 Promptness
    Number of Reviews: 58
    (Submit a new TO rating for this requester)
    Description: You will read a short scenario, and then make some decisions based on what you read. You will have the opportunity to earn more money based on these decisions. Survey takes about 5 minutes.
    Reward: $0.40 Time Allotted: 3 hours
    Qualifications: Total approved HITs is not less than 1000, HIT approval rate (%) is not less than 95, Location is US
     
  5. Delphy

    Delphy User

    Joined:
    Feb 17, 2014
    Messages:
    2,313
    Likes Received:
    0
  6. ledkm

    ledkm User

    Joined:
    Nov 15, 2012
    Messages:
    343
    Likes Received:
    112
    I wish I had a hit to rec, but I don't. It's late/early.

    However, if you like laughs -- @keonovak is the best. So follow her (HIM, it's BJ Novak on the sly) and it's so lulzy.
     
  7. Ryberg

    Ryberg User

    Joined:
    Mar 2, 2012
    Messages:
    4,903
    Likes Received:
    0
    768 of those UPC HITs so far. My hand is killin' me.
     
  8. Flatcap

    Flatcap User

    Joined:
    Aug 18, 2013
    Messages:
    251
    Likes Received:
    0
    For anyone that plays FTL:

    [​IMG]
     
  9. Tendrin

    Tendrin User

    Joined:
    May 18, 2014
    Messages:
    3,212
    Likes Received:
    0
    Evening, folks!
     
  10. lanone

    lanone User

    Joined:
    Apr 10, 2013
    Messages:
    6,100
    Likes Received:
    0
    Do you ahk?
     
  11. TheMightyUnicorn

    Joined:
    May 7, 2014
    Messages:
    2,113
    Likes Received:
    0
    care to share link?
     
  12. kprabhakar2020

    kprabhakar2020 New Member

    Joined:
    May 22, 2014
    Messages:
    1
    Likes Received:
    0
    hai
    yes this is not real life
     
  13. adaaaam

    adaaaam Banned

    Joined:
    Jan 10, 2013
    Messages:
    6,861
    Likes Received:
    0
    Use this in ahk
    Code:
    `::Send {LCtrl down}{LShift down}{Tab}{LCtrl up}{LShift up}
    return
    1::Send ^{Tab}
    return
    2::
    Send ^c^n
    Sleep 100
      aeroTaskBarHeight := 29 ; put here the height of your taskbar
      WinGetTitle, currentWindow, A ; get the active window title
      WinGetPos, aeroX, aeroY, aeroWidth, aeroHeight, A ; get active window x,y,W,H
      WinGet, active_id, ID, A ; get active window ID (like 0xc00dc)
      ; / if window is already exactly at left
      if (aeroX=0 && aeroY=0 && aeroWidth=(A_ScreenWidth/2) && aeroHeight=(A_ScreenHeight-
    
    aeroTaskBarHeight))
      {
        ; / let's check if we have the center position memorized..
      	aeroAlreadyMemorizedAt := 0 ; reset (not found memorized anywhere yet)
        loop
          if aeroAllMemorized%A_Index% ; we have to check if active ID already has a memory slot
          { ; FYI: aeroAllMemorized[1..n] = "ID x y W H"
            stringsplit, tempArray, aeroAllMemorized%A_Index%, %A_Space%
            if (tempArray1=active_id)
            {
              aeroAlreadyMemorizedAt := %A_Index%
              break
            }
          } else break
        if (aeroAlreadyMemorizedAt=0) ; we didn't find center memorized, so let's just move the 
    
    window to x-center
          WinMove, %currentWindow%,, aeroWidth/2, 0
        else ; we found the center, so let's put the window at memorized center
        {
        	stringsplit, tempArray, aeroAllMemorized%aeroAlreadyMemorizedAt%, %A_Space%
          WinMove, %currentWindow%,, tempArray2, tempArray3, tempArray4, tempArray5
        }
      }
      ; / if window is exactly at right
      else if (aeroX=(A_ScreenWidth/2) && aeroY=0 && aeroWidth=(A_ScreenWidth/2) && aeroHeight=
    
    (A_ScreenHeight-aeroTaskBarHeight))
        WinMove, %currentWindow%,, 0, 0, (A_ScreenWidth/2), (A_ScreenHeight-aeroTaskBarHeight)
      else ; we have to memorize this "center" position
      {
      	aeroAlreadyMemorizedAt := 0 ; reset (not found memorized anywhere yet)
      	memoryBankSize = 0 ; reset
        loop
          if aeroAllMemorized%A_Index% ; we have to check if active ID already has a memory slot
          {
          	memoryBankSize++
            stringsplit, tempArray, aeroAllMemorized%A_Index%, %A_Space%
            if (tempArray1=active_id)
            {
              aeroAlreadyMemorizedAt := %A_Index%
              aeroAllMemorized%A_Index% := active_id . " " . aeroX . " " . aeroY . " " . aeroWidth 
    
    . " " . aeroHeight
              break
            }
          } else break
        if (aeroAlreadyMemorizedAt=0) ; if we didn't find an old memory slot for this ID
        {
          memoryBankSize++ ; let's create a new memory slot
          aeroAllMemorized%memoryBankSize% := active_id . " " . aeroX . " " . aeroY . " " . 
    
    aeroWidth . " " . aeroHeight
        }
      WinMove, %currentWindow%,, (A_ScreenWidth/2), 0, (A_ScreenWidth/2), (A_ScreenHeight-
    
    aeroTaskBarHeight)
      }
    Sleep 50
    clipboard.=" UPC"
    Send ^v{Enter}
    return
    `: tab left, 1: tab right, 2: copy highlighted text, google in new right-snapped window
     
    #13 adaaaam, May 22, 2014
    Last edited by a moderator: May 22, 2014
  14. Ryberg

    Ryberg User

    Joined:
    Mar 2, 2012
    Messages:
    4,903
    Likes Received:
    0
    Yessir, been AHK'ing for the past few hrs. My hand hates me right now.

    ---Edit--

    My bad, thought you meant A9. Unaware of ahk.
     
    #14 Ryberg, May 22, 2014
    Last edited by a moderator: May 22, 2014
  15. Ryberg

    Ryberg User

    Joined:
    Mar 2, 2012
    Messages:
    4,903
    Likes Received:
    0
    You have masters qual?
     
  16. TurkingBear

    Joined:
    May 8, 2013
    Messages:
    16,225
    Likes Received:
    5
    But do you bhk? Huh bk?
     
  17. ledkm

    ledkm User

    Joined:
    Nov 15, 2012
    Messages:
    343
    Likes Received:
    112
    I don't know if it hurts me or helps me, but I request Masters daily. Literally every day.

    My stats are excellent.

    HITs Submitted 81040 —
    ... Approved 81002 100.0%

    I know it's random and fodder, but I do it because I like to think I'm annoying someone in charge. Seriously.
     
  18. purple

    purple User

    Joined:
    Jul 22, 2013
    Messages:
    646
    Likes Received:
    0
    I have a little over 90,000 and 100 percent and I still don't have it either. I hope every time I see it handed out. Maybe one of these times we will get it.
     
  19. xailos

    xailos User

    Joined:
    Mar 23, 2014
    Messages:
    4,115
    Likes Received:
    3
    I recommend wearing road flares and going to Amazon headquarters. Threaten to blow up the building unless they give you masters. Rumor has it that has worked before.
     
  20. Tendrin

    Tendrin User

    Joined:
    May 18, 2014
    Messages:
    3,212
    Likes Received:
    0
    Slim pickings so far!
     
Thread Status:
Not open for further replies.

Share This Page