Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.
Avoid being a link dump. Try to provide only valuable well tuned information.
Neural network links before starting with transformers.
| # A docker credential helper that automatically calls AWS CLI for docker push/pull. | |
| cat <<EOF | |
| grep -q 'dkr.ecr.[^.]\+.amazonaws.com' - || exit | |
| aws --output text ecr get-authorization-token --query authorizationData[0].authorizationToken \ | |
| | base64 --decode \ | |
| | sed -e 's/:/", "Secret":"/' -e 's/^/{"Username":"/' -e 's/$/"}/' | |
| EOF | sudo tee /usr/local/bin/docker-credential-ecr-login | |
| sudo chmod +x /usr/local/bin/docker-credential-ecr-login |
| # Requires pymongo 3.6.0+ | |
| from datetime import datetime, timedelta | |
| from pymongo import MongoClient | |
| from bson.tz_util import FixedOffset | |
| from bson.son import SON | |
| from collections import OrderedDict | |
| # Setup logger | |
| import logging |
| # IMPORTANT! | |
| # This gist has been transformed into a github repo | |
| # You can find the most recent version there: | |
| # https://github.com/Neo23x0/auditd | |
| # ___ ___ __ __ | |
| # / | __ ______/ (_) /_____/ / | |
| # / /| |/ / / / __ / / __/ __ / | |
| # / ___ / /_/ / /_/ / / /_/ /_/ / | |
| # /_/ |_\__,_/\__,_/_/\__/\__,_/ |
| This builds off the excellent work of @lmarkus. | |
| The scripts below can be used in conjunction with the Slack Emoji Tools Google Chrome extension to export emojis from | |
| one Slack team and import into another team. | |
| Original work here: https://gist.github.com/lmarkus/8722f56baf8c47045621 |
git log --oneline -1 <PR-BRANCH>git push -f origin :| dash_id=xxxx | |
| api_key=xxx | |
| app_key=xxx | |
| # 1. export | |
| curl -X GET "https://app.datadoghq.com/api/v1/dash/${dash_id}?api_key=${api_key}&application_key=${app_key}" > dash.json | |
| # 2. edit dash.json | |
| move "graphs", "title", "description" up one level in the json hierarchy, from being beneath "dash" to being at the same level |
| INTRO | |
| I get asked regularly for good resources on AWS security. This gist collects some of these resources (docs, blogs, talks, open source tools, etc.). Feel free to suggest and contribute. | |
| Short Link: http://tiny.cc/awssecurity | |
| Official AWS Security Resources | |
| * Security Blog - http://blogs.aws.amazon.com/security/ | |
| * Security Advisories - http://aws.amazon.com/security/security-bulletins/ | |
| * Security Whitepaper (AWS Security Processes/Practices) - http://media.amazonwebservices.com/pdf/AWS_Security_Whitepaper.pdf | |
| * Security Best Practices Whitepaper - http://media.amazonwebservices.com/AWS_Security_Best_Practices.pdf |
| source "https://rubygems.org" | |
| gem "octokit" |