欢迎来到我的博客。 预告:最近即将更新的内容=-= Skykoma系列 云端开发环境 https://github.com/dev-assistant/skykoma-workspace IDE自动化 https://github.com/dev-assistant/skykoma-plugin-idea 服务器搭建系列 录屏 https://space.bilibili.com/7757632/channel/collectiondetail?sid=3917759&ctype=0 文章 https://blog.hylstudio.cn/archives/category/fuwuqi MDSE实践计划系列 尝试完成部分半自动化的开发流程,部分可投入生产 20210828.近期动态分享:MDSE实践计划及过程记录 20211023.Web后端参数检查的通用代码生成设 ...
20250323postwoman/hoppscotch私有化部署
背景 尝试搭建个私有化的postman玩 视频版见B站 https://www.bilibili.com/video/BV1SDoBYrEjC 准备 一台虚拟机 一个域名 一个SMTP服务器:我用的是qq的,需要一个额外授权码当密码用 安装docker和docker-compose 略 准备环境配置 注:安全起见SMTP密码在视频发布后会失效 YAML #-----------------------Backend Config------------------------------# # Prisma Config DATABASE_URL=postgresql://postgres:6fyVResuychxGH8e@pgsql-hoppscotch:5432/hoppscotch?connect_timeout=300 # or replace with you ...
20250201AI应用相关技术调研
背景 20230515LLM笔记 继上次调研后,很久没更新AI相关技术了,这次一并更新。 应用框架 数据索引框架 data index framework llamaindex https://docs.llamaindex.ai/en/stable/ https://github.com/run-llama/llama_index https://docs.llamaindex.ai/en/stable/use_cases/agents/ Property Graph Index可以用neo4j https://docs.llamaindex.ai/en/stable/module_guides/storing Vector Stores:Elasticsearch、Lantern、OpenSearch、Postgres、Qdrant Document Stores:Mongo、Redis Index Stores:Mongo、Redis Chat Stores:Redi ...
20250131jupyter自动操作IDEA
背景 20230429 IaC之IDE,也许是下一个ChatIDE? 在2023年4月的时候从phodal的项目中知道了jupyter core是可以embedded之后,我就尝试将它embedd进了IDEA自身以获取全量IDE的自动化能力 源码:https://github.com/dev-assistant/skykoma-plugin-idea 示例:https://github.com/dev-assistant/skykoma-plugin-idea/blob/main/demo/demo.ipynb 因部分java项目的sdk总是没法正确识别,IDEA多年以来的bug都需要手动选下无法完成全量的自动化,所以在官方处理之前想尝试解决下。部分kotlin简写本次一并更新,同时替换掉了基于命令行的git ...
20250127comfyui使用笔记
参考https://github.com/cubiq/ComfyUI_Workflows进行的demo实验,部分内容可能会过时,但只是为了玩下所以无所谓 第一个demo 加载了v1-5-pruned-emaonly 设置潜在空间大小 CLIP(Contrastive Language-Image Pre-Training)对prompt做encode 采样过程KSampler: 种子Seed: 数字随机数,不同的种子 = 不同的图 步数Steps: 到达最终图片的步数,更多的步骤需要更多的计算时间,但可能会获得更好的合成效果。根据提示词、采样器、检查点的组合差异很大。如果不确定则取15-20 CFG(Classifier-free Guidance):定义图片距离提示词的距 ...
20250125comfyui安装教程
安装本体 秋叶整合包 https://www.bilibili.com/video/BV1Ew411776J https://dotnet.microsoft.com/zh-cn/download/dotnet/6.0 https://pan.quark.cn/s/64b808baa960 https://pan.baidu.com/s/19aektdzDcnkLdQhEtDJTJA 提取码: aaki 解压密码:bilibili-秋葉aaaki github原版 首页 https://github.com/comfyanonymous/ComfyUI 本质上是个python web应用,所以python web的套路这里都可以用 下载 https://github.com/comfyanonymous/ComfyUI/releases/latest/download/ComfyUI_windows_portable_nvidia.7z 手动换源 ...
20241228bootable container试玩
介绍 有完整独立内核的容器,可部署到物理机 支持ISO, raw or qcow2 https://containers.github.io/bootc/intro.html https://docs.fedoraproject.org/en-US/bootc/getting-started 镜像准备 podman pull quay.io/fedora/fedora-bootc:41 podman tag quay.io/fedora/fedora-bootc:41 registry.hylstudio.local/quay.io/fedora/fedora-bootc:41 podman push registry.hylstudio.local/quay.io/fedora/fedora-bootc:41 01234 podman pull quay.io/fedora/f ...
20241221国内minikube初始化
安装minikube New-Item -Path 'E:\lib' -Name 'minikube' -ItemType Directory -Force # Invoke-WebRequest -OutFile 'E:\lib\minikube\minikube.exe' -Uri 'https://github.com/kubernetes/minikube/releases/latest/download/minikube-windows-amd64.exe' -UseBasicParsing Invoke-WebRequest -OutFile 'E:\lib\minikube\minikube.exe' -Uri 'https://github.com/kubernetes/minikube/releases/download/v1.34.0/minikube-windows-amd64.exe' -UseBasicParsing 0123456 ...