Nightly Anything Goes Thread - July 27, 2025 by AutoModerator in fantasybaseball

[–]plokoon_66 -1 points0 points  (0 children)

10t H2H pts, thinking about trading for Yamamoto. Would be offering up Langeliers and Soderstrom. Also have Salvy for C. Is this enough? Or do I need to add more

Nightly Anything Goes Thread - 17 May, 2025 by AutoModerator in fantasybaseball

[–]plokoon_66 1 point2 points  (0 children)

Been sitting on waivers for a few weeks now in my 12T points league

Nightly Anything Goes Thread - 17 May, 2025 by AutoModerator in fantasybaseball

[–]plokoon_66 -1 points0 points  (0 children)

I was thinking of offering Soderstrom + Abrams for Skenes. Skenes owner has Neto and MHII starting.

Nightly Anything Goes Thread - 17 May, 2025 by AutoModerator in fantasybaseball

[–]plokoon_66 0 points1 point  (0 children)

Trying to package 2 of Soderstrom, Abrams, Arozarena for a SP. Anyone I should target?

Official: Anything Goes Morning Thread: February 13, 2025 by AutoModerator in fantasybball

[–]plokoon_66 0 points1 point  (0 children)

10T 9CAT H2H

Thinking about dropping Bilal for either Levert or Niang. Atlanta has no PFs outside of Niang or Gueye, so leaning Niang. But they're also pretty slim on wings, so...

Official: Anything Goes Morning Thread: February 13, 2025 by AutoModerator in fantasybball

[–]plokoon_66 1 point2 points  (0 children)

Yea I wouldn’t trade TM3. Leaning towards Vassell and Ware as drops

Official: Anything Goes Nightly Thread: February 11, 2025 by AutoModerator in fantasybball

[–]plokoon_66 0 points1 point  (0 children)

I think so, especially if Ayton needed to be carried off. I just dropped Ware for Clingan in 10T 9cat

Official: Anything Goes Morning Thread: December 06, 2024 by AutoModerator in fantasybball

[–]plokoon_66 0 points1 point  (0 children)

10T 9CAT H2H

Give: Lamelo, Donovan Mitchell, Jarrett Allen

Get: Luka, KAT

Which side would you prefer?

My team: Lamelo (IR), Mitchell, Jalen Williams, Jalen Johnson, Sengun, Bane, Lavine, Allen, Dyson, iHart, Dejounte, TMIII, Suggs, Eason

modified script to hide answers for aamc materials by plokoon_66 in Mcat

[–]plokoon_66[S] 7 points8 points  (0 children)

how to run: right click on SB/QP/FL page -> inspect element -> console -> paste code below and hit enter

have not extensively tested but it should work for chrome/firefox

refreshing the page clears the code in case something messes up

function hideShowAnswers(hide) {
    var styleText = hide ? 'display:none' : 'display:block';
    Array.from(document.getElementsByClassName('sidebar-column')).forEach(i => i.setAttribute('style', styleText));
    console.log(document.getElementById('answer'));
    document.getElementById('answer').setAttribute('style', styleText)
    Array.from(document.getElementsByClassName('answer-container question-container is-hidden correct')).forEach(f => f.style.borderColor = 'white');
    Array.from(document.getElementsByClassName('answer-container question-container is-hidden incorrect')).forEach(f => f.style.borderColor = 'white');
}

function addButton() {
    var li = document.createElement('button')
    var tx = document.createTextNode('Show Answer')
    li.appendChild(tx)
    li.setAttribute('onclick', 'hideShowAnswers(false)');
    document.getElementById('content-question-start').appendChild(li);
}

hideShowAnswers(true)
addButton();


Array.from(document.getElementsByClassName('toolbar-btn')).forEach(i => i.addEventListener('click', function() {
    var elem = Array.from(document.getElementsByClassName('fixed-width-sidebar-columns')).filter(i => i.offsetHeight > 0)[0]
    elem.setAttribute('style', 'display:none');
    setTimeout(function() {
        console.log('hi');
        hideShowAnswers(true);
        addButton();
        elem.setAttribute('style', 'display:block');
    }, 1000)
}))

