Skip to content

Instantly share code, notes, and snippets.

View lostintangent's full-sized avatar

Jonathan Carter lostintangent

  • GitHub Staff
  • Seattle, WA
  • 12:12 (UTC -07:00)
  • X @lostintangent
View GitHub Profile
@slopp
slopp / handout.Rmd
Created October 27, 2017 12:51
LaTex + RMD
---
title: \textbf{USING RSTUDIO WITH TERADATA \\ \large RStudio makes it easy to access and analyze your data with R}
geometry: margin=0.6in
output:
pdf_document:
fig_caption: false
pandoc_args: [
"-V", "classoption=twocolumn"
]
---
@kamikat
kamikat / trig.scss
Last active December 7, 2023 12:50
SCSS/SASS module calculating sin/cos/tan using Taylor Expansion.
///////////////////////////////////////////////////////////
// Plain SASS Trigonometry Algorithm in Taylor Expansion //
// //
// Based on //
// http://japborst.net/posts/sass-sines-and-cosines //
///////////////////////////////////////////////////////////
$pi: 3.14159265359;
$_precision: 10;