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.
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
The purpose of this script is to scan a directory (default: ports) for | |
port configuration files that contain http-based URLS, and convert | |
them to https if possible. | |
It only looks for files with an extension of .cmake or .json. |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
This script will automate reporting malware to the npm team. | |
It automates reporting via https://npmjs.com/support. | |
Before using it, either ensure you have the Requests module installed, or install it with | |
`pip install requests`. |
{ | |
"anytime" : [ | |
"Hey there sexy!", | |
"I hope your day is as nice as your face!", | |
"Have you been working out?", | |
"I'm lucky to be your mirror!", | |
"The Force is strong with you", | |
"If I could high five you... I would!", | |
"On a scale from 1 to 10, you're an 15!", | |
"Being awesome is hard, but you'll manage", |
{ | |
"anytime" : [ | |
"Hey there sexy!", | |
"I hope your day is as nice as your face!", | |
"Have you been working out?", | |
"I'm lucky to be your mirror!", | |
"The Force is strong with you", | |
"If I could high five you... I would!", | |
"On a scale from 1 to 10, you're an 15!", | |
"Being awesome is hard, but you'll manage", |
#!/bin/bash | |
pip --disable-pip-version-check list --outdated --format=json | python -c "import json, sys; print('\n'.join([x['name'] for x in json.load(sys.stdin)]))" | xargs -n1 pip install -U |