pandoc report-example.md -o report.pdf --from markdown --template=eisvogel --listings
bb write_vk --oracle_hash keccak -b ./target/circuits.json -o ./target
bb write_solidity_verifier -k ./target/vk -o ./target/Verifier.sol
rm -rf PRust/.git
git push -u origin main --force
git config --global user.email
- Select files which need to be deleted.
git filter-repo --invert-paths --path DEVELOPER_QUICK_REFERENCE.md --path FEATURE_ROADMAP.md --path PHASE_1_2_3_COMPLETION.md --path PHASE_2_COMPLETION.md --path PROJECT_STATUS.md
- Fresh Clone Required
git-filter-repo refuses to run on non-fresh clones. Clone to a new directory first.
git clone https://github.com/pky1987/PChat.git fresh-clone
cd fresh-clone
- Run History Rewrite
Use git-filter-repo with --sensitive-data-removal flag for extra safety.
git filter-repo --sensitive-data-removal --invert-paths --path DEVELOPER_QUICK_REFERENCE.md --path FEATURE_ROADMAP.md --path PHASE_1_2_3_COMPLETION.md --path PHASE_2_COMPLETION.md --path PROJECT_STATUS.md
- Force Push All Refs
Overwrite remote history completely.
git push --force --mirror origin
5.n8n
docker run -it --rm -p 5678:5678 -v n8n_data:/home/node/.n8n docker.n8n.io/n8nio/n8n:nightly
- Testing Indiviudal function of test file.
cd otp && mix test test/otp/abuse/detector_test.exs --only "test abuse response actions logs abuse incidents"
- POST code
curl -i -X POST http://localhost:4000/api/delivery-report \
-H "Content-Type: application/json" \
-d '{"provider_message_id":"abc123","status":"delivered","delivered_at":"2025-12-31T12:00:00Z"}'
- Creating and Generating API Key
export OTP_ADMIN_TOKEN="abcdefm"
echo $OTP_ADMIN_TOKEN
curl -i -X POST http://localhost:4000/api/admin/api_keys \
-H "x-admin-token: Prakash-Yadav-03" \
-H "Content-Type: application/json" \
-d '{"name":"Prakash"}'
curl -s "http://localhost:5000/api/cameras" -H "Origin: http://localhost:5175" | head -20
- Create virtual environment:
python3 -m venv venv
- Activate virtual environment:
source venv/bin/activate
