这里是黄永亮的博客

【资源导航】

欢迎来到我的博客。 预告:最近即将更新的内容=-= 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后端参数检查的通用代码生成设 ...

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 ...

20241214博客临近十年的大礼包——论为什么我的wordpress被黑了

这个博客是2015年创建的,今年是2024年很快就要到10年。当时随便从网上找了个主题就没再管它,这些年一直都是修修补补断断续续的升级,遇到报错就自己修掉。想着只要还能凑合用没大问题就行,到过年的时候放假重新做镜像化或者改成静态页什么的方式弄个新技术栈博客。但计划赶不上变化啊,今天本来要写minikube的记录,但打开博客发现速度巨慢,统计时间总是60s上下 尝试重启了apache2、mysql、甚至整个服务器后依然没用。这时候才怀疑是不是被黑了。 根据curl本地测试结果,和远程效果一致可排除腾讯云网络问题。打开apache2日志没发 ...