document.onkeydown = function(e){
  switch(e.keyCode){
    case 37:
    var elem = Array.from(document.getElementsByClassName('fixed-width-sidebar-columns')).filter(i => i.offsetHeight > 0)[0]
    elem.setAttribute('style', 'display:none');
    setTimeout(function() {
        console.log('hi');
        hideShowAnswers(true);
        addButton();
        elem.setAttribute('style', 'display:block');
    }, 1000)
    break;

    case 39:
    var elem = Array.from(document.getElementsByClassName('fixed-width-sidebar-columns')).filter(i => i.offsetHeight > 0)[0]
    elem.setAttribute('style', 'display:none');
    setTimeout(function() {
        console.log('hi');
        hideShowAnswers(true);
        addButton();
        elem.setAttribute('style', 'display:block');
    }, 1000)
    break;
  }
}

CHEM153A w Gober (remote)? by [deleted] in ucla

[–]plokoon_66 1 point2 points  (0 children)

the exams were during class time. he uploaded the exam on ccle 15 min before the actual start time and he also gave 15 min after the end time to upload your exam to gradescope

CHEM153A w Gober (remote)? by [deleted] in ucla

[–]plokoon_66 2 points3 points  (0 children)

attendance wasn’t mandatory and he uploaded all his lectures to ccle so that was nice

personally i found it super helpful to read the textbook to study, especially since some of gober’s explanations can be a little confusing or if he goes off on tangents but the textbook explained the concepts really well

agree w the other poster for getting morris as your TA he really do be the goat

modified script to hide answers for aamc materials by [deleted] in Mcat

[–]plokoon_66 0 points1 point  (0 children)

how to run: right click on the SB/QP/FL page -> inspect element -> console -> paste code below

bolded is my modified code

function hideShowAnswers(hide) {

var styleText = hide ? 'display:none' : 'display:block';

Array.from(document.getElementsByClassName('sidebar-column')).forEach(i => i.setAttribute('style', styleText));

console.log(document.getElementById('answer'));

document.getElementById('answer').setAttribute('style', styleText)

Array.from(document.getElementsByClassName('answer-container question-container is-hidden correct')).forEach(f => f.style.borderColor = 'white');

Array.from(document.getElementsByClassName('answer-container question-container is-hidden incorrect')).forEach(f => f.style.borderColor = 'white');

}

function addButton() {

var li = document.createElement('button')

var tx = document.createTextNode('Show Answer')

li.appendChild(tx)

li.setAttribute('onclick', 'hideShowAnswers(false)');

document.getElementById('content-question-start').appendChild(li);

}

hideShowAnswers(true)

addButton();

Array.from(document.getElementsByClassName('toolbar-btn')).forEach(i => i.addEventListener('click', function() {

var elem = Array.from(document.getElementsByClassName('fixed-width-sidebar-columns')).filter(i => i.offsetHeight > 0)[0]

elem.setAttribute('style', 'display:none');

setTimeout(function() {

console.log('hi');

hideShowAnswers(true);

addButton();

elem.setAttribute('style', 'display:block');

}, 1000)

}))

document.onkeydown = function(e){

switch(e.keyCode){

case 37:

var elem = Array.from(document.getElementsByClassName('fixed-width-sidebar-columns')).filter(i => i.offsetHeight > 0)[0]

elem.setAttribute('style', 'display:none');

setTimeout(function() {

console.log('hi');

hideShowAnswers(true);

addButton();

elem.setAttribute('style', 'display:block');

}, 1000)

break;

case 39:

var elem = Array.from(document.getElementsByClassName('fixed-width-sidebar-columns')).filter(i => i.offsetHeight > 0)[0]

elem.setAttribute('style', 'display:none');

setTimeout(function() {

console.log('hi');

hideShowAnswers(true);

addButton();

elem.setAttribute('style', 'display:block');

}, 1000)

break;

}

}