Skip to content

Instantly share code, notes, and snippets.

View DavidPratten's full-sized avatar

David Pratten DavidPratten

View GitHub Profile
group: australian_gst
description[[ An extensionally defined subset of the australian_gst intensionally defined relation https://github.com/DavidPratten/jetisu/blob/main/Australian_GST.ipynb
]]
australian_gst = {
price:number, ex_gst_amount:number, gst_amount:number
110, 100, 10
55, 50, 5
11, 10, 1
1.1, 1, 0.1
}
@DavidPratten
DavidPratten / AddPruneDependencies.bas
Last active January 1, 2016 06:49
Add and Prune Dependencies (APD) for MS Project This is a proof-of-concept implementation of the "Add and Prune Dependencies" algorithm.
Attribute VB_Name = "AddPruneDependencies"
Option Explicit
'
' AddPruneDependencies.bas r13
'
' The MIT License (MIT)
' Copyright (c) 2013 David Robert Pratten http://davidpratten.com
'
' Permission is hereby granted, free of charge, to any person obtaining a copy
' of this software and associated documentation files (the "Software"), to deal
@DavidPratten
DavidPratten / clsPermanentID.cls
Last active December 29, 2015 19:09
Add an Microsoft Project automatically allocated "Permanent ID" Number field that is unique (never reused) and survives task cut and paste operations.
'
' The MIT License (MIT)
' Copyright (c) 2013 David Robert Pratten http://davidpratten.com
'
' Permission is hereby granted, free of charge, to any person obtaining a copy
' of this software and associated documentation files (the "Software"), to deal
' in the Software without restriction, including without limitation the rights
' to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
' copies of the Software, and to permit persons to whom the Software is
' furnished to do so, subject to the following conditions: