├── .vscode └── settings.json ├── README.md ├── amc.html ├── collapse.js ├── curvenote.css ├── custom.css ├── elements.js ├── functions.js ├── helpers.js ├── img ├── .DS_Store ├── amc_twitter.png ├── cdr_cost_estimates.png ├── co2_decay.png ├── dac_costs.png ├── energy_cost_of_removal.png ├── kj_twitter.png ├── land_use.png ├── nas_2deg.png ├── new_canopy.png ├── nutrient_upwelling.png ├── one_time_removal.png ├── ppf-1 │ ├── .DS_Store │ ├── Nest.png │ └── tesla.png ├── ppf-1_twitter.png ├── ppf-2 │ ├── kp.png │ ├── kv.png │ ├── oil.png │ └── polysilicon.png ├── ppf-2_twitter.png ├── ppf-3 │ ├── batteries.png │ ├── developing_growth.png │ ├── eip.png │ ├── energy.png │ ├── govt_support.png │ └── markets.png ├── ppf-3_twitter.png ├── preview.png ├── solar │ ├── drivers.png │ ├── fsa_modules.png │ └── pv_price.png ├── solar_twitter.png ├── steel │ ├── ccs.png │ ├── emissions.png │ ├── hydrogen.png │ ├── netzerocorporate.png │ ├── saf.png │ └── steeltech.png ├── steel_twitter.png └── utilisation_twitter.png ├── index.html ├── kj.html ├── main.js ├── nav.html ├── posts.html ├── ppf-1.html ├── ppf-2.html ├── ppf-3.html ├── solar.html ├── steel.html ├── test.html ├── things.html ├── todo ├── tufte.css └── utilisation.html /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5502 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/README.md -------------------------------------------------------------------------------- /amc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/amc.html -------------------------------------------------------------------------------- /collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/collapse.js -------------------------------------------------------------------------------- /curvenote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/curvenote.css -------------------------------------------------------------------------------- /custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/custom.css -------------------------------------------------------------------------------- /elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/elements.js -------------------------------------------------------------------------------- /functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/functions.js -------------------------------------------------------------------------------- /helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/helpers.js -------------------------------------------------------------------------------- /img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/.DS_Store -------------------------------------------------------------------------------- /img/amc_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/amc_twitter.png -------------------------------------------------------------------------------- /img/cdr_cost_estimates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/cdr_cost_estimates.png -------------------------------------------------------------------------------- /img/co2_decay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/co2_decay.png -------------------------------------------------------------------------------- /img/dac_costs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/dac_costs.png -------------------------------------------------------------------------------- /img/energy_cost_of_removal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/energy_cost_of_removal.png -------------------------------------------------------------------------------- /img/kj_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/kj_twitter.png -------------------------------------------------------------------------------- /img/land_use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/land_use.png -------------------------------------------------------------------------------- /img/nas_2deg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/nas_2deg.png -------------------------------------------------------------------------------- /img/new_canopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/new_canopy.png -------------------------------------------------------------------------------- /img/nutrient_upwelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/nutrient_upwelling.png -------------------------------------------------------------------------------- /img/one_time_removal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/one_time_removal.png -------------------------------------------------------------------------------- /img/ppf-1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-1/.DS_Store -------------------------------------------------------------------------------- /img/ppf-1/Nest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-1/Nest.png -------------------------------------------------------------------------------- /img/ppf-1/tesla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-1/tesla.png -------------------------------------------------------------------------------- /img/ppf-1_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-1_twitter.png -------------------------------------------------------------------------------- /img/ppf-2/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-2/kp.png -------------------------------------------------------------------------------- /img/ppf-2/kv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-2/kv.png -------------------------------------------------------------------------------- /img/ppf-2/oil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-2/oil.png -------------------------------------------------------------------------------- /img/ppf-2/polysilicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-2/polysilicon.png -------------------------------------------------------------------------------- /img/ppf-2_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-2_twitter.png -------------------------------------------------------------------------------- /img/ppf-3/batteries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-3/batteries.png -------------------------------------------------------------------------------- /img/ppf-3/developing_growth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-3/developing_growth.png -------------------------------------------------------------------------------- /img/ppf-3/eip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-3/eip.png -------------------------------------------------------------------------------- /img/ppf-3/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-3/energy.png -------------------------------------------------------------------------------- /img/ppf-3/govt_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-3/govt_support.png -------------------------------------------------------------------------------- /img/ppf-3/markets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-3/markets.png -------------------------------------------------------------------------------- /img/ppf-3_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/ppf-3_twitter.png -------------------------------------------------------------------------------- /img/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/preview.png -------------------------------------------------------------------------------- /img/solar/drivers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/solar/drivers.png -------------------------------------------------------------------------------- /img/solar/fsa_modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/solar/fsa_modules.png -------------------------------------------------------------------------------- /img/solar/pv_price.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/solar/pv_price.png -------------------------------------------------------------------------------- /img/solar_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/solar_twitter.png -------------------------------------------------------------------------------- /img/steel/ccs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/steel/ccs.png -------------------------------------------------------------------------------- /img/steel/emissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/steel/emissions.png -------------------------------------------------------------------------------- /img/steel/hydrogen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/steel/hydrogen.png -------------------------------------------------------------------------------- /img/steel/netzerocorporate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/steel/netzerocorporate.png -------------------------------------------------------------------------------- /img/steel/saf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/steel/saf.png -------------------------------------------------------------------------------- /img/steel/steeltech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/steel/steeltech.png -------------------------------------------------------------------------------- /img/steel_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/steel_twitter.png -------------------------------------------------------------------------------- /img/utilisation_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/img/utilisation_twitter.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/index.html -------------------------------------------------------------------------------- /kj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/kj.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/main.js -------------------------------------------------------------------------------- /nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/nav.html -------------------------------------------------------------------------------- /posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/posts.html -------------------------------------------------------------------------------- /ppf-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/ppf-1.html -------------------------------------------------------------------------------- /ppf-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/ppf-2.html -------------------------------------------------------------------------------- /ppf-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/ppf-3.html -------------------------------------------------------------------------------- /solar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/solar.html -------------------------------------------------------------------------------- /steel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/steel.html -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/test.html -------------------------------------------------------------------------------- /things.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/things.html -------------------------------------------------------------------------------- /todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/todo -------------------------------------------------------------------------------- /tufte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/tufte.css -------------------------------------------------------------------------------- /utilisation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilhacker/scaling-carbon-removal/HEAD/utilisation.html --------------------------------------------------------------------------------