Skip to content

Instantly share code, notes, and snippets.

View jdthorpe's full-sized avatar
💭
Can we all just agree it's pronounced "kubernetes"

Jason Thorpe jdthorpe

💭
Can we all just agree it's pronounced "kubernetes"
View GitHub Profile
@jdthorpe
jdthorpe / Example-file.ts
Last active February 11, 2024 23:06
Webpack vs. Rollup vs. parcel.js vs. typescript bundles
// this requires `namedExports` to work with rollup:
import {join } from "lodash";
// this works with both webpack and rollup and yields a smaller package:
// import join from "lodash/join";
// this works everythere, of course:
// import _ from "lodash"
// this works everwhere because it's an external module and isn't bundled by webpack or rollup:
@jdthorpe
jdthorpe / package-lock.json
Created August 23, 2018 21:17
Resources for re-capitulating data-lake download errors
{
"requires": true,
"lockfileVersion": 1,
"dependencies": {
"@types/bluebird": {
"version": "3.5.23",
"resolved": "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.23.tgz",
"integrity": "sha512-xlehmc6RT+wMEhy9ZqeqmozVmuFzTfsaV2NlfFFWhigy7n6sjMbUUB+SZBWK78lZgWHA4DBAdQvQxUvcB8N1tw=="
},
"@types/fs-extra": {
@jdthorpe
jdthorpe / kld.d.ts
Created August 12, 2018 17:16
A stub with some typescript typings for kld-intersections and kld-path-parser
declare module "kld-intersections" {
class Shape {}
export class Point2D {
constructor(x:number,y:number)
}
class Bezier2 extends Shape {
@jdthorpe
jdthorpe / README.md
Last active August 8, 2018 05:02
Better Typings for react-dnd

The standard typings for react-dnd suck. In particular

  • They ignore the fact that thre props recieved by the wrapped component are a union of the props passed in to the react-dnd HOC and props collected by react-dnd collectors
  • Items are assigned type Object
  • DropResults are assigned the type Object

These types are a work and progress, which means they suck too. They just suck a little less than the standard typings

@jdthorpe
jdthorpe / Dealing with JSDOM Memory Usage.md
Last active March 8, 2019 04:47
Dealing with JSDOM Memory Usage

The Problem

You're using the awesome JSDOM package to process a few hundred html files and your process crashes with an error like this:

FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory

If you're sure your code it not accidentally holding on to a reference to (nodes from) prior window objects, then the most likely cause of the apparent memory leak is that

@jdthorpe
jdthorpe / package-lock.json
Created June 16, 2018 18:28
Package-lock.json file for svgdom issue
{
"name": "svg.js-test",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"acorn": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.1.tgz",
"integrity": "sha512-d+nbxBUGKg7Arpsvbnlq61mc12ek3EY8EQldM3GPAhWJ1UVxC6TDGbIvUMNU6obBX3i1+ptCIzV4vq0gFPEGVQ=="
@jdthorpe
jdthorpe / R DataFrame 2 Pandas.md
Last active November 16, 2018 00:46
A little function for generating parameters for Panda's read_csv from an R data.frame

When you've got a data.frame in R and want to write it to csv and then import it into a Python Pandas instance, lazy code like this will fail to parse your string and date fields:

<some_file.R>
write.csv(my_data_frame, "my_data.csv" row.names=FALSE)
@jdthorpe
jdthorpe / Screen Shot 2018-04-08 at 1.21.46 PM.png
Last active April 9, 2018 06:19
Vim Freezes when TSServer failes
Screen Shot 2018-04-08 at 1.21.46 PM.png
@jdthorpe
jdthorpe / README.md
Last active October 30, 2017 16:50
Hierarchical version of dcast

Introduction to Hierarchical Casting with dhcast()

First, the h in dhcast is for hierarchy, and is useful when you need to (A) cast (go from long to wide data) and where (B) casting should observe a given variable hierarchy, and (optionally) aggregate your data(summarize related records in the long dataset) at the same time.

Lets say, for example, that we want to predict some time varying attribute of a grocery store customers based their produce purchases. Furthermore, we want to

@jdthorpe
jdthorpe / README.md
Last active August 9, 2017 16:39
Returning Multiple Result Sets from a Azure Data Warehouse

Getting data from Azure SQL Data Warehouse into R

TL;DR

This note describes the process of automating the execution of queries against an Azure SQL Data Warehouse using Active Directory Integrated Authentication to produce (possibly multiple) CSV files

Automation with SqlCmd: Which SQLCMD to use?