Skip to content

Instantly share code, notes, and snippets.

View priscian's full-sized avatar

Jim Java priscian

  • Rochester, New York, USA
View GitHub Profile
@priscian
priscian / Palido_Ponto_Vermelho_EN.srt
Last active May 15, 2026 03:02
English subtitles for the short cosmic horror film "Pálido Ponto Vermelho" (Pale Red Dot). https://www.youtube.com/watch?v=vua2Xwregvo
1
00:00:30,000 --> 00:00:34,500
INSTITUTE OF ART SCIENCES — UFPA
2
00:00:35,000 --> 00:00:39,500
BACHELOR'S DEGREE IN
CINEMA AND AUDIOVISUAL — UFPA
3
@priscian
priscian / paleotemperature-hockey-sticks.md
Last active June 8, 2026 18:58
A list of dozens of paleoclimate studies using various temperature proxies and methods in affirmation of Michael Mann's hockey stick result, which shows strong recent hemispheric and global warming.

Paleotemperature Hockey Sticks

This is a list of paleoclimate studies [263] that use a variety of temperature proxies and methodologies in affirmation of Michael Mann's hockey stick result [1], which shows strong recent hemispheric and global warming. The last column provides an exemplary figure from each paper.

The original MBH98 paper [1] has so far been cited 1200+ times (Web of Science).

N.B. For the original text list without hyperlinks or figures, go here. It's still being updated.

What do paleotemperature studies tell us in general?

@priscian
priscian / paleoclimate-hockey-stick-studies.txt
Last active September 4, 2024 05:13
A list of dozens of paleoclimate studies using various temperature proxies and methods in affirmation of Michael Mann's hockey stick result, which shows strong recent hemispheric and global warming.
This is a list of paleoclimate studies [2–63] that use a variety of temperature
proxies and methodologies in affirmation of Michael Mann's hockey stick result
[1], which shows strong recent hemispheric and global warming.
1. Mann ME, Bradley RS, & Hughes MK: Global-scale temperature patterns and
climate forcing over the past six centuries. Nature 392(6678):779–787, 1998.
dx.doi.org/10.1038/33859.
2. Jones PD, Briffa KR, Barnett TP, & Tett SFB: High-resolution palaeoclimatic
records for the last millennium: Interpretation, integration and comparison with
@priscian
priscian / plot_exxon-1982-v-instrumental.R
Created October 28, 2018 07:14
Plotting Current Instrumental Temp. Series against the Exxon 1982 Projections
#jjmisc::reload_all("climeseries", redocument = FALSE)
library(climeseries) # devtools::install_github("priscian/climeseries")
library(png)
pngFileName <- system.file("inst/images/1982-Exxon-Memo-to-Management-About-CO2_edited.png", package = "climeseries")
img <- readPNG(pngFileName, info = TRUE)
info <- attr(img, "info")
## N.B. Change this to a directory where you'd like to store the image.
setwd("C:/Users/priscian/Downloads/images/climate")
@priscian
priscian / Ljungqvist 2010 Reconstruction+HadCRUT4_0004.6-2017.9_ma120_baseline1961-1990.R
Created January 20, 2018 20:42
Plots the Ljungqvist 2010 temperature reconstruction series along with the instrumental HadCRUT4 30N-90N (120-mo. moving average) temp series.
library(climeseries) # devtools::install_github("priscian/climeseries")
library(xlsx)
ljungqvist <- xlsx::read.xlsx2(system.file("extdata/paleo/ljungqvist2010.xls", package="climeseries"), sheetName="Reconstruction", startRow=11, check.names=FALSE, stringsAsFactors=FALSE)
matches <- str_match(ljungqvist$Decade, "(\\d+)\u2013(\\d+)")
ljungqvist$yr_part <- apply(matches[, 2:3], 1, function(x) mean(as.numeric(x)))
yearRange <- range(as.numeric(matches[, 2:3]))
allYears <- seq(yearRange[1], yearRange[2])