Skip to content

Instantly share code, notes, and snippets.

var script = document.createElement('script');
script.src = "https://code.jquery.com/jquery-latest.min.js";
document.getElementsByTagName('head')[0].appendChild(script);
setTimeout(function() {
$("p").each(function() {
$(this).text(
$(this).text()
.replace(/\bi\b/g, "I")
.replace(/^([a-z])|[.?] ([a-z])/g, function(x) {
return x.toUpperCase()
@Pycea
Pycea / fixed_header.css
Last active June 28, 2022 08:04
Styling improvements for the ACX Substack. To load into Safari, copy the ones you want into a file, then go to Preferences > Advanced > Style sheet and select your file.
/* Fixes the header to the top of the page */
div#entry > div#main .main-menu-content {
position: relative !important;
top: 0 !important;
}
div#entry > div#main .main-menu .backdrop {
position: fixed !important;
}