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
| # Say Ready Hook for Claude Code (macOS) | |
| Paste this into Claude Code: | |
| --- | |
| Set up a "say ready" hook that announces the project name when you're ready for my input. This helps me know which terminal is ready when I have multiple sessions open. | |
| Create ~/.claude/scripts/say-ready.sh with this content: |
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
| var fs = require('fs') | |
| const jsonifyText = text => { | |
| const cleaned = text | |
| .toString() | |
| .split("\n") | |
| .filter(Boolean) | |
| .map(item => item.split(/:(.+)/).filter(Boolean)) | |
| const structured = { |
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
Show hidden characters
| { | |
| "compilerOptions": { | |
| "allowSyntheticDefaultImports": true, | |
| "alwaysStrict": true, | |
| "baseUrl": "src", | |
| "declaration": true, | |
| "jsx": "react", | |
| "module": "commonjs", | |
| "moduleResolution": "node", | |
| "noUnusedLocals": true, |
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 chalk from 'chalk' | |
| import * as path from 'path' | |
| import * as rimraf from 'rimraf' | |
| import { promisify } from 'util' | |
| import { flattenDeep } from 'lodash' | |
| import { exec } from 'child_process' | |
| import { upperFirst, camelCase } from 'lodash' | |
| import { promises as fsPromise, lstatSync, readdirSync } from 'fs' | |
| import { Format, Transform, TheoConfig } from '../typings/theo' |
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
| export declare const Theme: { | |
| zIndex: { | |
| alert: number | |
| dialog: number | |
| mesosphere: number | |
| modal: number | |
| navigationBar: number | |
| popover: number | |
| root: number | |
| stratosphere: number |
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
| {"lastUpload":"2019-10-15T22:18:01.816Z","extensionVersion":"v3.4.3"} |
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
| d |
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
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |
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
| taggify(string, tag) { | |
| let taggedChars = [] | |
| _.map(string, function(char) { | |
| taggedChars.push(`<${tag}>${char}</${tag}>`) | |
| }) | |
| return taggedChars.join('') | |
| } |
NewerOlder