Skip to content

Instantly share code, notes, and snippets.

View paagr's full-sized avatar
🎯
Focusing

Paolo Mason paagr

🎯
Focusing
View GitHub Profile
@paagr
paagr / ZonAnn.Ts+dSST.csv
Last active April 9, 2026 00:03
NASA GISS Surface Temperature Analysis (v4) Zonal annual means 1880-present CSV
Year Glob NHem SHem 24N-90N 24S-24N 90S-24S 64N-90N 44N-64N 24N-44N EQU-24N 24S-EQU 44S-24S 64S-44S 90S-64S
1880 -.17 -.31 -.04 -.40 -.13 -.01 -.80 -.49 -.33 -.16 -.09 -.03 .05 .69
1881 -.09 -.20 .01 -.37 .10 -.06 -.86 -.46 -.25 .09 .12 -.05 -.07 .61
1882 -.11 -.23 .00 -.32 -.05 .02 -1.36 -.28 -.18 -.06 -.04 .02 .04 .64
1883 -.18 -.30 -.06 -.36 -.17 -.01 -.14 -.56 -.30 -.19 -.14 -.03 .07 .52
1884 -.28 -.44 -.14 -.62 -.15 -.13 -1.27 -.65 -.50 -.14 -.16 -.18 -.02 .67
1885 -.34 -.45 -.24 -.66 -.14 -.27 -1.47 -.69 -.48 -.09 -.19 -.33 -.15 .84
1886 -.32 -.45 -.19 -.58 -.20 -.21 -1.55 -.51 -.42 -.24 -.17 -.19 -.20 .61
1887 -.36 -.45 -.28 -.53 -.31 -.28 -1.73 -.51 -.31 -.32 -.29 -.27 -.26 .34
1888 -.18 -.25 -.11 -.43 .09 -.28 -1.27 -.44 -.26 .04 .14 -.30 -.22 .18
@paagr
paagr / autoscroll.js
Created July 16, 2024 17:35
Auto-scroll down / Auto-scroll up js animation
// Auto-scroll down
function autoScrollDown() {
window.scrollBy(0, 1); // Adjust the second parameter to control the speed
setTimeout(autoScrollDown, 1); // Adjust the time interval
}
// Auto-scroll up
function autoScrollUp() {
window.scrollBy(0, -1); // Adjust the second parameter to control the speed
setTimeout(autoScrollUp, 1); // Adjust the time interval