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.
#!/bin/bash | |
ssh2append() { | |
ssh -G "$@" | sed -n 's/^hostname /Host /p' | |
comm -23 <(ssh -G "$@" 2>/dev/null | sort) <(ssh -G . 2>/dev/null | sort) | sed 's/^/ /' | |
# This loop+if is for remote command, -N, -W as -G lacks support | |
while getopts '1246AaCfGgKkMNnqsTtVvXxYyB:b:c:D:E:e:F:I:i:J:L:l:m:O:o:p:Q:R:S:W:w:' opt; do | |
#shellcheck disable=SC2254 | |
case "$opt" in |
Assumptions
Gotchas
use nodejs_sys::{ | |
napi_async_work, napi_callback_info, napi_create_async_work, napi_create_promise, | |
napi_deferred, napi_delete_async_work, napi_env, napi_get_cb_info, napi_queue_async_work, | |
napi_resolve_deferred, napi_status, napi_value,napi_reject_deferred,napi_create_error | |
}; | |
use std::ffi::c_void; | |
use crate::{request, scrap, types}; | |
#[derive(Debug, Clone)] |
/vendor | |
/docker | |
/Dockerfile |
#!/bin/bash | |
#Author: Guido Diepen | |
#Convenience script that can help me to easily create a clone of a given | |
#data volume. The script is mainly useful if you are using named volumes | |
#First check if the user provided all needed arguments | |
if [ "$1" = "" ] |
const WEBGL_RENDERERS = ['ANGLE (NVIDIA Quadro 2000M Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (NVIDIA Quadro K420 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA Quadro 2000M Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA Quadro K2000M Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Family Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (ATI Radeon HD 3800 Series Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics 4000 Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (Intel(R) HD Graphics 4000 Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (AMD Radeon R9 200 Series Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Family Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Family Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics 4000 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics 3000 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Mobile Intel(R) 4 Seri |
id.cifraclub.com.br { | |
log stdout | |
# Mkcert - https://github.com/FiloSottile/mkcert | |
tls ./yourwebsite.com.br.pem ./yourwebsite.com.br-key.pem | |
proxy / https://yourwebsite.com { | |
transparent | |
header_upstream X-Marotagem true | |
header_upstream Host "yourwebsite.com.br" | |
} |
curl -s https://swupdate.openvpn.net/repos/repo-public.gpg | apt-key add - | |
echo "deb http://build.openvpn.net/debian/openvpn/stable xenial main" > /etc/apt/sources.list.d/openvpn-aptrepo.list | |
apt update | |
apt install -y openvpn |