摘要: Jenkins2 入门到精通系列文章。 Jenkins2 下载与启动jenkins2 插件安装jenkins2 hellopipelinejenkins2 pipeline介绍jenkins2 javahelloworldjenkins2 groovy入门jenkins2 pipeline入门jen 阅读全文
posted @ 2016-09-15 20:55 iTech 阅读(15626) 评论(1) 推荐(3) 编辑
摘要: linux 常用命令,基础知识,常用工具。。。 阅读全文
posted @ 2014-04-12 11:52 iTech 阅读(7175) 评论(0) 推荐(2) 编辑
摘要: Jenkins入门系列的文章,快速地了解和使用Jenkins。 阅读全文
posted @ 2011-11-23 12:38 iTech 阅读(216326) 评论(13) 推荐(31) 编辑
摘要: SCM软件配置管理 阅读全文
posted @ 2011-08-26 15:05 iTech 阅读(5062) 评论(0) 推荐(1) 编辑
摘要: 软件构建发布自动化, 软件持续集成和发布 阅读全文
posted @ 2011-07-25 17:10 iTech 阅读(3590) 评论(0) 推荐(2) 编辑
摘要: Python 学习总结 阅读全文
posted @ 2011-01-31 14:25 iTech 阅读(9484) 评论(10) 推荐(6) 编辑
摘要: 本系列针对Bash Shell,其他的比较流行的Shell还有Korn shell (ksh)和"Tenex C shell" (tcsh)。一 简单过程1)可以使用任意一种文字编辑器,比如nedit、kedit、emacs、vi等来编写shell脚本。ubuntu中可以使用gedit,notpad... 阅读全文
posted @ 2009-04-07 21:52 iTech 阅读(3406) 评论(0) 推荐(2) 编辑
摘要: 以下是综合多篇文档整理的Python高级用法汇总,从语法糖到复杂特性分层呈现,重点特性附代码示例及出处引用: 一、语法糖与简洁写法(从简到繁) 变量交换 无需临时变量实现值交换: a, b = b, a # 传统方式需要temp变量 海象运算符(:=) Python 3.8+允许在表达式中赋值: i 阅读全文
posted @ 2025-04-04 11:11 iTech 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 以下是一个整合 FastAPI 核心安全功能与模板渲染的完整示例,基于多个技术文档的最佳实践,包含登录、CSRF、JWT、会话、认证和缓存功能: from datetime import datetime, timedelta from fastapi import FastAPI, Request 阅读全文
posted @ 2025-04-04 10:10 iTech 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 以下是一个整合 FastAPI 核心功能的完整示例代码,涵盖 WebSocket、后台任务、生命周期事件、中间件配置及会话管理。代码结构参考了多个技术文档的最佳实践: from contextlib import asynccontextmanager from fastapi import Fas 阅读全文
posted @ 2025-04-04 09:24 iTech 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 以下是当前最火的 Python 异步 Web 框架的综合对比分析,涵盖性能、技术特性和适用场景,并补充其他值得关注的框架: 一、主流异步框架横向对比 1. FastAPI • 核心优势:基于 Starlette 和 Pydantic,性能可达 5k+ QPS,支持自动生成 OpenAPI/Swagg 阅读全文
posted @ 2025-04-04 08:40 iTech 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 以下是2025年最流行的5个Python ASGI服务器及其核心特性与适用场景: 1. Uvicorn • 核心优势: • 基于uvloop和httptools,性能远超传统WSGI服务器,支持HTTP/1.1和WebSocket。 • 与FastAPI深度集成,开发体验极简,提供自动重载和HTTP 阅读全文
posted @ 2025-04-04 08:24 iTech 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 以下是 Python 环境管理工具 uv 从入门到精通的系统性指南,基于 2025 年最新版本特性整理: 一、uv 核心优势与适用场景 极速性能 • 基于 Rust 开发,依赖解析速度比传统工具快 10-100 倍(如安装 torch 等大型包仅需几秒)。 • 并发下载和智能缓存机制,减少等待时间。 阅读全文
posted @ 2025-04-03 22:44 iTech 阅读(18) 评论(0) 推荐(0) 编辑
摘要: Python 类型检查与类型注解:mypy 与 typing 深度解析 在 Python 动态类型语言中,mypy 和 typing 是两个提升代码健壮性的核心工具。它们通过静态类型检查与类型注解,帮助开发者在编码阶段捕获潜在错误,同时提高代码可读性和可维护性。以下是它们的核心功能、用法及实践建议: 阅读全文
posted @ 2025-03-31 22:51 iTech 阅读(27) 评论(0) 推荐(0) 编辑
摘要: WSGI、Starlette、Uvicorn 与 Gunicorn 的核心介绍及使用指南 一、技术定位与核心差异 WSGI(Web Server Gateway Interface) • 定义:传统的 Python Web 服务器与框架间的同步协议,适用于 Flask、Django 等同步框架。 • 阅读全文
posted @ 2025-03-31 22:44 iTech 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 为什么选择 FastAPI? 高性能:基于 Starlette 和 Uvicorn,支持异步请求处理 开发效率:自动交互文档、类型提示、代码自动补全 现代标准:兼容 OpenAPI 和 JSON Schema 易扩展:模块化设计,支持中间件和依赖注入 以下是一个使用 FastAPI 最新特性 (0. 阅读全文
posted @ 2025-03-31 22:15 iTech 阅读(34) 评论(0) 推荐(0) 编辑
摘要: # typer_demo.py import typer from pathlib import Path from typing import Optional from typing_extensions import Annotated app = typer.Typer(rich_marku 阅读全文
posted @ 2025-03-31 21:49 iTech 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 比较 对比维度​MCP(Model Context Protocol)​​Function Calling​Agent(智能体)​ ​定义 由 Anthropic 推出的开放协议,标准化 LLM 与外部数据源、工具的通信接口 。 LLM 调用外部函数的机制,通过 JSON 参数规范模型与外部系统的交 阅读全文
posted @ 2025-03-29 11:09 iTech 阅读(93) 评论(0) 推荐(0) 编辑
摘要: npm install -D pnpm npm install -D vite pnpm create vite my-react-app --template react-ts npx vite --help vite build --base=/my/public/path/ pnpm dev 阅读全文
posted @ 2025-03-22 11:20 iTech 阅读(7) 评论(0) 推荐(0) 编辑
摘要: MCP is an open protocol that enables AI models to securely interact with local and remote resources through standardized server implementations. https 阅读全文
posted @ 2025-03-17 21:09 iTech 阅读(28) 评论(0) 推荐(0) 编辑
摘要: Service Reliability Management: A Comprehensive Overview Service reliability management is a critical practice aimed at ensuring that online services 阅读全文
posted @ 2025-03-09 11:18 iTech 阅读(13) 评论(1) 推荐(0) 编辑
摘要: https://www.harness.io/ Continuous Delivery and gitops: while CD automates application deployment, GitOps centralizes infrastructure and application m 阅读全文
posted @ 2025-03-09 11:00 iTech 阅读(3) 评论(0) 推荐(0) 编辑
摘要: https://platform9.com/blog/argo-cd-vs-tekton-vs-jenkins-x-finding-the-right-gitops-tooling/ implement GitOps with Kubernetes ArgoCD Tekton GitHub Star 阅读全文
posted @ 2025-01-19 22:23 iTech 阅读(20) 评论(1) 推荐(0) 编辑
摘要: https://www.redhat.com/en/topics/ai/llmops https://www.redhat.com/en/topics/cloud-computing/what-is-kubeflow https://www.kubeflow.org/docs/started/arc 阅读全文
posted @ 2025-01-19 22:20 iTech 阅读(16) 评论(0) 推荐(0) 编辑
摘要: How does AIOps work?With AIOps, your organization takes a more proactive approach to resolve IT operational issues. Instead of relying upon sequential 阅读全文
posted @ 2025-01-19 21:43 iTech 阅读(19) 评论(1) 推荐(0) 编辑
摘要: https://github.com/nomic-ai/gpt4all https://github.com/zylon-ai/private-gpt 阅读全文
posted @ 2025-01-18 22:53 iTech 阅读(7) 评论(0) 推荐(0) 编辑
摘要: https://github.com/abilzerian/LLM-Prompt-Library https://www.promptingguide.ai/ 阅读全文
posted @ 2025-01-18 22:49 iTech 阅读(8) 评论(0) 推荐(0) 编辑
摘要: KAG: A Better Alternative to RAG for Domain-Specific Knowledge Applications https://medium.com/@ahmed.missaoui.pro_79577/rag-vs-kag-a-comparative-anal 阅读全文
posted @ 2025-01-18 22:22 iTech 阅读(300) 评论(1) 推荐(0) 编辑
摘要: https://github.com/JShollaj/awesome-llm-web-ui Contents Streamlit Gradio Lobe Chat Text Generation WebUI Open WebUI (formerly: Ollama WebUI) Hugging F 阅读全文
posted @ 2025-01-18 21:02 iTech 阅读(11) 评论(0) 推荐(0) 编辑
摘要: What is DevOps? DevOps is a mindset, a culture, and a set of technical practices. It provides communication, integration, automation, and close cooper 阅读全文
posted @ 2024-10-03 21:48 iTech 阅读(7) 评论(0) 推荐(0) 编辑
摘要: langchain: 提供了大模型相关应用开发的所有便利。 https://python.langchain.com/docs/get_started/introduction Build your LLM application with LangChain Trace your LLM appl 阅读全文
posted @ 2024-03-06 21:39 iTech 阅读(99) 评论(0) 推荐(0) 编辑
摘要: https://docs.vllm.ai/en/latest/index.html 高吞吐量、高内存效率的 LLMs 推理和服务引擎(快速搭建本地大模型,且openAI API 兼容) vLLM is a fast and easy-to-use library for LLM inference 阅读全文
posted @ 2024-03-05 22:41 iTech 阅读(314) 评论(0) 推荐(0) 编辑
摘要: https://docs.llamaindex.ai/en/stable/module_guides/models/llms.html 可以按参数和评分来选择模型: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard ll 阅读全文
posted @ 2024-03-05 22:36 iTech 阅读(27) 评论(0) 推荐(0) 编辑
摘要: https://ollama.com/ 使用 Llama 2、Mistral、Gemma 和其他大型语言模型启动和运行。 支持windows,Linux,Mac。 支持的开源模型列表: Ollama supports a list of models available on ollama.com/ 阅读全文
posted @ 2024-03-05 22:12 iTech 阅读(472) 评论(0) 推荐(0) 编辑
摘要: 2021年扩展DevOps的6种方法 加强devops流程的自动化 为了满足快速、高质量应用程序交付的需求,现代软件团队需要一种超越常规性能测试的方法。在这里,以devops为中心的方法可以提供更快、更有效的开发,并帮助确保交付高质量的软件。使用敏捷方法构建应用程序的组件,并在创建时验证特性,确保可 阅读全文
posted @ 2021-01-20 22:14 iTech 阅读(246) 评论(0) 推荐(0) 编辑
摘要: nodejs读写redis https://redis.io/commands https://www.npmjs.com/package/redis var redis = require('redis'); var client = redis.createClient(); client.on 阅读全文
posted @ 2020-07-06 10:44 iTech 阅读(377) 评论(0) 推荐(0) 编辑
摘要: nodejs队列 创建具有指定并发性的队列对象。添加到队列的任务以并行方式处理(直到并发性限制)。如果所有的worker都在进行中,任务就会排队,直到有一个worker可用。worker完成任务后,将调用该任务的回调。 priorityQueue对象,queue和priorityQueue对象有两个 阅读全文
posted @ 2020-07-06 10:27 iTech 阅读(3188) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示