Ask your own question, for FREE!
LaTeX Practicing! :) 15 Online
mhchen:

Testing coding, not necessarily latex but LaTeX practicing is the closest

mhchen:

|dw:1568395586379:dw| Text Test \[test\]

1 attachment
mhchen:

// ==UserScript== // @name Simplify QuestionCove // @namespace http://tampermonkey.net/ // @version 1.0 // @description Make question cove simpler // @author mhchen // @match https://questioncove.com/* // @grant none // ==/UserScript== (function() { 'use strict'; function simplifyPosts(){ let posts = document.getElementsByClassName('update-list all-questions loaded open-questions')[0].children; console.log(posts) for (let i=0;i<posts.length;i++){ posts.removeChild(posts.childNodes[0]); } let postStatuses = document.getElementsByClassName('update-status-template'); console.log(postStatuses); for (let i=0;i<postStatuses.length;i++){ postStatuses.parentNode.removeChild(postStatuses); } console.log("done"); } function start(){ if(document.getElementsByClassName('update-list all-questions loaded open-questions')[0]){ if(document.getElementsByClassName('update-list all-questions loaded open-questions')[0].children){ for(let i=0;i<2;i++){ setTimeout(simplifyPosts,100); } } else { setTimeout(start,700); } } else { setTimeout(start,700); } } setTimeout(start,400); })();

mhchen:

dangit why is this site built with a framework, makes it so much harder

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!