This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array.from(document.querySelectorAll("div[data-column=asin] span")).reduce((acc, current) => acc + "," + current.innerText, ""); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var script = document.createElement('script'); | |
script.src = 'https://code.jquery.com/jquery-3.6.0.min.js'; | |
document.getElementsByTagName('head')[0].appendChild(script); | |
$(".btn.btn-link.btn-xs.quick-edit").each(function() { $( this ).click();}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$previousPrime = 2000000000; | |
for($i=0; $i<1000000; $i++){ | |
$prime = gmp_nextprime ($previousPrime); | |
echo gmp_strval($prime) . PHP_EOL; | |
$previousPrime = $prime; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> | |
</head> | |
<body> | |
<ol> | |
<li> | |
\[ | |
\frac{8 \sqrt{6}}{2 \sqrt{3}} | |
= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(":input").attr('checked', "checked"); |