Markdown 转海报编辑器系列

MD2Card:基于Markdown文档生成精美知识卡片 MD2Card:基于Markdown文档生成精美知识卡片 MD2Card 是一个免费易用的 Markdown 转知识卡片工具,支持多种精美风格、长文自动拆分、一键导出图片,无论是学习笔记、知识整理还是内容分享,都能轻松搞定。 卡片风格 MD2Card 支持温暖柔和、玻璃拟态、简约高级灰、梦幻渐变、波普艺术、赛博朋克、清新自然等 20+ 主题风格。 ...

创建: 2025-08-07 | 更新: 2025-08-07 | 字数: 3892字 | 时长: 8分钟 | RM

编程哲学

Vibe Code 近期,一个名为 “Vibe Coding”(氛围编程)的概念迅速升温,引发了广泛讨论。它不仅仅是一个时髦术语,更可能预示着软件开发方式的一次深刻变革。 ...

创建: 2025-06-28 | 更新: 2025-06-28 | 字数: 29720字 | 时长: 60分钟 | RM

前台后台中台等概念区分

前台,后台,中台,前端,后端,管理端,业务端,技术中台,业务中台,数据中台,物联网中台等概念区分 一、前台与前端 前台(Frontend) 定义:前台是系统中直接面对用户的部分,涵盖所有用户可见的界面和交互元素。 作用:通过页面设计、交互逻辑和数据呈现,实现用户与系统的有效沟通。简单说,前台就是用户看到和操作的“门面”。 关键点:注重用户体验,界面友好,交互自然直观。 前端(Frontend 技术) ...

创建: 2025-06-22 | 更新: 2025-06-22 | 字数: 1732字 | 时长: 4分钟 | RM

Python虚拟环境管理工具UV和JupyterNotebook联动

Python虚拟环境管理新利器——uv全解析 Python项目开发中,虚拟环境和依赖管理一直是让人头疼的话题。今天给大家介绍一个极致高速、功能强大的Python包和项目管理工具——uv,它由Rust语言编写,是由著名的Astral团队打造,同时也是性能爆棚的代码检查工具Ruff的作者开发。 ...

创建: 2025-05-23 | 更新: 2025-05-23 | 字数: 3570字 | 时长: 8分钟 | RM

Cloudflare-R2对象存储搭建高速免费图床指南

Cloudflare R2对象存储搭建高速免费图床指南 前言 最近打算搭建一个图片画廊。之前使用 GitHub 作为图床,但速度较慢。 这次尝试用 Cloudflare R2 搭建图床,并通过 picgo-plugin-s3 插件实现图片上传。 ...

创建: 2025-05-16 | 更新: 2025-05-16 | 字数: 2698字 | 时长: 6分钟 | RM

DeeplearningAI《Knowledge-Graphs-for-RAG》

Knowledge Graphs for RAG Preface This article is a study note for the course https://www.deeplearning.ai/short-courses/knowledge-graphs-rag/. What you’ll learn in this course Knowledge graphs are used in development to structure complex data relationships, drive intelligent search functionality, and build powerful AI applications that can reason over different data types. Knowledge graphs can connect data from both structured and unstructured sources (databases, documents, etc.), providing an intuitive and flexible way to model complex, real-world scenarios. ...

创建: 2025-05-15 | 更新: 2025-05-15 | 字数: 23642字 | 时长: 48分钟 | RM

如何通过优秀开源项目提升自己的Go开发能力?

如何通过优秀开源项目提升你的Go开发能力 作为一名Go语言开发者,学习和提升的过程离不开优质的实践项目。通过参与和研究开源项目,不仅可以加深对Go语言的理解,还能学习工程实践、架构设计和最佳开发技巧。本文将介绍一些精选的Go开源项目,带你了解如何利用这些项目来提升自己的Go开发能力。 ...

创建: 2025-05-13 | 更新: 2025-05-13 | 字数: 2630字 | 时长: 6分钟 | RM

AI编程工具指北

前言 虽然我平时最常用的是字节跳动出品的Trae,但在某种意义上,我也是最早使用Cursor的用户之一。 待我有空的时候,就打算开发一个基于Trae的Custom Agents Rules Generator,模拟类似的AI编程体验。 ...

创建: 2025-04-30 | 更新: 2025-04-30 | 字数: 2681字 | 时长: 6分钟 | RM

低代码平台推荐

前言 几分钟内上线一个网站,这些「低代码」神器太赞了! 作者GitHub Daily 正文 几个月前,我曾给大家分享过 GitHub 上几个可以快速完成网站开发、上线的低代码平台。近期,我又陆陆续续挖掘到一些与此相关的优质项目,便想着重新整理、更新,让诸位平时在闲暇之余,也可以上手把玩。 ...

创建: 2025-03-24 | 更新: 2025-03-24 | 字数: 2957字 | 时长: 6分钟 | RM

使用Python把MP4文件批量转换为MP3文件

使用Python把MP4文件批量转换为MP3文件 前提:本地安装ffmpeg,可以选择安装pydub或是moviepy 使用Python调用ffmpeg需要安装ffmpeg-python 使用PyDub 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 import os from pydub import AudioSegment def convert_mp4_to_mp3(directory): for filename in os.listdir(directory): if filename.endswith('.mp4'): mp4_file_path = os.path.join(directory, filename) mp3_file_path = os.path.splitext(mp4_file_path)[0] + '.mp3' try: # 使用 pydub 转换 mp4 为 mp3 audio = AudioSegment.from_file(mp4_file_path, format='mp4') audio.export(mp3_file_path, format='mp3') # 删除原有的 mp4 文件 os.remove(mp4_file_path) print(f"Converted {mp4_file_path} to {mp3_file_path} and deleted original mp4 file.") except Exception as e: print(f"Error processing {mp4_file_path}: {e}") # 设置你的目标目录 target_directory = r'E:\Entertainment\100s' convert_mp4_to_mp3(target_directory) 使用MoviePy 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 import os from moviepy.editor import VideoFileClip def convert_mp4_to_mp3(directory): # 遍历目录 for filename in os.listdir(directory): if filename.endswith('.mp4'): mp4_file_path = os.path.join(directory, filename) mp3_file_path = os.path.splitext(mp4_file_path)[0] + '.mp3' try: # 使用 moviepy 转换视频为音频 video_clip = VideoFileClip(mp4_file_path) video_clip.audio.write_audiofile(mp3_file_path) video_clip.close() # 删除原有的 mp4 文件 os.remove(mp4_file_path) print(f"Converted {mp4_file_path} to {mp3_file_path} and deleted original mp4 file.") except Exception as e: print(f"Error processing {mp4_file_path}: {e}") # 设置你的目标目录 target_directory = r'E:\Entertainment\北流嘉措' convert_mp4_to_mp3(target_directory) 【最新】windows电脑FFmpeg安装教程手把手详解 windows电脑FFmpeg安装教程手把手详解教程来源 ...

创建: 2025-02-07 | 更新: 2025-02-07 | 字数: 5323字 | 时长: 11分钟 | RM