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.
| # curl -LO http://wiki.alpinelinux.org/cgi-bin/dl.cgi/v3.3/releases/x86_64/alpine-3.3.3-x86_64.iso | |
| curl -LO http://wiki.alpinelinux.org/cgi-bin/dl.cgi/v3.3/releases/x86/alpine-3.3.3-x86.iso | |
| # create hdd image (8GB) | |
| dd if=/dev/zero of=hdd.img bs=1g count=8 | |
| # extract kernel and initramfs | |
| brew install cdrtools | |
| isoinfo -i alpine-3.3.1-x86.iso -J -x /boot/initramfs-grsec > initramfs-grsec | |
| isoinfo -i alpine-3.3.1-x86.iso -J -x /boot/vmlinuz-grsec > vmlinuz-grsec |
| email_obj = process_email(email_string) | |
| if email_obj.has_data: | |
| if email_obj.has_images or email_obj.has_unsupported_images: | |
| process_images(email_obj.images) | |
| else: | |
| process_text(email_obj.text) | |
| else: | |
| raise InvalidEmail | |
last updated: 4/5/2011
note that this stuff is always a moving target, much of this has been cribbed and combined from various blog posts. Much of the information was out of date from those, and if it is more than a couple months after the last updated date above, consider some of this likely to now be out of date.