Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.

# Reference: kstathou/acl-search-engine | |
# !pip install faiss-cpu --no-cache | |
# !pip install sentence_transformers | |
import faiss | |
import numpy as np | |
import pandas as pd | |
import pickle | |
import torch |
llmc() { | |
local system_prompt='Output a command that I can run in a ZSH terminal on macOS to accomplish the following task. Try to make the command self-documenting, using the long version of flags where possible. Output the command first enclosed in a "```zsh" codeblock followed by a concise explanation of how it accomplishes it.' | |
local temp_file=$(mktemp) | |
local capturing=true | |
local command_buffer="" | |
local first_line=true | |
local cleaned_up=false # Flag to indicate whether cleanup has been run | |
cleanup() { | |
# Only run cleanup if it hasn't been done yet |
FROM docker.io/python:3.9-bullseye AS build | |
WORKDIR "/app" | |
# Install dependecies | |
# hadolint ignore=DL3008,DL3013 | |
RUN set -eux && \ | |
apt-get update; \ | |
apt-get install --no-install-recommends -y \ | |
python3-dev build-essential patchelf upx; \ | |
apt-get clean; \ |
Booting from a Linux installation disk with a newer graphics card might trigger an "Unknown Chipset" error from nouveau.
Add nomodeset nouveau.modeset=0
to the kernel options to fix it.
In UEFI Boot Mode it might also hang at "Triggering uevents", which is the same issue without the error message.
More details - http://blog.gbaman.info/?p=791
For this method, alongside your Pi Zero, MicroUSB cable and MicroSD card, only an additional computer is required, which can be running Windows (with Bonjour, iTunes or Quicktime installed), Mac OS or Linux (with Avahi Daemon installed, for example Ubuntu has it built in).
1. Flash Raspbian Jessie full or Raspbian Jessie Lite onto the SD card.
2. Once Raspbian is flashed, open up the boot partition (in Windows Explorer, Finder etc) and add to the bottom of the config.txt
file dtoverlay=dwc2
on a new line, then save the file.
3. If using a recent release of Jessie (Dec 2016 onwards), then create a new file simply called ssh
in the SD card as well. By default SSH i
package main | |
import ( | |
"encoding/json" | |
"flag" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"os" | |
"sort" |
langs = { | |
"de": [ | |
"ein", | |
"ich", | |
"nde", | |
"die", | |
"und", | |
"der", | |
"che", | |
"end", |
lvz () | |
{ | |
# go install github.com/ericchiang/pup@latest | |
for cmd in curl jq pup; | |
do | |
if [ ! $(command -v $cmd) ]; then | |
echo "$cmd required"; | |
return; | |
fi; | |
done; |
app.zip | |
build/lib/hello.py | |
zhello.egg-info |