This guide has moved to a GitHub repository to enable collaboration and community input via pull-requests.
https://github.com/alexellis/k8s-on-raspbian
Alex
#!/usr/bin/env -S bash -c "docker run -p 8080:8080 -it --rm \$(docker build --progress plain -f \$0 . 2>&1 | tee /dev/stderr | grep -oP 'sha256:[0-9a-f]*')" | |
# syntax = docker/dockerfile:1.4.0 | |
FROM node:20 | |
WORKDIR /root | |
RUN npm install sqlite3 |
# Reference source snippets | |
[[snippets]] | |
description = "Reference Cheat Sheet" | |
command = "start https://kubernetes.io/docs/reference/kubectl/cheatsheet/" | |
tag = ["reference"] | |
output = "" | |
# Setup snippets |
This guide has moved to a GitHub repository to enable collaboration and community input via pull-requests.
https://github.com/alexellis/k8s-on-raspbian
Alex
shell实例手册 | |
0说明{ | |
手册制作: 雪松 | |
更新日期: 2013-12-06 | |
欢迎系统运维加入Q群: 198173206 # 加群请回答问题 | |
请使用"notepad++"打开此文档,"alt+0"将函数折叠后方便查阅 | |
请勿删除信息,转载请说明出处,抵制不道德行为。 |
DevonThink Search operators | |
In the toolbar search field, as well as in both the interactive and the simple web interface, you can use standard and extended Boolean operators, parenthesis, and more to fine tune your search. | |
The syntax of the operators is compatible to DEVONagent and EasyFind, the Finder, Spotlight, common search engines as well as common programming languages such as C, C++, Objective-C, Java, and JavaScript. The complexity of the query is unlimited. | |
Case | |
All terms are case-insensitive. You may, if you wish, use capitalization for proper names in a query, but DEVONthink Pro Office will ignore case in interpreting the query. |
It is loaded by default by /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist.
If you run
launchctl unload -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist
<?php | |
namespace common\models\traits; | |
trait ActiveRecordClone | |
{ | |
/** | |
* Return new record with cloned attributes | |
* | |
* @param string $scenario | |
* @return static |
# GIT heart FZF | |
# ------------- | |
is_in_git_repo() { | |
git rev-parse HEAD > /dev/null 2>&1 | |
} | |
fzf-down() { | |
fzf --height 50% --min-height 20 --border --bind ctrl-/:toggle-preview "$@" | |
} |