Skip to content

Instantly share code, notes, and snippets.

View mikerourke's full-sized avatar
🐺

Mike Rourke mikerourke

🐺
View GitHub Profile
@mikerourke
mikerourke / debt-prioritizer.f95
Last active October 27, 2020 20:54
Fortran Blog Post
program debt_prioritizer
implicit none
type debtor
character(len=:), allocatable :: name
integer :: debt
end type debtor
! Ugh! Global variables!?
! Originally, I was passing the "debtors" and "debtor_count"
@mikerourke
mikerourke / package.json
Last active October 27, 2020 20:26
Reference webpack configuration for an Electron application that uses TypeScript.
{
"name": "some-name",
"productName": "The Product",
"version": "1.0.0",
"main": "src/main/main.ts",
"author": "Biscuits O'Shea",
"license": "PRIVATE",
"private": true,
"scripts": {
"build": "webpack --mode production --progress",