找到约 10000 条结果
  • GitHub 趋势日报 (2025年04月13日)
    本日报由 TrendForge 系统生成 [链接]📈 今日整体趋势 Top 10排名项目名称项目描述今日获星总星数语言1yeongpin/cursor-free-vip[Support 0.48.x](Reset Cursor AI MachineID & Auto Sign Up / In & Bypass Higher T...⭐ 1266⭐ 12709Python2microsoft/ai-agents-for-beginners10 Lessons to Get Started Building AI Age...
    2025-04-16
  • GitHub 趋势日报 (2025年04月18日)
    本日报由 TrendForge 系统生成 [链接]📈 今日整体趋势 Top 10排名项目名称项目描述今日获星总星数语言1linera-io/linera-protocolMain repository for the Linera protocol⭐ 1605⭐ 23157Rust2Anduin2017/HowToCook程序员在家做饭方法指南。Programmer's guide about how to cook at home (Simplified Chinese onl...⭐ 132...
    2025-04-19
  • GitHub 趋势日报 (2025年04月17日)
    本日报由 TrendForge 系统生成 [链接]📈 今日整体趋势 Top 10排名项目名称项目描述今日获星总星数语言1Anduin2017/HowToCook程序员在家做饭方法指南。Programmer's guide about how to cook at home (Simplified Chinese onl...⭐ 2247⭐ 74278Dockerfile2virattt/ai-hedge-fundAn AI Hedge Fund Team⭐ 1341⭐ 25220Python3N...
    2025-04-18
  • GitHub 趋势日报 (2025年04月26日)
    本日报由 TrendForge 系统生成 [链接]📈 今日整体趋势 Top 10排名项目名称项目描述今日获星总星数语言1trimstray/the-book-of-secret-knowledgeA collection of inspiring lists, manuals, cheatsheets, blogs, hacks, one-liners,...⭐ 1399⭐ 166068未指定2kortix-ai/sunaSuna - Open Source Generalist AI Agent⭐ 1304⭐ ...
    2025-04-27
  • GitHub 趋势日报 (2025年04月14日)
    本日报由 TrendForge 系统生成 [链接]📈 今日整体趋势 Top 10排名项目名称项目描述今日获星总星数语言1yeongpin/cursor-free-vip[Support 0.48.x](Reset Cursor AI MachineID & Auto Sign Up / In & Bypass Higher T...⭐ 2563⭐ 15190Python2krillinai/KrillinAIA video translation and dubbing tool powered by LLMs, o...
    2025-04-16
  • GitHub 趋势日报 (2025年04月23日)
    本日报由 TrendForge 系统生成 [链接]📈 今日整体趋势 Top 10排名项目名称项目描述今日获星总星数语言1microsoft/markitdownPython tool for converting files and office documents to Markdown.⭐ 822⭐ 53006Python2microsoft/BitNetOfficial inference framework for 1-bit LLMs⭐ 541⭐ 16713C++3kamranahmedse/develope...
    2025-04-24
  • GitHub 趋势日报 (2025年04月21日)
    本日报由 TrendForge 系统生成 [链接]📈 今日整体趋势 Top 10排名项目名称项目描述今日获星总星数语言1microsoft/markitdownPython tool for converting files and office documents to Markdown.⭐ 1033⭐ 51339Python2microsoft/BitNetOfficial inference framework for 1-bit LLMs⭐ 697⭐ 15541C++3public-apis/public-ap...
    2025-04-22
  • GitHub 趋势日报 (2025年04月22日)
    本日报由 TrendForge 系统生成 [链接]📈 今日整体趋势 Top 10排名项目名称项目描述今日获星总星数语言1microsoft/markitdownPython tool for converting files and office documents to Markdown.⭐ 980⭐ 52276Python2microsoft/BitNetOfficial inference framework for 1-bit LLMs⭐ 730⭐ 16188C++3kamranahmedse/develope...
    2025-04-23
  • 马赛克图片
    代码来自头条号"前端小智",侵权删 {代码...}
    2021-06-28
  • 【Vue组件】计时进度条
    需求描述:显示操作进度条,超过n秒还未完成操作时,允许手动取消。效果图:实现: {代码...} {代码...} {代码...} {代码...}
    2021-08-17
  • 【二次元stylus解放css】用stylus画可爱的小丸子
    之前看了一些关于二次元用css来画卡通图画的文章,都写得非常棒,但是对于我这样一个有密集恐惧症的小白来说相当的头疼,密密麻麻的括弧和标点让人眼花缭乱,最近学习了一些关于stylus的知识,觉得用stylus来写样式相当地简洁,层级嵌套逻辑关系也非常清晰,索性结合Div和stylus画了一个小丸子。话不多说,一起来感受一...
    2018-04-19
    1
  • 小丸子成长记---在stylus下用DIV+CSS一步一步打造小丸子
    命令行切换至项目目录 启动live-server实时刷新 -->live-server 启动stylus,监视wanzi.styl--->stylus -w wanzi.styl
    2018-04-18
    2
  • Spring Boot 连接 Elasticsearch 备忘
    以下备忘 Spring Boot 项目连接 Elasticsearch 的方式。 1. Transport Client 方式 1.1 Pom.xml 添加如下依赖: {代码...} 注意,这里对 log4j 的依赖引用,是为了解决以下报错: {代码...} 1.2 添加 Client Bean {代码...} 注:【 Transport Client 使用 TCP 端口 】Elasticsearch Http 端口和 TCP 端口不同,切勿写错...
    2019-08-16
  • leetcode 33 Search in Rotated Sorted Array
    Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand.(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).You are given a target value to search. If found in the array return its index, otherwise return -1.题目的输入是一个被旋转过的升序排列数组。(如正常的升序...
    2018-02-15
  • [LintCode/LeetCode] Validate Binary Search Tree
    Given a binary tree, determine if it is a valid binary search tree (BST).
    2016-04-28
  • [LeetCode] Closest Binary Search Tree Value
    Given a non-empty binary search tree and a target value, find the value in the BST that is closest to the target.
    2018-05-12
  • Leetcode 212. Word Search II
    Given a 2D board and a list of words from the dictionary, find allwords in the board.Each word must be constructed from letters of sequentially adjacentcell, where "adjacent" cells are those horizontally or verticallyneighboring. The same letter cell may not be used more than once in aword.Exampl...
    2019-03-18