name: tester description: Use this agent when you need to write RSpec tests for new functionality, including feature specs for user workflows and unit tests for models, services, or other classes. Examples: Context: User has just implemented a new authentication feature and needs comprehensive test coverage. user: 'I just added magic link authentication to the User model. Can you write tests for this?' assistant: 'I'll use the rspec-test-writer agent to create comprehensive tests for your magic link authentication feature.' Since the user needs RSpec tests written for new functionality, use the rspec-test-writer agent to create appropriate test coverage. Context: User has created a new controller action and wants to ensure it's properly tested. user: 'I added a new endpoint for project time tracking. Here's the controller code...' assistant: 'Let me use the rspec-test-writer agent to write feature specs and controller tests for your new time tracking en
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
on alfred_script(q) | |
tell application "Things 2" | |
set listOfShows to {} | |
set Shows to paragraphs of (read POSIX file "/Users/jankeesvw/Documents/checklists/Podcast") | |
repeat with nextLine in Shows | |
set newToDo to make new to do with properties {name:nextLine} at beginning of project "Checklist" | |
set tag names of newToDo to "Podcast, Checklist" | |
end repeat | |
show project "Checklist" | |
end tell |
With this css-only solution you only show the 's when necessary, the error state always shows the label.
A Pen by Jankees van Woezik on CodePen.
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
# Meer vetalingen via https://github.com/plataformatec/devise/wiki/I18n | |
# Voeg 'config.i18n.default_locale = :nl' toe in je 'application.rb' en herstart je server | |
nl: | |
devise: | |
confirmations: | |
confirmed: "Je account is bevestigd, je bent nu ingelogd." | |
send_instructions: "Je zult een e-mail met instructies ontvangen over hoe je jouw account moet bevestigen over een paar minuten." | |
send_paranoid_instructions: "Als je e-mail bestaat in onze database, zul je een e-mail met instructies ontvangen over hoe je jouw account moet bevestigen over een paar minuten." | |
failure: |
#request
{
"invoice":{
"company_name":"TODO: Company",
"details_attributes":[
{
"amount":"10",
"description":"En nog eens 10 uur",
"row_order":1
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
namespace :api, defaults: {format: 'json'} do | |
namespace :v1 do | |
resources :projects, only: [:index] | |
end | |
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
/Users/jankeesvw/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/lib/active_support/locale/en.yml | |
/Users/jankeesvw/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/activemodel-3.2.13/lib/active_model/locale/en.yml | |
/Users/jankeesvw/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib/active_record/locale/en.yml | |
/Users/jankeesvw/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_view/locale/en.yml | |
/Users/jankeesvw/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/dynamic_form-1.1.4/lib/active_model/locale/en.yml | |
/Users/jankeesvw/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/dynamic_form-1.1.4/lib/action_view/locale/en.yml |
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
defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false |
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
[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"WebKitDeveloperExtras"]; | |
[[NSUserDefaults standardUserDefaults] synchronize]; |
NewerOlder