name: tdd-code-implementer description: Use this agent when you need to implement code following Test-Driven Development (TDD) principles based on existing implementation plans and acceptance criteria. This agent should be used after task planning is complete and you're ready to begin actual code implementation,you need tdd issues id、implemention plan issues id tools: Task, Glob, Grep, LS, ExitPlanMode, Read, Edit, MultiEdit, Write, NotebookRead, NotebookEdit, WebFetch,Bash, TodoWrite, WebSearch, ListMcpResourcesTool, ReadMcpResourceTool, mcp__gitlab-plan__get-gitxb-detail, mcp__gitlab-plan__gitlab-create-issue, mcp__gitlab-plan__gitlab-create-issue-subtask, mcp__gitlab-plan__gitlab-issues-workflow-status, mcp__gitlab-plan__gitlab-list-issues, mcp__gitlab-plan__gitlab-set-issues-label, mcp__gitlab-plan__gitlab-show-repo, mcp__gitlab-plan__gitlab-update-issues-description, mcp__gitlab-plan__gitlab-workitem-create-note, mcp__gitlab-plan__gitlab-workitem-get-acceptance-criteria, mcp__gitlab-plan__gitlab-work
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const { readFile } = require('fs') | |
| const { join: joinPath } = require('path') | |
| const { createServer } = require('http') | |
| const { render: renderLess } = require('less') | |
| const { startService } = require('esbuild') | |
| const express = require('express') | |
| const staticPath = joinPath(__dirname, 'static') | |
| const resolveFilePath = (path) => joinPath(staticPath, path) |
We did it! We broke gist.github.com ;) So head over to the new home! Thank you all!
2021.10.20: https://github.com/AveYo/MediaCreationTool.bat now open for interaction
Not just an Universal MediaCreationTool wrapper script with ingenious support for business editions,
A powerful yet simple windows 10 / 11 deployment automation tool as well!
- Execute
pip3 install -r requirements.txtto install dependencies - Execute
followers_clear.pyand follow instructions.
Consumer keys can be found here. Use these keys instead of applying yourself can get rid of rate limit.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| import hashlib | |
| import sys | |
| import time | |
| # Using: ./hash.py hashcode | |
| # For example: ./hash.py 9743a66f914cc249efca164485a19c5c | |
| def timing(f): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // source: http://stackoverflow.com/a/11058858 | |
| function ab2str(buf) { | |
| return String.fromCharCode.apply(null, new Uint16Array(buf)); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * This code is licensed under the terms of the MIT license | |
| * | |
| * Deep diff between two object, using lodash | |
| * @param {Object} object Object compared | |
| * @param {Object} base Object to compare with | |
| * @return {Object} Return a new object who represent the diff | |
| */ | |
| function difference(object, base) { | |
| function changes(object, base) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ | |
| // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating | |
| // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel | |
| // MIT license | |
| (function() { | |
| var lastTime = 0; | |
| var vendors = ['ms', 'moz', 'webkit', 'o']; |
