Skip to content

Instantly share code, notes, and snippets.

View Sumedh-k's full-sized avatar

Sumedh Kadoo Sumedh-k

View GitHub Profile
@Sumedh-k
Sumedh-k / claude-code-prompts.js
Created July 13, 2025 06:14 — forked from transitive-bullshit/claude-code-prompts.js
Unminified prompts and tool definitions for Claude Code
// Claude Code is a Beta product per Anthropic's Commercial Terms of Service.
// By using Claude Code, you agree that all code acceptance or rejection decisions you make,
// and the associated conversations in context, constitute Feedback under Anthropic's Commercial Terms,
// and may be used to improve Anthropic's products, including training models.
// You are responsible for reviewing any code suggestions before use.
// (c) Anthropic PBC. All rights reserved. Use is subject to Anthropic's Commercial Terms of Service (https://www.anthropic.com/legal/commercial-terms).
// Version: 0.2.9
@Sumedh-k
Sumedh-k / detox-run-android.yml
Created June 14, 2022 11:31 — forked from Grohden/detox-run-android.yml
Azure devops detox run tests for ios and android
trigger:
- none
pool:
vmImage: 'ubuntu-latest'
variables:
YARN_CACHE_FOLDER: $(Pipeline.Workspace)/.yarn
GRADLE_USER_HOME: $(Pipeline.Workspace)/.gradle
@Sumedh-k
Sumedh-k / protractorAPICheatsheet.md
Created January 23, 2018 11:44 — forked from javierarques/protractorAPICheatsheet.md
Protractor API Cheatsheet
import praw # simple interface to the reddit API, also handles rate limiting of requests
import re
from collections import deque
from time import sleep
USERNAME = "Your username here"
PASSWORD = "Your password here"
USERAGENT = "Your useragent string here. It should include your /u/username as a courtesy to reddit"
r = praw.Reddit(USERAGENT)