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 bash | |
| # Makes unmaintainable Go plugin for phpstorm compatible with actual versions. | |
| # https://github.com/go-lang-plugin-org/go-lang-idea-plugin | |
| # | |
| # Run ./go_compiler.sh path/to/downloaded/Go/plugin.zip version_of_phpstorm(e.g. 182, 173, etc.) | |
| # For instance | |
| # ./go_compiler.sh /home/user/downloads/Go-0.13.1947.zip 173 | |
| # New relevant file will be created in the same directory as initial archive. It will have name Go.zip. |
| /* | |
| Question: Given a sequence of positive integers A and an integer T, return whether there is a continuous sequence of A that sums up to exactly T | |
| */ | |
| public class SequenceSum | |
| { | |
| public static void main(String[] args) | |
| { |
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
| default: | |
| extensions: | |
| custom_extension.php: ~ |
| " copy all this into a vim buffer, save it, then... | |
| " source the file by typing :so % | |
| " Now the vim buffer acts like a specialized application for mastering vim | |
| " There are two queues, Study and Known. Depending how confident you feel | |
| " about the item you are currently learning, you can move it down several | |
| " positions, all the way to the end of the Study queue, or to the Known | |
| " queue. | |
| " type ,, (that's comma comma) |