Skip to content

Instantly share code, notes, and snippets.

@Liteo
Liteo / claude-code-prompts.js
Created July 22, 2025 11:03 — 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
@Liteo
Liteo / interview_test.rb
Created May 17, 2017 13:07 — forked from GabKlein/interview_test.rb
Stopped at 2-b (and 2-a untested)
# Let's use the more robust and faster built-in library to handle CSV
require 'csv'
class Employee
attr_accessor :print_file, :distinct_offices, :employee_per_office
def self.print_file(filename)
self.load_file(filename).each do |row|
parse_row(row).each do |key, value|