Public-safe version. Redacted. No handles, no links, no callouts.
- Strongly derogatory replies
- Crypto spam, token shills, wallet/contract junk
- Clear AI slop or reply-bot behavior
- Repetitive low-context spam
This is not a proposal. This documents existing but hidden functionality found in Claude Code v2.1.19 binary, plus speculation on how it could be used.
TeammateTool already exists in Claude Code. We extracted this from the compiled binary at ~/.local/share/claude/versions/2.1.19 using strings analysis. The feature is fully implemented but gated behind feature flags (I9() && qFB()).
Your task: Is to take our API endpoints that are listed and create the API.md file for us to use in our editor to make requests via the vscode-restclient extension.
Follow this process:
docs/tasks/, task management systems if accessible, or summarized in recent discussions).| import React, { useState } from 'react' | |
| import { StyleSheet, Text, ScrollView, Button } from 'react-native' | |
| import TextField from './components/TextField' | |
| export default function App() { | |
| const [value, setValue] = useState('') | |
| const [error, setError] = useState<string | null>(null) | |
| return ( | |
| <ScrollView contentContainerStyle={styles.content}> |
If you're using self-signed certificate for your web server on development, you might know the browser warning saying that your certificate isn't valid. If like me you had manually added an exception for this certificate error each time it showed up, this gist is for you.
You'll have to create a self-signed certificate with a custom SubjectAltName.
find /usr/lib -name openssl.cnfDisclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.
This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would
[based on a true story]
So. Your friend's about to teach you how to make a website. Great!
You make a file, and you save it as 'index.html'. Why it's called 'index' isn't really explained to you, but whatever.
You type the following.
hello world
| { | |
| "keys": ["tab"], | |
| "command": "expand_abbreviation_by_tab", | |
| // put comma-separated syntax selectors for which | |
| // you want to expandEmmet abbreviations into "operand" key | |
| // instead of SCOPE_SELECTOR. | |
| // Examples: source.js, text.html - source | |
| "context": [ | |
| { |