Skip to content

Instantly share code, notes, and snippets.

View luiscruz's full-sized avatar
🏄‍♂️

Luís Cruz luiscruz

🏄‍♂️
View GitHub Profile
@dcmoura
dcmoura / global_temperature_trend.sh
Last active March 30, 2022 08:18
Plot of the global temperature trend using the command-line with SPyQL and rush
http https://data.giss.nasa.gov/gistemp/tabledata_v4/GLB.Ts+dSST.csv | sed 1d |
spyql "
SELECT Year, cols[1:13] AS temps
FROM csv
TO json" |
spyql "
SELECT json->Year + ((row_number-1)%12)/12 AS year, json->temps AS temp
FROM json
EXPLODE json->temps
WHERE json->temps is not Null
@PurpleBooth
PurpleBooth / README-Template.md
Last active March 24, 2024 02:11
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites