Skip to content

Instantly share code, notes, and snippets.

View benlcollins's full-sized avatar
🎓
Working on a new course 📚

Ben Collins benlcollins

🎓
Working on a new course 📚
View GitHub Profile
@benlcollins
benlcollins / TablesTestColumnCalculationScript.js
Last active March 4, 2022 21:17
Google Tables (Area 120) test column calculation in Apps Script
/**
* MULTIPLIES two number column values and saves into a column
* @param tableId - id of the table to read row data from
* @param rowId - id of the row to read data from and update
* @param lowValue - low value from Table
* @param highValue - high value from Table
* @param feeValue - fee value from Table
*/
function multiply(tableId, rowId, lowValue, highValue, feeValue) {
@benlcollins
benlcollins / index.html
Last active February 7, 2020 21:24
Multi-series line chart from a CSV file of technology stocks
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>d3 multi-line chart</title>
<!-- // <script src="js/d3.min.js" type="text/javascript"></script> -->
<!-- <link href="css/stylesheet.css" rel="stylesheet" /> -->
<style>
.line {
fill: none;