Friday Dec 13
- AppSync (GraphQL, Amplify) & Angular w/Monorepo (Nx)
- AWS Developer Docs Didn't get too far here, but I spun up an AppSync Model in just a few seconds.
- Youtoube Video ✔ Watched
- Youtube vid by Nrwl ✔ Watched
| #!/usr/bin/env bash | |
| conda deactivate | |
| conda update conda | |
| conda create -n mlenv python=3.7 anaconda | |
| conda activate mlenv | |
| conda install -c conda-forge nodejs | |
| conda install -c pyviz hvplot | |
| conda install -c plotly plotly | |
| conda install -c plotly plotly_express==0.4.1 |
| pragma solidity ^0.5.10; | |
| contract Lassie { | |
| // STATE VARIABLES | |
| uint8 public contractState; // 1 = OK 2 = WARNING 3 = CRITICAL | |
| uint8 public responderState; // 1 = OK 2 = PREPPED 3 = RESPOND | |
| // RESPONDER Payment Amounts | |
| uint256 public responderPrepAmount = 1 wei; | |
| uint256 public responderRespondAmount = 2 wei; |
Friday Dec 13
| who knew? https://colab.research.google.com/notebooks/welcome.ipynb |
| 1. starting here: https://www.youtube.com/watch?v=OSnRl8yF9a4 | |
| 1.a https://www.bernat.tech/pep-517-and-python-packaging/ |
| https://github.com/gangverk/flask-swagger | |
| https://mmcardle.github.io/django_builder/#!/home | |
| https://www.django-rest-framework.org/ | |
| https://github.com/Brobin/drf-generators (4 different models.. why so many, I probably don't understand drf) | |
| https://github.com/agconti/cookiecutter-django-rest | |
| https://github.com/jpadilla/django-project-template (More for vanilla django) | |
| https://github.com/django-json-api/django-rest-framework-json-api (this looks promising) |
| #!/usr/bin/perl -w | |
| use strict; | |
| use LWP::Simple; | |
| use HTML::TokeParser; | |
| use HTML::Entities; | |
| # @newspages are pages I don't really wanna read, but I'd rather just have the links | |
| my @newspages = qw( |
| #!/opt/local/bin/perl | |
| use strict; | |
| my $print_to_files = 1; | |
| my $full_roster = '/Users/will/Downloads/221899-2011-03-03.csv'; | |
| die "$full_roster does not exist!" unless -e $full_roster; |
| (defun ask-before-closing () | |
| "Ask whether or not to close, and then close if y was pressed" | |
| (interactive) | |
| (if (y-or-n-p (format "Are you sure you want to exit Emacs? ")) | |
| (if (< emacs-major-version 22) | |
| (save-buffers-kill-terminal) | |
| (save-buffers-kill-emacs)) | |
| (message "Canceled exit"))) |