Skip to content

Instantly share code, notes, and snippets.

View paradite's full-sized avatar
👀
Looking for interesting projects

Zhu Liang paradite

👀
Looking for interesting projects
View GitHub Profile
# Claude Code CLI Environment Variables
# This file lists all environment variables used in v2.1.63 with explanations
## Anthropic API & Authentication
ANTHROPIC_API_KEY - Primary API key for Anthropic's Claude API. Used as fallback when no OAuth token is configured.
ANTHROPIC_AUTH_TOKEN - Alternative bearer token for Anthropic services. Takes priority over ANTHROPIC_API_KEY for authorization headers.
ANTHROPIC_BASE_URL - Custom base URL for Anthropic API endpoints. Overrides the default api.anthropic.com endpoint.
ANTHROPIC_CUSTOM_HEADERS - Custom HTTP headers for API requests. Newline-separated Key: Value pairs.
ANTHROPIC_BETAS - Comma-separated list of beta feature headers to include in API requests. Appended to internal beta flags.
@paradite
paradite / test.ts
Created March 31, 2025 09:51
doesn't work bro
type State = 'initialized' | 'processing' | 'completed' | 'failed';
interface Pipeline<T extends State> {
state: T;
start(this: Pipeline<'initialized'>): Pipeline<'processing'>;
finish(this: Pipeline<'processing'>): Pipeline<'completed'>;
retry(this: Pipeline<'failed'>): Pipeline<'processing'>;
}
declare const p: Pipeline<'initialized'>;
@paradite
paradite / deepseek-r1-todo-fireworks.md
Last active February 3, 2025 12:44
Conversation of DeepSeek R1 solving a coding task in 16x Prompt

User: You are tasked to implement a feature. Instructions are as follows:

add created_at field to todos, update both backend and frontend.

Instructions for the output format:

  • Output code without descriptions, unless it is important.
  • Minimize prose, comments and empty lines.
  • Only show the relevant code that needs to be modified. Use comments to represent the parts that are not modified.
  • Make it easy to copy and paste.
@paradite
paradite / projects.md
Created July 4, 2023 17:14
Recent projects
'use strict';
const fs = require('fs');
const url = require('url');
const path = require('path');
const iOSUtils = require('ios-utils');
const EventEmitter = require('events');
const childProcess = require('child_process');
const _ = require('./helper');
@paradite
paradite / ul
Created February 7, 2020 04:33
ul test
https://play.google.com/store/apps/details?id=com.twitter.android
@paradite
paradite / tester.js
Created November 4, 2018 02:38 — forked from freedmand/tester.js
JavaScript unit testing in under 30 lines
const PASS = ['32']; // green
const FAIL = ['31', '1']; // red, bold
function logStyle(ansiEscapeCodes, text) {
console.log(`\x1b[${ansiEscapeCodes.join(';')}m${text}\x1b[0m`);
}
class Tester {
constructor() {}
@paradite
paradite / .travis.yml
Created December 16, 2017 10:01 — forked from willprice/.travis.yml
How to set up TravisCI for projects that push back to github
# Ruby is our language as asciidoctor is a ruby gem.
lang: ruby
before_install:
- sudo apt-get install pandoc
- gem install asciidoctor
script:
- make
after_success:
- .travis/push.sh
env:

Credits here: FortAwesome/Font-Awesome#4167

I agree. Use Pure css, with border-radius and a fixed width and height.

For example:

.social [class*="fa fa-"] {
    background-color: #333;
 border-radius: 30px;
@paradite
paradite / app.js
Created October 24, 2016 05:55 — forked from Turbo87/app.js
webpack + font-awesome test
require('font-awesome/css/font-awesome.css');
document.body.innerHTML = '<i class="fa fa-fw fa-question"></i>';