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" = "" ] |
| 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 |
| import React, { PureComponent } from 'react' | |
| import Grid from 'material-ui/Grid' | |
| import { CardNumberElement, CardExpiryElement, CardCVCElement } from 'react-stripe-elements' | |
| import StripeElementWrapper from './StripeElementWrapper' | |
| export default class extends PureComponent { | |
| static displayName = 'StripeCardsSection' |