🔥 bookorbit / bookorbit - BookOrbit: Your Reading Space
GitHub热门项目 | BookOrbit: Your Reading Space | Stars: 2,675 | 82 stars today | 语言: TypeScript
找到 1538 篇相关文章
GitHub热门项目 | BookOrbit: Your Reading Space | Stars: 2,675 | 82 stars today | 语言: TypeScript
GitHub热门项目 | A collection of projects designed to help developers quickly get started with building deployable applications using the Claude API | Stars: 17,504 | 20 stars today | 语言: TypeScript
GitHub热门项目 | A coding-agent skill for multi-phase security audits with independently verified, machine-readable findings | Stars: 3,004 | 29 stars today | 语言: JavaScript
GitHub热门项目 | Salesforce's curated collection of agent skills for building applications. Optimized for Agentforce Vibes, compatible with all AI tools. | Stars: 890 | 44 stars today | 语言: Python
GitHub热门项目 | A collection of sample agents built with Agent Development Kit (ADK) | Stars: 10,200 | 12 stars today | 语言: Python
GitHub热门项目 | Visualize your year in travel using your Google Location History (Timeline) data | Stars: 2,184 | 1,040 stars today | 语言: Kotlin
We run an automated publishing pipeline entirely on GitHub Actions cron schedules — no server, no queue, just workflows that wake up, do one thing, and commit the result. It mostly works. But there is one behaviour of scheduled workflows that the docs mention in a single quiet sentence and that will silently halve your job frequency if you design around the cron expression instead of around reality: Scheduled workflows do not fire as often as you declare. What we measured We had a feedback-watcher workflow declared at four runs per hour: on : schedule : - cron : ' 7,22,37,52 * * * *' Measured over days, it actually fired one to two times per hour — not four, and not at the declared minutes. Roughly hourly on most days, at inconsistent offsets from the declared slots. We later redeclared it at two runs per hour ( 7,37 * * * * ) — measured result: still one to two runs per hour. The declared frequency changed by 2x; the delivered frequency barely moved. This is not an outage and not a misconfiguration. GitHub's own documentation says the schedule event can be delayed during periods of high load , and that high load times include the start of every hour — which is precisely where naive cron expressions cluster — and adds: "If the load is sufficiently high enough, some queued jobs may be dropped." What the docs understate is the magnitude: in our observation, on a private repo, "delayed" in practice meant "throttled to a fraction of the declared rate, indefinitely." What this breaks The failure mode is subtle because nothing goes red. Every run that happens succeeds. The runs that don't happen leave no trace — no log, no failure email, nothing. You only notice if something downstream depends on the frequency: We had promised a "reply within 15 minutes" SLA on incoming feedback, initially backed by the 4x/hour schedule. The schedule couldn't hold it, so for a while we ran a local 15-minute scheduler as the primary path and kept the workflow as fallback. When we later rel
Getting your folder or file to github can be a bit of an off vibe due to the many steps especially if it's your first commit, but getting these steps right will make it easy for the other folders or files you will push afterwards.Let’s dive in CREATING A LOCAL FOLDER Depending on the OS you are using you can use Git Bash or the Terminal. For Linux which is what I am using I will use the Terminal First Step Start by creating a folder in the terminal: mkdir your project folder name . then change directory: cd ~/to the folder you have just created Now we need to format our folder by creating a few files inside it Data file README.md code file if you will be using code. To check if you have created these files inside your folder: run:, ls This calls out all the files that are inside your folder. Let's tackle the files we have just added. Data Folder Run command: mkdir data This creates a data folder. This is where you will add your data e.g Excel or CSV files that you will be using to run your analysis or your project. README.md Run command: touch README.md This where you will give an overview of your work, the reason you are doing the analysis,how you collected your data,the tools you used to run the analysis..Basically README.md is a file that guides anyone who goes through your analysis or project on the steps you took while doing your analysis or project.Think of it as the introduction at the start of your favourite book or novel. To write all of this you will run the command echo "#give your project a name or describe your project" >README.md README.md uses markdown language reason for the # at the beginning of the quotation.When writing the headings or subtitles use capital letters or proper style. For subtitles you need to add two ## at the beginning. If you want to write more content without overwriting what you have previously written inside the README.md file you will need to use double greater signs(>>) at the end of the quotation,run: echo #your message” >>R
GitHub热门项目 | An open-source database of AI models. | Stars: 6,498 | 139 stars this week | 语言: TypeScript
GitHub热门项目 | Secure and fast microVMs for serverless computing. | Stars: 36,167 | 31 stars today | 语言: Rust
GitHub热门项目 | 企业微信开放平台命令行工具 — 让人类和 AI Agent 都能在终端中操作企业微信 | Stars: 2,898 | 34 stars today | 语言: Rust
GitHub热门项目 | Autonomous coding agent as an SDK, IDE extension, or CLI assistant. | Stars: 66,533 | 79 stars today | 语言: TypeScript
GitHub热门项目 | Network-wide ads & trackers blocking DNS server | Stars: 36,246 | 30 stars today | 语言: TypeScript
GitHub热门项目 | Apache Maka (Incubating) is a local-first AI agent workspace. Model messages, tool calls, tool results, permission decisions, and termination events are recorded as an append-only log. | Stars: 1,781 | 364 stars today | 语言: TypeScript
GitHub热门项目 | Open source agent with local models built in. Fully private and offline. Works out of the box on any hardware. | Stars: 1,430 | 134 stars today | 语言: TypeScript
GitHub热门项目 | An AI-agent skill that generates browser-editable presentations from multiple visual themes, exportable to HTML, PDF, and PPTX. | Stars: 5,764 | 298 stars today | 语言: JavaScript
GitHub热门项目 | Get your documents ready for gen AI | Stars: 65,286 | 145 stars today | 语言: Python
GitHub热门项目 | 🚀 AI 全自动短视频引擎 | AI Fully Automated Short Video Engine | Stars: 27,091 | 125 stars today | 语言: Python
GitHub热门项目 | Turn your PC, Mac, or Linux box into an AI server. LLM inference, chat UI, voice, agents, workflows, RAG, and image generation. | Stars: 4,561 | 168 stars today | 语言: Python
GitHub热门项目 | A full-stack AI Red Teaming platform securing AI ecosystems via Agent Scan, Skills Scan, MCP scan, AI Infra scan and LLM jailbreak evaluation. | Stars: 4,773 | 28 stars today | 语言: Python