07/27 - Fiber Friday!

Pizza: Is it a medicine?


  • Total voters
    70
  • Poll closed .
Status
Not open for further replies.

GTR

Well-Known Member
Joined
Feb 10, 2016
Messages
10,278
Reaction score
22,985
Points
1,313
Gender
Male
rush is it made of metal or rock? yeah, progressive
toddler Does this person have employees? rich ones do
diarhea can it be mean? it can be downright shitty
pig can you eat off of it? if you can get it to stand still
happiness can you buy it? not with turk money
death is it fun? yeah, can't wait
 

Jatis

Member
Joined
Apr 12, 2018
Messages
346
Reaction score
461
Points
263
Age
34
Gender
Male
biggest complaint is how long it takes the final video to start.
 

Despairagus

Jorf Beeboos ???
Contributor
Crowd Pleaser
Joined
Feb 6, 2018
Messages
8,495
Reaction score
27,082
Points
1,263
Age
39
Gender
Female
I hate how you have to answer the 1st part over and over again. That's supposed to be a 1 time thing.
I honestly thought I was doing something wrong and returned a ton of them b/c I thought I had just been plowing through the same video over and over again. It'd be nice not to do the training each time.
 
  • Like
Reactions: theturkscribe

Starslip

Well-Known Member
Contributor
Crowd Pleaser
Joined
Jan 19, 2016
Messages
13,351
Reaction score
35,529
Points
1,588
Age
124
Gender
Male
I hate how you have to answer the 1st part over and over again. That's supposed to be a 1 time thing.
NDA and training should be a one time thing, but they're lazy
 
  • Like
Reactions: MarkC

Jatis

Member
Joined
Apr 12, 2018
Messages
346
Reaction score
461
Points
263
Age
34
Gender
Male
I honestly thought I was doing something wrong and returned a ton of them b/c I thought I had just been plowing through the same video over and over again. It'd be nice not to do the training each time.
it's their attention check because they swap the videos and swap the options
 
  • Like
Reactions: Despairagus

GTR

Well-Known Member
Joined
Feb 10, 2016
Messages
10,278
Reaction score
22,985
Points
1,313
Gender
Male
Code:
// ==UserScript==
// @author      ZSMTurker
// @name        ZSMTurker's Larger Radio Buttons and Checkboxes EXTRA LARGE 2
// @namespace   https://greasyfork.org/users/2291
// @description Makes radio buttons and checkboxes larger. Applies to every webpage
//              so turn it off if you don't need it, it can slow things down.
// @match       http://*/*
// @match       https://*/*
// @require     http://code.jquery.com/jquery-latest.min.js
// @version     0.1
// ==/UserScript==

/* Function that injects CSS rules */
function injectStyles( rule ) {
    var div = $( '<div />', {
        html: '&shy;<style>' + rule + '</style>'
    } ).appendTo( 'body' );
}

/*Individual calls to add styles */
injectStyles( 'input[type=radio] { display:inline-block; width: 5.0em; height: 3.5em; vertical-align: middle }' );
injectStyles( 'input[type=checkbox] { display:inline-block; width: 5.0em; height: 3.5em; vertical-align: middle }' );
i took ZSMTurker and made the radio buttons even bigger for those that need even bigger
 
Status
Not open for further replies.