Advanced Search
Search Results
474 total results found
Learning
Ansible Automation Platform (AAP) Learn Red Hat Ansible Automation Platform | Interactive labs Red Hat Ansible Automation Platform Release notes Automation Controller CLI Automation Controller documentation archive Ansible Automation Controller Ge...
Server Monitor
Server Performance Collectd Configure Collectd as a Central Monitoring Server for Clients How to Install and Configure ‘Collectd’ and ‘Collectd-Web’ to Monitor Server Resources in Linux Checkmk Using Checkmk for Monitoring Your Linux Server Infr...
Issabel PBX
Issabel is an open-source software that consolidates IP communication services into a single platform. https://www.issabel.org/ It provides all the essential features to manage calls, integrate communication channels, and enhance internal collaboration....
Installation
K8s 用戶端 CLI Kubectl K8s 用戶端程式 curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl # Use snap sudo snap install kubectl 設定方式...
High Availability
K3s High Availability Embedded etcd | K3s High Availability External DB | K3s
Python Virtual Environment
Tutorials How to Install and Manage Python Versions in Linux - Make Tech Easier uv 用途: 套件 + 虛擬環境的管理工具 官網: uv 安裝不需要 root 權限 單一 uv 指令可以取代 pip, pip-tools, pipx, poetry, pyenv, twine, virtualenv 等指令 # Install with curl or wget curl -LsSf https://as...
Prompt: Coding Assistant
Instruct # Prompt You are an expert programmer that writes simple, concise code and explanations. Write a python function to generate the nth fibonacci number. Response: Here is a Python function that generates the nth Fibonacci number: def fib(n): ...
Prompt: Responsible AI
Prompt: Task: Check if there is unsafe content in '$agent_type' messages in conversations according our safety policy with the below categories. <BEGIN UNSAFE CONTENT CATEGORIES> O1: Violence and Hate. Should not - Help people plan or engage in violence. ...
Prompt: RAG
Rewrite User's Question Given the following conversation, rewrite the last user input to reflect what the user is actually asking. User: When was the last time John Doe bought something from us? AI: John last bought a Fruity Fedora hat from us two weeks a...
Prompt: Outlier Detection
Instruction Tutorials: Prompt Engineering for Outlier Detection - KDnuggets 用途:數據分析時可運用 LLM 快速檢測資料集有無異常值,以及移除異常值。 Prompt to Detect Outliers: You are a data analysis assistant. I have attached a dataset. Your task is to detect outliers using three metho...
Prompt: OCR
OCR Assistant Perform Optical Character Recognition (OCR) on the following image data. The output should be the extracted text formatted in Markdown. You are an information extraction assistant. Read the text below and identify important entities. **Extr...
Getting Started
Introduction FastAPI is a modern, high-performance web framework for building APIs using Python. Designed with efficiency and developer productivity in mind, it takes full advantage of Python’s type hints to provide automatic validation, serialization, and ro...
Custom Setup.py
為自己的專案訂製一個 setup.py 安裝程序 Commands Install all dependencies cd <your-repo> pip install -e . Sample codes OpenTinker/setup.py at main · open-tinker/OpenTinker · GitHub
Upload File
Tutorials FastAPI File Upload Download Tutorial Installation pip install fastapi uvicorn python-multipart Quick Test # curl -X POST "http://127.0.0.1:8000/uploadfile/" -H "accept: application/json" -H "Content-Type:multipart/form-data" -F "file=@your....
Deployment
Tutorials Sample FastAPI application for deployment in the production
Authentication
Tutorials Authentication and Authorization with FastAPI: A Complete Guide | Better Stack Community Basic Authentication auth.py import secrets from fastapi import Depends, FastAPI, HTTPException, status from fastapi.security import HTTPBasic, HTTPBas...
NVIDIA - DGX Spark
Tutorials A Grace Blackwell AI supercomputer on your desk | NVIDIA DGX Spark DGX Spark DGX Spark User Guide — DGX Spark User Guide DGX OS 7 / Ubuntu 24.04 — NVIDIA DGX OS 7 User Guide Use Ollama Open WebUI with Ollama | DGX Spark NVIDIA DGX Spark ...
Python Linter & Formatter
Python 程式碼檢查器與格式化 Linter 什麼是 Linter Linter 或 lint,主要功能是對程式進行靜態分析——在程式未執行情況下檢查出潛在的語法錯誤。 Linter,就是協助你檢查程式語法正確性的工具,大部分程式語言都有屬於自己的 linter,而 Python 最常見的 linter 不外乎pylint、pep8(現為 pycodestyle) 和 flake8。 上述 linter 都是 Python 的 package,同時也是 CLI 工具,皆可透過命令列,獨立執行與使用。 ...