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 April 27, 2025 23:42
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 */
.main-menu > * {
position: relative !important;
top: 0 !important;
}
.main-menu > :nth-child(2) {
display: none;
}