Skip to content

Instantly share code, notes, and snippets.

View SiccarPoint's full-sized avatar

Dan Hobley SiccarPoint

View GitHub Profile
@mrkline
mrkline / c_sharp_for_python.md
Last active June 23, 2024 14:46
An intro to C# for a Python developer. Made for one of my coworkers.

C# For Python Programmers

Syntax and core concepts

Basic Syntax

  • Single-line comments are started with //. Multi-line comments are started with /* and ended with */.

  • C# uses braces ({ and }) instead of indentation to organize code into blocks. If a block is a single line, the braces can be omitted. For example,

@paleolimbot
paleolimbot / 2018-08_paleodem.Rmd
Created August 20, 2018 23:45
Animation of the paleogeography of earth for the past 542 million years
---
title: "Paleogeography of earth for the past 542 million years"
author: "Dewey Dunnington"
date: '2018-08-20'
output: github_document
---
```{r setup, include=FALSE}
library(rvest)
library(tidyverse)