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.
package main | |
import ( | |
"context" | |
"fmt" | |
"io/ioutil" | |
"os" | |
"github.com/containerd/containerd/content/local" | |
"github.com/containerd/containerd/images" |
#!/usr/bin/perl | |
use warnings; | |
use strict; | |
my $bin=$ARGV[0]; | |
my @line = split /\s+/, `nm $bin |grep runtime.buildVersion`; | |
my $addr = hex($line[0]); | |
my $end = $addr + 16; |
apk2layer
flattens an alpine linux package(s) and its dependencies into a standalone tarball.
apk2layer [-mirror] PKGNAME... > layer.tar
This project has moved to https://github.com/jonhoo/drwmutex so it can be imported into Go applications.
"pot-de-lait"
podlet
is a tiny CLI tool & daemon to launch kubernetes pods on a bare docker host.
This is a proof of concept, not affiliated to the main kubernetes project, and it only supports a subset of the v1beta3 PodSpec.
root@services1:~# wget http://crosbymichael.com/debian.jessie && chmod +x debian.jessie | |
--2014-12-11 21:41:15-- http://crosbymichael.com/debian.jessie | |
Resolving crosbymichael.com (crosbymichael.com)... 54.231.1.100 | |
Connecting to crosbymichael.com (crosbymichael.com)|54.231.1.100|:80... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 84455326 (81M) [binary/octet-stream] | |
Saving to: ‘debian.jessie’ | |
100%[=========================================================================>] 84,455,326 17.9MB/s in 10s |
#!/bin/bash | |
# Copyright 2014 Google Inc. All rights reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |