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.
| /** | |
| * ## Angular custom webpack config for compatibility with IE11 | |
| * ------------------------------------------------------------ | |
| * 1. Add this file to your project root. Add the modules list that needs transpiling (see below code). | |
| * 2. Install dev dependencies: | |
| * | |
| * `$ npm i -D @angular-builders/custom-webpack:browser babel-loader @babel/core @babel/preset-env browserlist` | |
| * | |
| * 3. Add this to your `angular.json`: | |
| * |
| import { Directive, ElementRef, EventEmitter, HostListener, Input, OnChanges, OnInit, Output, SimpleChanges } from '@angular/core'; | |
| @Directive({ | |
| // tslint:disable-next-line:directive-selector | |
| selector: '[signature]', | |
| }) | |
| export class SignatureDirective implements OnInit, OnChanges { | |
| @Output() imgSrc = new EventEmitter<string>(); | |
| @Input('clear') clearMe; | |
| @Input('options') options; |
Exhaustive list of SPDX (Software Package Data Exchange) licenses: https://spdx.org/licenses/
If you work across many computers (and even otherwise!), it's a good idea to keep a copy of your setup on the cloud, preferably in a git repository, and clone it on another machine when you need.
Thus, you should keep the .vim directory along with your .vimrc version-controlled.
But when you have plugins installed inside .vim/bundle (if you use pathogen), or inside .vim/pack (if you use Vim 8's packages), keeping a copy where you want to be able to update the plugins (individual git repositories), as well as your vim-configuration as a whole, requires you to use git submodules.
Initialize a git repository inside your .vim directory, add everything (including the vimrc), commit and push to a GitHub/BitBucket/GitLab repository:
cd ~/.vim
| #include <math.h> | |
| #include <algorithm> | |
| #include <string> | |
| #include <immintrin.h> | |
| using namespace std;typedef float R; | |
| #define _W 79 | |
| #define _H 39 | |
| #define EP 0.01f | |
| #define OP operator | |
| #define C const |
| import java.io.IOException; | |
| import java.net.URLClassLoader; | |
| import java.nio.file.Files; | |
| import java.nio.file.Paths; | |
| import java.nio.file.Path; | |
| /** | |
| * Example demonstrating a ClassLoader leak. | |
| * | |
| * <p>To see it in action, copy this file to a temp directory somewhere, |