Tmux should already be installed in your system
apt install tmux
FROM alpine:latest | |
WORKDIR /lux | |
RUN apk add --no-cache \ | |
curl ca-certificates openssl \ | |
perl curl ffmpeg \ | |
tar gzip jq; \ | |
apkArch="$(apk --print-arch)"; Arch=""; \ | |
case "$apkArch" in \ |
rootCAs, err := x509.SystemCertPool() | |
if err != nil { | |
return nil, err | |
} | |
// rootCAs := x509.NewCertPool() | |
pemData, err := os.ReadFile(certfile) | |
if err != nil { | |
return nil, err | |
} |
let datas = await Promise.all( | |
[...Array(pages).keys()].map(async i => await export_data(table, query_params, i, options)) | |
); |
version: '3.8' | |
services: | |
notebook: | |
image: jupyter/base-notebook | |
user: 0:0 | |
environment: | |
- GRANT_SUDO=yes | |
- NB_GID=100 | |
- GEN_CERT=yes |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" |
# fuck you starter pack ICANT ALERT | |
npm create vite | |
npm i | |
npm install -D tailwindcss postcss autoprefixer | |
npx tailwindcss init -p | |
npm i jquery | |
npm i --save-dev @types/jquery |
this should work for angular version 12 above
this template will automate the creation process of angular and tailwind as manually instructed here: https://tailwindcss.com/docs/guides/angular
<div class="grid items-center justify-center"> | |
<div>centered</div> | |
</div> |