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.
| /** | |
| * This little program prints out the url to the AWS console | |
| * generated from the local AWS credentials stored in environment variables: | |
| * AWS_ACCESS_KEY_ID | |
| * AWS_SECRET_ACCESS_KEY | |
| * AWS_SESSION_TOKEN | |
| * | |
| * Steps: | |
| * 1. Create a JSON object | |
| * session = JSON.stringify({ |
Change Apple OS X Dock size from Apple Terminal
defaults write com.apple.dock tilesize -int 32; killall Dock32 is icon size
https://gist.github.com/ljharb/58faf1cfcb4e6808f74aae4ef7944cff
While attempting to explain JavaScript's reduce method on arrays, conceptually, I came up with the following - hopefully it's helpful; happy to tweak it if anyone has suggestions.
JavaScript Arrays have lots of built in methods on their prototype. Some of them mutate - ie, they change the underlying array in-place. Luckily, most of them do not - they instead return an entirely distinct array. Since arrays are conceptually a contiguous list of items, it helps code clarity and maintainability a lot to be able to operate on them in a "functional" way. (I'll also insist on referring to an array as a "list" - although in some languages, List is a native data type, in JS and this post, I'm referring to the concept. Everywhere I use the word "list" you can assume I'm talking about a JS Array) This means, to perform a single operation on the list as a whole ("atomically"), and to return a new list - thus making it mu
| 1. list all remote tags | |
| git ls-remote --tags | |
| 2. delete local tag | |
| git tag -d V_1_0_1 | |
| 3. push tag deletion to remote | |
| git push origin :refs/tags/V_1_0_1 | |
| 4. tag local branch again |
| # sysmouse will work with the trackpoint and trackpad, so enable | |
| moused_enable="YES" | |
| # Power saving features to keep it from getting ridiculously hot | |
| powerd_enable="YES" | |
| # you'll need to `pkg install drm-510-kmod` | |
| kld_list="i915kms" |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"