Skip to content

Instantly share code, notes, and snippets.

@agupta666
agupta666 / tee_page.go
Last active April 30, 2018 10:04
io.TeeReader usage
package main
import (
"net/http"
"log"
"io"
"bufio"
"os"
)
@agupta666
agupta666 / alerts_and_confirms.rb
Last active August 29, 2015 14:27 — forked from michaelglass/alerts_and_confirms.rb
test alerts & confirms in poltergeist & capybara webkit
module AlertConfirmer
class << self
def reject_confirm_from &block
handle_js_modal 'confirm', false, &block
end
def accept_confirm_from &block
handle_js_modal 'confirm', true, &block
end