Opengist

Explore

  • All gists
  • Topics
  • Users
Give feedback on the new UI Powered by Opengist ⋅ 63ms

user:thomas gists created by user

title:mygist gists with given title

description:sync gists with given description

filename:myfile.txt gists having files with given name

extension:yml gists having files with given extension

language:go gists having files with given language

topic:homelab gists with given topic

all:systemctl search all fields

Login

All gists

All Recently liked Recently forked
Recently created Least recently created Recently updated Least recently updated
wojack

wojack / PicProse

Last active 2 months ago docker-compose picprose

一款开源免费的封面图片制作工具

0 0 2
1 # 🖼️ Picprose - 多端带壳预览工具
2 # 💬 Code Create Life · 如何得与凉风约,不共尘沙一并来!
3 # 🌿 —— AhHui · 2025
4
5 services:
6 picprose:
7 # 🏷️ 容器名称
8 container_name: picprose
9
10 # 📦 使用的镜像
wojack

wojack / github action 构建 hexo 源码

Last active 2 months ago action github hexo npm

🛠️ 基于 GitHub Actions 的 Hexo 静态博客自动化部署流程。

0 0 3
1 name: 🚀 自动部署 Hexo 博客
2
3 on:
4 push:
5 branches:
6 - main # 🌿 监听 main 分支的推送
7 release:
8 types:
9 - published # 🎉 监听新版本发布
10 workflow_dispatch: # ⏯️ 支持手动触发
wojack

wojack / sync-1panel-appstore.sh

Last active 2 months ago 1Panel App-Store Shell

1Panel 第三方 App Store 同步更新脚本

0 0 2
1 #!/bin/bash
2 # 1Panel 第三方应用商店同步脚本(轻量优化版)
3 # 仅同步应用,不执行镜像替换
4
5 # 启用严格模式:遇到错误、未定义变量、管道错误时立即退出
6 set -euo pipefail
7
8 # 设置字段分隔符,防止文件名含空格或换行符时出错
9 IFS=$'\n\t'
Newer Older