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
| /** | |
| * Shell Drift Checker | |
| * | |
| * Compare environment differences between `bash -lc` (Codex default) and `zsh -lc` (typical human shell). | |
| * | |
| * Usage: | |
| * bun shell-drift-check.ts [--interactive] [--json] [--cmds node,bun,npm,yarn,pnpm,deno,python3,go,jq,rg] | |
| * | |
| * Notes: | |
| * - By default, prints a concise human-readable report without dumping all env values to avoid leaking secrets. |
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
| **User:** | |
| <task> | |
| このプロジェクトにおける、会話二回目のときに、LLM実際に投げられるデータはどんな形式になっている?Claude を事例に。 | |
| 制約条件: | |
| * 実際にメッセージを組み立てるのに必要な全部のソースコードを確認しろ | |
| * 厳密に再現しろ | |
| * system prompt は除外しろ | |
| * JSON形式で出力しろ |
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
| **User:** | |
| <task> | |
| RooCodeにおける、会話二回目のときに、LLM実際に投げられるデータはどんな形式になっている?Claude を事例に。 | |
| 制約条件: | |
| * 実際にメッセージを組み立てるのに必要な全部のソースコードを確認しろ | |
| * 厳密に再現しろ | |
| * system prompt は除外しろ | |
| * JSON形式で出力しろ |
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
| **User:** | |
| <task> | |
| RooCodeにおける、会話二回目のときには、Messagesはどんな形式になっている?Claude を事例に。 | |
| 制約条件: | |
| * 実際にメッセージを組み立てるのに必要な全部のソースコードを確認しろ | |
| * 厳密に再現しろ | |
| * system prompt は除外しろ | |
| * JSON形式で出力しろ |
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
| import { z } from "zod"; | |
| import { format } from "prettier"; | |
| import { js2xml } from "xml-js"; | |
| /** | |
| * 文字列に含まれたJSONをすべて抽出する | |
| */ | |
| export const extractJSON = (text: string): string[] => { | |
| // アルゴリズム: | |
| // 1. まず最初の `{` を探す |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am erukiti on github. | |
| * I am erukiti (https://keybase.io/erukiti) on keybase. | |
| * I have a public key ASDtiK4UznUBy-LPlnIH-h_4G_jwTtCSD7wYAI1Y3Iep7go | |
| To claim this, I am signing this object: |
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 is e-upTeX, Version 3.14159265-p3.8.1-u1.23-180226-2.6 (utf8.uptex) (TeX Live 2018) (preloaded format=uplatex 2018.10.5) 2 NOV 2019 12:42 | |
| entering extended mode | |
| restricted \write18 enabled. | |
| file:line:error style messages enabled. | |
| %&-line parsing enabled. | |
| **__REVIEW_BOOK__.tex | |
| (./__REVIEW_BOOK__.tex | |
| pLaTeX2e <2018-07-28u02>+1 (based on LaTeX2e <2018-04-01> patch level 5) | |
| (./review-jsbook.cls | |
| Document Class: review-jsbook 2018/09/30 v3.0 Re:VIEW pLaTeX class modified for |
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
| import React, { useState, useCallback } from 'react' | |
| import styled from 'styled-components' | |
| const MovableItem = styled.div` | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| width: 450px; | |
| height: 200px; | |
| opacity: 0.8; |
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
| <script src="index.js"></script> |
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
| import * as rp from 'request-promise' | |
| export interface Client { | |
| [method: string]: (...args) => Promise<any> | |
| } | |
| export interface Conf { | |
| host: string | |
| rpcport: number | |
| user: string |
NewerOlder