dfsdfdsfs fsfsf
When using git worktrees for parallel development, gitignored files that are essential for development (like .claude/, .env, database configs, etc.) are not present in the new worktree. This breaks development workflows that depend on these files.
A git alias that wraps git worktree add to automatically copy essential gitignored files to new worktrees.
- Tests should be reliable - They should pass when code works and fail when it doesn't
- Tests should be easy to write - Simple syntax and clear patterns
- Tests should be easy to understand - Readable by you and your team, now and in the future
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class BaseClient | |
| class APINotFound < StandardError; end | |
| attr_reader :auth_strategy | |
| def initialize(auth_strategy: :headers, headers: {}) | |
| @auth_strategy = auth_strategy | |
| @headers = headers | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| The vibe of "Opus" by Eric Prydz can be described as epic, euphoric, and captivating. The track is a progressive house masterpiece that takes listeners on a mesmerizing journey through its soaring melodies, intricate layers, and pulsating beats. | |
| The track begins with a gentle and atmospheric introduction, gradually building up with ethereal synths and subtle percussion. As the song progresses, it evolves into a dynamic and energetic composition, featuring sweeping melodies, driving basslines, and pulsating rhythms. | |
| "Opus" has a sense of grandeur and expansiveness, creating a feeling of being transported to another world. The uplifting and euphoric elements of the track evoke a sense of joy and excitement, making it a favorite among electronic music fans and a staple in Prydz's live performances. | |
| The repetitive nature of the track, combined with its evolving and intricate arrangements, creates a hypnotic and immersive experience. The layers of sound blend seamlessly, creating a rich and textured sonic lands |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Testing Gist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class PostsController | |
| def create | |
| @post = Post.new | |
| @post.title = params[:title] | |
| @post.save | |
| redirect "/posts/#{@post.id}" # The show action below. | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class PostsController | |
| def create | |
| @post = Post.new | |
| @post.title = params[:title] | |
| @post.save | |
| redirect "/posts/#{@post.id}" # The show action below. | |
| end |
NewerOlder