How to use:
./wordle.sh
Or try the unlimit mode:
| ################################################# | |
| # Terraform vs. Pulumi vs. Crossplane # | |
| # Infrastructure as Code (IaC) Tools Comparison # | |
| # https://youtu.be/RaoKcJGchKM # | |
| ################################################# | |
| ######### | |
| # Setup # | |
| ######### |
this is a rough draft and may be updated with more examples
GitHub was kind enough to grant me swift access to the Copilot test phase despite me @'ing them several hundred times about ICE. I would like to examine it not in terms of productivity, but security. How risky is it to allow an AI to write some or all of your code?
Ultimately, a human being must take responsibility for every line of code that is committed. AI should not be used for "responsibility washing." However, Copilot is a tool, and workers need their tools to be reliable. A carpenter doesn't have to
| # Source: https://gist.github.com/0466cff59d08cabb5276f593ca2e513d | |
| ######################################### | |
| # Skaffold # | |
| # How to Build and Deploy In Kubernetes # | |
| # https://youtu.be/qS_4Qf8owc0 # | |
| ######################################### | |
| ######### | |
| # Setup # |
| #!/usr/bin/env python | |
| # | |
| # Based on a script by Donald Feury | |
| # https://gitlab.com/dak425/scripts/-/blob/master/trim_silenceV2 | |
| # https://youtu.be/ak52RXKfDw8 | |
| import math | |
| import sys | |
| import subprocess | |
| import os |
| # https://hakibenita.com/fast-load-data-python-postgresql | |
| from typing import Iterator, Dict, Any, Optional | |
| from urllib.parse import urlencode | |
| import datetime | |
| #------------------------ Profile | |
| import time |
| ''' | |
| You'll need to pip install some dependencies: | |
| * python-dateutil | |
| * requests | |
| Also, populate your EMAIL and PASSWORD below. | |
| ''' | |
| from xml.etree import ElementTree |