├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── bitstation ├── .dockerignore ├── 01.cauldron │ ├── mirrorlist │ ├── mkimage-buildah-minimal.sh │ ├── mkimage-buildah.sh │ └── proxy.sh ├── 02.setup │ ├── 00-install-pkgs.sh │ ├── 00_mpm.conf │ ├── 01-install-dlang.sh │ ├── 01-install-npm.sh │ ├── 01-install-python.sh │ ├── 01-install-r-pkgs.sh │ ├── 01-install-ruby.sh │ ├── 02-docker-setup.sh │ ├── 02-set-password.sh │ ├── 03-install-jupyter.sh │ ├── 04-remove-build-deps.sh │ ├── 05-log-items.sh │ ├── mkimage-buildah.sh │ ├── openssl.cnf │ ├── proxy.sh │ └── system.conf ├── LGPL.md ├── README.md ├── RELEASE.md ├── config │ ├── bitstation │ │ └── docker-compose.yml │ └── demo │ │ └── docker-compose.yml ├── docker-compose.yml ├── package.json ├── test │ └── test-bitstation.py ├── util │ ├── backup.sh │ ├── clone-volume.sh │ ├── containers-shell.sh │ ├── containers.sh │ ├── push-image.sh │ ├── restore.sh │ ├── rm-stopped-containers.sh │ └── rm-untagged-images.sh └── web │ ├── cgi-bin │ ├── README.md │ └── bittrader │ │ ├── bitcoinaverager.py │ │ ├── conf.sh │ │ ├── environment.sh │ │ ├── login.py │ │ ├── manifest.py │ │ ├── model.py │ │ ├── pageset.py │ │ ├── refresh.sh │ │ ├── timezone.sh │ │ └── wiki.sh │ ├── config │ ├── default-init │ │ ├── etc │ │ │ ├── ajenti │ │ │ │ └── config.json │ │ │ ├── httpd │ │ │ │ └── conf │ │ │ │ │ └── sites.d │ │ │ │ │ └── 00_bitquant.conf │ │ │ ├── mongod.conf │ │ │ ├── shiny-server │ │ │ │ └── shiny-server.conf │ │ │ └── sudoers.d │ │ │ │ └── 00_bitquant_sudo │ │ └── usr │ │ │ └── lib │ │ │ └── systemd │ │ │ └── system │ │ │ ├── bitquant.service │ │ │ └── shiny-server.service │ ├── httpd-lock │ │ └── etc │ │ │ └── httpd │ │ │ └── conf │ │ │ └── webapps.d │ │ │ └── 00_bitquant_auth.conf │ ├── httpd-unlock │ │ └── etc │ │ │ └── httpd │ │ │ └── conf │ │ │ └── webapps.d │ │ │ └── 00_bitquant_auth.conf │ ├── user │ │ ├── wiki-init │ │ ├── wiki-lock │ │ └── wiki-unlock │ ├── vimage │ │ ├── etc │ │ │ ├── cloud │ │ │ │ └── cloud.cfg │ │ │ ├── sysconfig │ │ │ │ └── oem │ │ │ └── systemd │ │ │ │ └── system │ │ │ │ └── getty@tty1.service.d │ │ │ │ └── autologin.conf │ │ └── usr │ │ │ └── lib │ │ │ └── systemd │ │ │ └── system │ │ │ └── cloud-init.service │ ├── webmin-init │ │ └── etc │ │ │ └── webmin │ │ │ ├── config │ │ │ └── miniserv.conf │ ├── wiki-init │ │ └── var │ │ │ └── lib │ │ │ └── dokuwiki │ │ │ └── pages │ │ │ ├── about.txt │ │ │ ├── pyconhk2015.txt │ │ │ └── start.txt │ ├── wiki-lock │ │ └── etc │ │ │ └── dokuwiki │ │ │ ├── acl.auth.php │ │ │ ├── local.php │ │ │ └── users.auth.php │ └── wiki-unlock │ │ └── etc │ │ └── dokuwiki │ │ └── local.php │ ├── css │ ├── gh-fork-ribbon.css │ ├── gh-fork-ribbon.ie.css │ ├── metro-bootstrap.css │ ├── metro-dokuwiki.css │ └── style.css │ ├── data │ └── README.txt │ ├── fonts │ ├── metroSysIcons.ttf │ └── metroSysIcons.woff │ ├── index.html │ ├── js │ ├── logout.js │ └── metro │ │ └── metro.min.js │ └── scripts │ ├── ethercalc-data │ └── test.clc │ ├── install-ethercalc.py │ ├── startup-all.sh │ └── startup-user.sh ├── hardware-hacking ├── dmidecode.txt └── dual-screen.md ├── ldap ├── docker-compose.yml ├── install.sh ├── package.json ├── proxy.sh └── startup.sh ├── nextcloud ├── 00_mpm.conf ├── backup.sh ├── config.php ├── docker-compose.yml ├── install.sh ├── package.json ├── proxy.sh ├── startup-nextcloud.sh ├── system.conf └── wait-for-it.sh ├── online-campus ├── moo │ ├── Dockerfile │ ├── docker-compose.yml │ ├── install-user.sh │ ├── install.sh │ ├── proxy.sh │ └── startup.sh └── moodle │ ├── backup-moodle.sh │ └── docker-compose.yml ├── overleaf └── docker-compose.yml ├── papers ├── article_template.tex ├── financial-products.txt ├── hk-hybrid.txt ├── hkdx.txt ├── its-obor.pdf ├── its-obor.pptx ├── joequant-qr.png ├── macro.bib ├── macro.pdf ├── macro.tex ├── master.txt ├── money-lender │ ├── privacy.txt │ └── references.txt ├── neutrino.tex ├── nyletter.odt ├── nyletter.pdf ├── nyletter.txt └── paper1.tex ├── smart-contracts-2 ├── contract.js ├── disclaimer.txt ├── display.html ├── notice.txt └── viewer.js └── smart-contracts ├── Calculator.js ├── NOTES.md ├── README.md ├── Viewer.js ├── YEARFRAC.js ├── add-js-dependencies.sh ├── calc-contract.js ├── calc-credit.js ├── contract_viewer.html ├── jquery.appendGrid-1.6.2.min.css ├── jquery.appendGrid-1.6.2.min.js ├── jquery.collapse.js ├── make-pkg.sh ├── misc ├── execution-sheet.txt └── warranty.txt ├── models ├── convertible-note-old │ ├── Notes.js │ ├── Parties.js │ └── TermSheet.js ├── convertible-note │ ├── Notes.js │ ├── Parties.js │ ├── TermSheet.js │ └── note.docx ├── credit-line │ ├── Notes.js │ └── TermSheet.js ├── equity-finance │ ├── convertible-note.txt │ └── safe.txt ├── hire-purchase │ ├── Notes.js │ └── TermSheet.js ├── hk-company-secured │ ├── Notes.js │ ├── Parties.js │ └── TermSheet.js ├── hk-money-lender-2 │ ├── Notes.js │ ├── Parties.js │ └── TermSheet.js ├── hk-money-lender │ ├── Notes.js │ ├── Parties.js │ └── TermSheet.js ├── loan │ ├── Notes.js │ └── TermSheet.js ├── profit-share │ ├── Notes.js │ └── TermSheet.js ├── simple-amortized │ ├── Notes.js │ ├── Parties.js │ └── TermSheet.js └── subclass │ ├── Notes.js │ └── TermSheet.js └── node_modules └── moment ├── LICENSE ├── README.md ├── ender.js ├── min └── moment.min.js ├── package.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.log 3 | \#*# 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/README.md -------------------------------------------------------------------------------- /bitstation/.dockerignore: -------------------------------------------------------------------------------- 1 | /tmp/* 2 | /var/log/* 3 | -------------------------------------------------------------------------------- /bitstation/01.cauldron/mirrorlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/01.cauldron/mirrorlist -------------------------------------------------------------------------------- /bitstation/01.cauldron/mkimage-buildah-minimal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/01.cauldron/mkimage-buildah-minimal.sh -------------------------------------------------------------------------------- /bitstation/01.cauldron/mkimage-buildah.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/01.cauldron/mkimage-buildah.sh -------------------------------------------------------------------------------- /bitstation/01.cauldron/proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/01.cauldron/proxy.sh -------------------------------------------------------------------------------- /bitstation/02.setup/00-install-pkgs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/00-install-pkgs.sh -------------------------------------------------------------------------------- /bitstation/02.setup/00_mpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/00_mpm.conf -------------------------------------------------------------------------------- /bitstation/02.setup/01-install-dlang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/01-install-dlang.sh -------------------------------------------------------------------------------- /bitstation/02.setup/01-install-npm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/01-install-npm.sh -------------------------------------------------------------------------------- /bitstation/02.setup/01-install-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/01-install-python.sh -------------------------------------------------------------------------------- /bitstation/02.setup/01-install-r-pkgs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/01-install-r-pkgs.sh -------------------------------------------------------------------------------- /bitstation/02.setup/01-install-ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/01-install-ruby.sh -------------------------------------------------------------------------------- /bitstation/02.setup/02-docker-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/02-docker-setup.sh -------------------------------------------------------------------------------- /bitstation/02.setup/02-set-password.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/02-set-password.sh -------------------------------------------------------------------------------- /bitstation/02.setup/03-install-jupyter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/03-install-jupyter.sh -------------------------------------------------------------------------------- /bitstation/02.setup/04-remove-build-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/04-remove-build-deps.sh -------------------------------------------------------------------------------- /bitstation/02.setup/05-log-items.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/05-log-items.sh -------------------------------------------------------------------------------- /bitstation/02.setup/mkimage-buildah.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/mkimage-buildah.sh -------------------------------------------------------------------------------- /bitstation/02.setup/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/openssl.cnf -------------------------------------------------------------------------------- /bitstation/02.setup/proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/proxy.sh -------------------------------------------------------------------------------- /bitstation/02.setup/system.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/02.setup/system.conf -------------------------------------------------------------------------------- /bitstation/LGPL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/LGPL.md -------------------------------------------------------------------------------- /bitstation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/README.md -------------------------------------------------------------------------------- /bitstation/RELEASE.md: -------------------------------------------------------------------------------- 1 | 202008.1 2 | 3 | * added patches for root to make 3d work 4 | -------------------------------------------------------------------------------- /bitstation/config/bitstation/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/config/bitstation/docker-compose.yml -------------------------------------------------------------------------------- /bitstation/config/demo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/config/demo/docker-compose.yml -------------------------------------------------------------------------------- /bitstation/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/docker-compose.yml -------------------------------------------------------------------------------- /bitstation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/package.json -------------------------------------------------------------------------------- /bitstation/test/test-bitstation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/test/test-bitstation.py -------------------------------------------------------------------------------- /bitstation/util/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/util/backup.sh -------------------------------------------------------------------------------- /bitstation/util/clone-volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/util/clone-volume.sh -------------------------------------------------------------------------------- /bitstation/util/containers-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/util/containers-shell.sh -------------------------------------------------------------------------------- /bitstation/util/containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/util/containers.sh -------------------------------------------------------------------------------- /bitstation/util/push-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/util/push-image.sh -------------------------------------------------------------------------------- /bitstation/util/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/util/restore.sh -------------------------------------------------------------------------------- /bitstation/util/rm-stopped-containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/util/rm-stopped-containers.sh -------------------------------------------------------------------------------- /bitstation/util/rm-untagged-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/util/rm-untagged-images.sh -------------------------------------------------------------------------------- /bitstation/web/cgi-bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/cgi-bin/README.md -------------------------------------------------------------------------------- /bitstation/web/cgi-bin/bittrader/bitcoinaverager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/cgi-bin/bittrader/bitcoinaverager.py -------------------------------------------------------------------------------- /bitstation/web/cgi-bin/bittrader/conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/cgi-bin/bittrader/conf.sh -------------------------------------------------------------------------------- /bitstation/web/cgi-bin/bittrader/environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/cgi-bin/bittrader/environment.sh -------------------------------------------------------------------------------- /bitstation/web/cgi-bin/bittrader/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/cgi-bin/bittrader/login.py -------------------------------------------------------------------------------- /bitstation/web/cgi-bin/bittrader/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/cgi-bin/bittrader/manifest.py -------------------------------------------------------------------------------- /bitstation/web/cgi-bin/bittrader/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/cgi-bin/bittrader/model.py -------------------------------------------------------------------------------- /bitstation/web/cgi-bin/bittrader/pageset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/cgi-bin/bittrader/pageset.py -------------------------------------------------------------------------------- /bitstation/web/cgi-bin/bittrader/refresh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/cgi-bin/bittrader/refresh.sh -------------------------------------------------------------------------------- /bitstation/web/cgi-bin/bittrader/timezone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/cgi-bin/bittrader/timezone.sh -------------------------------------------------------------------------------- /bitstation/web/cgi-bin/bittrader/wiki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/cgi-bin/bittrader/wiki.sh -------------------------------------------------------------------------------- /bitstation/web/config/default-init/etc/ajenti/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/default-init/etc/ajenti/config.json -------------------------------------------------------------------------------- /bitstation/web/config/default-init/etc/httpd/conf/sites.d/00_bitquant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/default-init/etc/httpd/conf/sites.d/00_bitquant.conf -------------------------------------------------------------------------------- /bitstation/web/config/default-init/etc/mongod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/default-init/etc/mongod.conf -------------------------------------------------------------------------------- /bitstation/web/config/default-init/etc/shiny-server/shiny-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/default-init/etc/shiny-server/shiny-server.conf -------------------------------------------------------------------------------- /bitstation/web/config/default-init/etc/sudoers.d/00_bitquant_sudo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/default-init/etc/sudoers.d/00_bitquant_sudo -------------------------------------------------------------------------------- /bitstation/web/config/default-init/usr/lib/systemd/system/bitquant.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/default-init/usr/lib/systemd/system/bitquant.service -------------------------------------------------------------------------------- /bitstation/web/config/default-init/usr/lib/systemd/system/shiny-server.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/default-init/usr/lib/systemd/system/shiny-server.service -------------------------------------------------------------------------------- /bitstation/web/config/httpd-lock/etc/httpd/conf/webapps.d/00_bitquant_auth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/httpd-lock/etc/httpd/conf/webapps.d/00_bitquant_auth.conf -------------------------------------------------------------------------------- /bitstation/web/config/httpd-unlock/etc/httpd/conf/webapps.d/00_bitquant_auth.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitstation/web/config/user/wiki-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/user/wiki-init -------------------------------------------------------------------------------- /bitstation/web/config/user/wiki-lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/user/wiki-lock -------------------------------------------------------------------------------- /bitstation/web/config/user/wiki-unlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/user/wiki-unlock -------------------------------------------------------------------------------- /bitstation/web/config/vimage/etc/cloud/cloud.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/vimage/etc/cloud/cloud.cfg -------------------------------------------------------------------------------- /bitstation/web/config/vimage/etc/sysconfig/oem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/vimage/etc/sysconfig/oem -------------------------------------------------------------------------------- /bitstation/web/config/vimage/etc/systemd/system/getty@tty1.service.d/autologin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/vimage/etc/systemd/system/getty@tty1.service.d/autologin.conf -------------------------------------------------------------------------------- /bitstation/web/config/vimage/usr/lib/systemd/system/cloud-init.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/vimage/usr/lib/systemd/system/cloud-init.service -------------------------------------------------------------------------------- /bitstation/web/config/webmin-init/etc/webmin/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/webmin-init/etc/webmin/config -------------------------------------------------------------------------------- /bitstation/web/config/webmin-init/etc/webmin/miniserv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/webmin-init/etc/webmin/miniserv.conf -------------------------------------------------------------------------------- /bitstation/web/config/wiki-init/var/lib/dokuwiki/pages/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/wiki-init/var/lib/dokuwiki/pages/about.txt -------------------------------------------------------------------------------- /bitstation/web/config/wiki-init/var/lib/dokuwiki/pages/pyconhk2015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/wiki-init/var/lib/dokuwiki/pages/pyconhk2015.txt -------------------------------------------------------------------------------- /bitstation/web/config/wiki-init/var/lib/dokuwiki/pages/start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/wiki-init/var/lib/dokuwiki/pages/start.txt -------------------------------------------------------------------------------- /bitstation/web/config/wiki-lock/etc/dokuwiki/acl.auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/wiki-lock/etc/dokuwiki/acl.auth.php -------------------------------------------------------------------------------- /bitstation/web/config/wiki-lock/etc/dokuwiki/local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/wiki-lock/etc/dokuwiki/local.php -------------------------------------------------------------------------------- /bitstation/web/config/wiki-lock/etc/dokuwiki/users.auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/wiki-lock/etc/dokuwiki/users.auth.php -------------------------------------------------------------------------------- /bitstation/web/config/wiki-unlock/etc/dokuwiki/local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/config/wiki-unlock/etc/dokuwiki/local.php -------------------------------------------------------------------------------- /bitstation/web/css/gh-fork-ribbon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/css/gh-fork-ribbon.css -------------------------------------------------------------------------------- /bitstation/web/css/gh-fork-ribbon.ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/css/gh-fork-ribbon.ie.css -------------------------------------------------------------------------------- /bitstation/web/css/metro-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/css/metro-bootstrap.css -------------------------------------------------------------------------------- /bitstation/web/css/metro-dokuwiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/css/metro-dokuwiki.css -------------------------------------------------------------------------------- /bitstation/web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/css/style.css -------------------------------------------------------------------------------- /bitstation/web/data/README.txt: -------------------------------------------------------------------------------- 1 | data files 2 | -------------------------------------------------------------------------------- /bitstation/web/fonts/metroSysIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/fonts/metroSysIcons.ttf -------------------------------------------------------------------------------- /bitstation/web/fonts/metroSysIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/fonts/metroSysIcons.woff -------------------------------------------------------------------------------- /bitstation/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/index.html -------------------------------------------------------------------------------- /bitstation/web/js/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/js/logout.js -------------------------------------------------------------------------------- /bitstation/web/js/metro/metro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/js/metro/metro.min.js -------------------------------------------------------------------------------- /bitstation/web/scripts/ethercalc-data/test.clc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/scripts/ethercalc-data/test.clc -------------------------------------------------------------------------------- /bitstation/web/scripts/install-ethercalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/scripts/install-ethercalc.py -------------------------------------------------------------------------------- /bitstation/web/scripts/startup-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/scripts/startup-all.sh -------------------------------------------------------------------------------- /bitstation/web/scripts/startup-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/bitstation/web/scripts/startup-user.sh -------------------------------------------------------------------------------- /hardware-hacking/dmidecode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/hardware-hacking/dmidecode.txt -------------------------------------------------------------------------------- /hardware-hacking/dual-screen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/hardware-hacking/dual-screen.md -------------------------------------------------------------------------------- /ldap/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/ldap/docker-compose.yml -------------------------------------------------------------------------------- /ldap/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/ldap/install.sh -------------------------------------------------------------------------------- /ldap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/ldap/package.json -------------------------------------------------------------------------------- /ldap/proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/ldap/proxy.sh -------------------------------------------------------------------------------- /ldap/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/ldap/startup.sh -------------------------------------------------------------------------------- /nextcloud/00_mpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/nextcloud/00_mpm.conf -------------------------------------------------------------------------------- /nextcloud/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/nextcloud/backup.sh -------------------------------------------------------------------------------- /nextcloud/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/nextcloud/config.php -------------------------------------------------------------------------------- /nextcloud/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/nextcloud/docker-compose.yml -------------------------------------------------------------------------------- /nextcloud/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/nextcloud/install.sh -------------------------------------------------------------------------------- /nextcloud/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/nextcloud/package.json -------------------------------------------------------------------------------- /nextcloud/proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/nextcloud/proxy.sh -------------------------------------------------------------------------------- /nextcloud/startup-nextcloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/nextcloud/startup-nextcloud.sh -------------------------------------------------------------------------------- /nextcloud/system.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/nextcloud/system.conf -------------------------------------------------------------------------------- /nextcloud/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/nextcloud/wait-for-it.sh -------------------------------------------------------------------------------- /online-campus/moo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/online-campus/moo/Dockerfile -------------------------------------------------------------------------------- /online-campus/moo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/online-campus/moo/docker-compose.yml -------------------------------------------------------------------------------- /online-campus/moo/install-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/online-campus/moo/install-user.sh -------------------------------------------------------------------------------- /online-campus/moo/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/online-campus/moo/install.sh -------------------------------------------------------------------------------- /online-campus/moo/proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/online-campus/moo/proxy.sh -------------------------------------------------------------------------------- /online-campus/moo/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/online-campus/moo/startup.sh -------------------------------------------------------------------------------- /online-campus/moodle/backup-moodle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/online-campus/moodle/backup-moodle.sh -------------------------------------------------------------------------------- /online-campus/moodle/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/online-campus/moodle/docker-compose.yml -------------------------------------------------------------------------------- /overleaf/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/overleaf/docker-compose.yml -------------------------------------------------------------------------------- /papers/article_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/article_template.tex -------------------------------------------------------------------------------- /papers/financial-products.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/financial-products.txt -------------------------------------------------------------------------------- /papers/hk-hybrid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/hk-hybrid.txt -------------------------------------------------------------------------------- /papers/hkdx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/hkdx.txt -------------------------------------------------------------------------------- /papers/its-obor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/its-obor.pdf -------------------------------------------------------------------------------- /papers/its-obor.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/its-obor.pptx -------------------------------------------------------------------------------- /papers/joequant-qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/joequant-qr.png -------------------------------------------------------------------------------- /papers/macro.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/macro.bib -------------------------------------------------------------------------------- /papers/macro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/macro.pdf -------------------------------------------------------------------------------- /papers/macro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/macro.tex -------------------------------------------------------------------------------- /papers/master.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/master.txt -------------------------------------------------------------------------------- /papers/money-lender/privacy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/money-lender/privacy.txt -------------------------------------------------------------------------------- /papers/money-lender/references.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/money-lender/references.txt -------------------------------------------------------------------------------- /papers/neutrino.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/neutrino.tex -------------------------------------------------------------------------------- /papers/nyletter.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/nyletter.odt -------------------------------------------------------------------------------- /papers/nyletter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/nyletter.pdf -------------------------------------------------------------------------------- /papers/nyletter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/nyletter.txt -------------------------------------------------------------------------------- /papers/paper1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/papers/paper1.tex -------------------------------------------------------------------------------- /smart-contracts-2/contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts-2/contract.js -------------------------------------------------------------------------------- /smart-contracts-2/disclaimer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts-2/disclaimer.txt -------------------------------------------------------------------------------- /smart-contracts-2/display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts-2/display.html -------------------------------------------------------------------------------- /smart-contracts-2/notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts-2/notice.txt -------------------------------------------------------------------------------- /smart-contracts-2/viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts-2/viewer.js -------------------------------------------------------------------------------- /smart-contracts/Calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/Calculator.js -------------------------------------------------------------------------------- /smart-contracts/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/NOTES.md -------------------------------------------------------------------------------- /smart-contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/README.md -------------------------------------------------------------------------------- /smart-contracts/Viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/Viewer.js -------------------------------------------------------------------------------- /smart-contracts/YEARFRAC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/YEARFRAC.js -------------------------------------------------------------------------------- /smart-contracts/add-js-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/add-js-dependencies.sh -------------------------------------------------------------------------------- /smart-contracts/calc-contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/calc-contract.js -------------------------------------------------------------------------------- /smart-contracts/calc-credit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/calc-credit.js -------------------------------------------------------------------------------- /smart-contracts/contract_viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/contract_viewer.html -------------------------------------------------------------------------------- /smart-contracts/jquery.appendGrid-1.6.2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/jquery.appendGrid-1.6.2.min.css -------------------------------------------------------------------------------- /smart-contracts/jquery.appendGrid-1.6.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/jquery.appendGrid-1.6.2.min.js -------------------------------------------------------------------------------- /smart-contracts/jquery.collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/jquery.collapse.js -------------------------------------------------------------------------------- /smart-contracts/make-pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/make-pkg.sh -------------------------------------------------------------------------------- /smart-contracts/misc/execution-sheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/misc/execution-sheet.txt -------------------------------------------------------------------------------- /smart-contracts/misc/warranty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/misc/warranty.txt -------------------------------------------------------------------------------- /smart-contracts/models/convertible-note-old/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/convertible-note-old/Notes.js -------------------------------------------------------------------------------- /smart-contracts/models/convertible-note-old/Parties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/convertible-note-old/Parties.js -------------------------------------------------------------------------------- /smart-contracts/models/convertible-note-old/TermSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/convertible-note-old/TermSheet.js -------------------------------------------------------------------------------- /smart-contracts/models/convertible-note/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/convertible-note/Notes.js -------------------------------------------------------------------------------- /smart-contracts/models/convertible-note/Parties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/convertible-note/Parties.js -------------------------------------------------------------------------------- /smart-contracts/models/convertible-note/TermSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/convertible-note/TermSheet.js -------------------------------------------------------------------------------- /smart-contracts/models/convertible-note/note.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/convertible-note/note.docx -------------------------------------------------------------------------------- /smart-contracts/models/credit-line/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/credit-line/Notes.js -------------------------------------------------------------------------------- /smart-contracts/models/credit-line/TermSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/credit-line/TermSheet.js -------------------------------------------------------------------------------- /smart-contracts/models/equity-finance/convertible-note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/equity-finance/convertible-note.txt -------------------------------------------------------------------------------- /smart-contracts/models/equity-finance/safe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/equity-finance/safe.txt -------------------------------------------------------------------------------- /smart-contracts/models/hire-purchase/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/hire-purchase/Notes.js -------------------------------------------------------------------------------- /smart-contracts/models/hire-purchase/TermSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/hire-purchase/TermSheet.js -------------------------------------------------------------------------------- /smart-contracts/models/hk-company-secured/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/hk-company-secured/Notes.js -------------------------------------------------------------------------------- /smart-contracts/models/hk-company-secured/Parties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/hk-company-secured/Parties.js -------------------------------------------------------------------------------- /smart-contracts/models/hk-company-secured/TermSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/hk-company-secured/TermSheet.js -------------------------------------------------------------------------------- /smart-contracts/models/hk-money-lender-2/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/hk-money-lender-2/Notes.js -------------------------------------------------------------------------------- /smart-contracts/models/hk-money-lender-2/Parties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/hk-money-lender-2/Parties.js -------------------------------------------------------------------------------- /smart-contracts/models/hk-money-lender-2/TermSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/hk-money-lender-2/TermSheet.js -------------------------------------------------------------------------------- /smart-contracts/models/hk-money-lender/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/hk-money-lender/Notes.js -------------------------------------------------------------------------------- /smart-contracts/models/hk-money-lender/Parties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/hk-money-lender/Parties.js -------------------------------------------------------------------------------- /smart-contracts/models/hk-money-lender/TermSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/hk-money-lender/TermSheet.js -------------------------------------------------------------------------------- /smart-contracts/models/loan/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/loan/Notes.js -------------------------------------------------------------------------------- /smart-contracts/models/loan/TermSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/loan/TermSheet.js -------------------------------------------------------------------------------- /smart-contracts/models/profit-share/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/profit-share/Notes.js -------------------------------------------------------------------------------- /smart-contracts/models/profit-share/TermSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/profit-share/TermSheet.js -------------------------------------------------------------------------------- /smart-contracts/models/simple-amortized/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/simple-amortized/Notes.js -------------------------------------------------------------------------------- /smart-contracts/models/simple-amortized/Parties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/simple-amortized/Parties.js -------------------------------------------------------------------------------- /smart-contracts/models/simple-amortized/TermSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/simple-amortized/TermSheet.js -------------------------------------------------------------------------------- /smart-contracts/models/subclass/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/subclass/Notes.js -------------------------------------------------------------------------------- /smart-contracts/models/subclass/TermSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/models/subclass/TermSheet.js -------------------------------------------------------------------------------- /smart-contracts/node_modules/moment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/node_modules/moment/LICENSE -------------------------------------------------------------------------------- /smart-contracts/node_modules/moment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/node_modules/moment/README.md -------------------------------------------------------------------------------- /smart-contracts/node_modules/moment/ender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/node_modules/moment/ender.js -------------------------------------------------------------------------------- /smart-contracts/node_modules/moment/min/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/node_modules/moment/min/moment.min.js -------------------------------------------------------------------------------- /smart-contracts/node_modules/moment/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/node_modules/moment/package.js -------------------------------------------------------------------------------- /smart-contracts/node_modules/moment/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joequant/bitquant/HEAD/smart-contracts/node_modules/moment/package.json --------------------------------------------------------------------------------