07/04 - Mushrooms and Freedom Monday!

Status
Not open for further replies.

Devil_Dawg

Marine, Husband, Father, Grand Father
Contributor
Joined
Jan 13, 2016
Messages
10,971
Reaction score
31,075
Points
1,388
Age
60
Gender
Male
Title: Your Impressions of Different Consumer Products | PANDA
Requester: Daniel B Shank [A3DILO7NIHHPU1] (TO)
TO Ratings:
★★★★★ 5.00 Communicativity
★★★★ 4.38 Generosity
★★★★★ 5.00 Fairness
★★★★★ 5.00 Promptness
Number of Reviews: 30 | TOS Flags: 0
Submit a new TO review
Description: We ask about your impressions of meanings associated with different consumer products, devices, and physical objects
Time: 1 hour 10 minutes
HITs Available: 39
Reward: $1.50
Qualifications: Total approved HITs is not less than 50;HIT approval rate (%) is not less than 95;Location is US
 

MrNewVegas

Not a player i just Turk alot
Joined
Jun 16, 2016
Messages
50
Reaction score
55
Points
218
Age
36
Gender
Male
might need some therapy after doing these pep video hits. why's everyone calling me stupid and telling me my smile is ugly? gee thanks
 
Last edited:

Drwho10

Mister Gank Yo Hits
Contributor
Joined
Jan 11, 2016
Messages
12,350
Reaction score
20,568
Points
1,388
Age
31
Location
Long Beach, CA
Gender
Male
I've only been to a few of them, but wouldn't mind checking more out.

These are the places I have went to. I don't know if you have checked them out. If you have any food spots you frequent, I would appreciate any recommendations:

1. Golden Bowl -Teriyaki Chicken/Beef(Atlantic & Bixby)
2. Asian Chef - Sweet and Sour Pork/Orange Chicken are decent (Atlantic & 35th St)
3. Santa Fe Imports - Tuna, Meatball, Special subs are great. The potato salad is delicious (Santa Fe Ave & W 14th St)
4. Los Compadres- Great Enchiladas, Fajitas, and Jamaica/Horchata drinks. (Colorado & Anaheim)
5. 3 Brothers Authentic Mexican Grill - Great California/Carne Asada Fries Burrito and Carne Asada Fries.
6. Angel Food Donuts - Cheese Danish/Ham Cheese are good (Santa Fe & West Cameron St)
Awesome! Been to all those except asian chef i'll have to try it out. I definitely recommend Hole Mole. There's a few locations in long beach and one random one in santa ana I believe.
2. Deli News - fettuccine Alfredo with chicken or any of their pizzas (Bellflower blvd and E. Stearns)
3. Dave's Burgers - Anything its all good lol. Best burgers in town (Wardlow and Atlantic)
4. England Fish & Chips - ...the fish and chips... awesome place owned by this old asian lady and her husband best fish and chips i've had in california (Willow and Pacific Ave)
5. Jack's on Broadway - grilled chicken teriyaki sub (Broadway and Redondo)
6. Berth 55 Fish Market and Seafood Deli - Salmon and Shrimp combo or Halibut and Shrimp combo...other stuff is tasty and fresh too ( 555 Pico Ave... its kinda tricky over there since its by the docks so make sure you look it up on your phone and set the gps so you don't get lost lol)

These come to mind but i'm sure there's a bunch more i'm leaving out lol
 
  • Like
Reactions: Ghost Awakening

El Pablo

ಠ_ಠ
Contributor
Joined
Jan 12, 2016
Messages
6,831
Reaction score
13,459
Points
1,063
Location
The Upside Down
Gender
Male
https://greasyfork.org/en/scripts/21149-pep-rate-6-sec-video-clips

okay, I was able to make a script that puts default answers for Pep, I just cant get the age to work if anyone wants to look at it. the age code is now working
Code:
// ==UserScript==
// @name         Pep
// @namespace    https://greasyfork.org/en/users/27845
// @version      0.1
// @description  Pep
// @author       Pablo Escobar
// @include      *
// @require      https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @grant        none
// ==/UserScript==


$('[name=Q1Emotion] option').filter(function() {
    return ($(this).text() == 'Neutral/no emotion'); //To select Neutral/no emotion
}).prop('selected', true);

$('[name=Q2Feeling] option').filter(function() {
    return ($(this).text() == '4. Neither upset nor happy'); //To select 4. Neither upset nor happy
}).prop('selected', true);

$('[name=Q3Arousal] option').filter(function() {
    return ($(this).text() == '1. Calm, completely relaxed, and/or sleepy'); //To select 1. Calm, completely relaxed, and/or sleepy
}).prop('selected', true);

$('[name=Q4Believability] option').filter(function() {
    return ($(this).text() == '7. Extremely believable'); //To select 7. Extremely believable
}).prop('selected', true);

$('[name=Q5Sex] option').filter(function() {
    return ($(this).text() == '1. Male'); //To select 1. Male
}).prop('selected', true);

$('[name=Q6Age]').val("38"); //To set your age
 
Last edited:

Babadooba

Active Member
Contributor
Joined
Jan 12, 2016
Messages
841
Reaction score
1,387
Points
468
Age
35
Gender
Male
okay, I was able to make a script that puts default answers for Pep, I just cant get the age to work if anyone wants to look at it.
Code:
// ==UserScript==
// @name         Pep
// @namespace    https://greasyfork.org/en/users/27845
// @version      0.1
// @description  Pep
// @author       Pablo Escobar
// @include      *
// @require      https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @grant        none
// ==/UserScript==


$('[name=Q1Emotion] option').filter(function() {
    return ($(this).text() == 'Neutral/no emotion'); //To select Neutral/no emotion
}).prop('selected', true);

$('[name=Q2Feeling] option').filter(function() {
    return ($(this).text() == '4. Neither upset nor happy'); //To select 4. Neither upset nor happy
}).prop('selected', true);

$('[name=Q3Arousal] option').filter(function() {
    return ($(this).text() == '1. Calm, completely relaxed, and/or sleepy'); //To select 1. Calm, completely relaxed, and/or sleepy
}).prop('selected', true);

$('[name=Q4Believability] option').filter(function() {
    return ($(this).text() == '7. Extremely believable'); //To select 7. Extremely believable
}).prop('selected', true);

$('[name=Q5Sex] option').filter(function() {
    return ($(this).text() == '1. Male'); //To select 1. Male
}).prop('selected', true);

$('[name=Q6Age]').text("38"); //To set your age
change .text to .val
 
Last edited:
  • Like
Reactions: Squatty

coffeeowl

hoo?
Contributor
Mentor
Master Pleaser
Crowd Pleaser
HIT Poster
Joined
Jan 12, 2016
Messages
28,032
Reaction score
63,933
Points
1,738
Location
Location EqualTo US
Gender
Female
Title: Brain Training Study Session 1 | PANDA
Requester: Hakwan Lau [AFBEXWB4IBJKZ] (TO)
TO Ratings:
★★★★★ 3.88 Communicativity
★★★★★ 2.45 Generosity
★★★★★ 5.00 Fairness
★★★★★ 5.00 Promptness
Number of Reviews: 14 | TOS Flags: 0
Submit a new TO review
Description: 10 Sessions -- Perform perceptual or memory judgments about a series of images and rate your confidence in those judgments
Time: 4 hours
HITs Available: 1
Reward: $4.00
Qualifications: Total approved HITs is not less than 1000;HIT approval rate (%) is not less than 98;Location is US
This one is still around just caught it.
 
  • Like
Reactions: Azazael and Squatty

SpookyMyers

"Enjoy the time you have in the meat puppet."
Contributor
Joined
Jan 31, 2016
Messages
3,033
Reaction score
4,833
Points
588
Location
Louisville, KY
Gender
Female
okay, I was able to make a script that puts default answers for Pep, I just cant get the age to work if anyone wants to look at it.
Code:
// ==UserScript==
// @name         Pep
// @namespace    https://greasyfork.org/en/users/27845
// @version      0.1
// @description  Pep
// @author       Pablo Escobar
// @include      *
// @require      https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @grant        none
// ==/UserScript==


$('[name=Q1Emotion] option').filter(function() {
    return ($(this).text() == 'Neutral/no emotion'); //To select Neutral/no emotion
}).prop('selected', true);

$('[name=Q2Feeling] option').filter(function() {
    return ($(this).text() == '4. Neither upset nor happy'); //To select 4. Neither upset nor happy
}).prop('selected', true);

$('[name=Q3Arousal] option').filter(function() {
    return ($(this).text() == '1. Calm, completely relaxed, and/or sleepy'); //To select 1. Calm, completely relaxed, and/or sleepy
}).prop('selected', true);

$('[name=Q4Believability] option').filter(function() {
    return ($(this).text() == '7. Extremely believable'); //To select 7. Extremely believable
}).prop('selected', true);

$('[name=Q5Sex] option').filter(function() {
    return ($(this).text() == '1. Male'); //To select 1. Male
}).prop('selected', true);

$('[name=Q6Age]').text("38"); //To set your age
WhooHoo! Thanks. Changed a few values and now I'm cookin'
 
  • Like
Reactions: El Pablo

TurkingMaster

Crowd Master
Banned
Joined
Jan 12, 2016
Messages
5,932
Reaction score
9,945
Points
863
Age
38
Title: Your Impressions of Different Consumer Products | PANDA
Requester: Daniel B Shank [A3DILO7NIHHPU1] (TO)
TO Ratings:
★★★★★ 5.00 Communicativity
★★★★ 4.38 Generosity
★★★★★ 5.00 Fairness
★★★★★ 5.00 Promptness
Number of Reviews: 30 | TOS Flags: 0
Submit a new TO review
Description: We ask about your impressions of meanings associated with different consumer products, devices, and physical objects
Time: 1 hour 10 minutes
HITs Available: 39
Reward: $1.50
Qualifications: Total approved HITs is not less than 50;HIT approval rate (%) is not less than 95;Location is US
Time?

Edit: Never mind did it before
 
Last edited:

MrNewVegas

Not a player i just Turk alot
Joined
Jun 16, 2016
Messages
50
Reaction score
55
Points
218
Age
36
Gender
Male
it just plugs in default answers. you can change them if you want and you will need to change the gender one if your not a dude and the age one
forgive me for sounding stupid but how do i change the age?
 
Status
Not open for further replies.