- A Quick Start Guide To Learning Performance Testing from Ministry of Testing
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 Booking < ActiveRecord::Model | |
after_create :set_booking_number | |
private | |
def set_booking_number | |
return if booking_number | |
update_column(:booking_number, SecureRandom.hex[0..5].upcase) | |
rescue ActiveRecord::RecordNotUnique |
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
[ | |
{ | |
"id": 14390728, | |
"title": "Apple Monitoring Blood Glucose", | |
"points": 88, | |
"user": "zdw", | |
"time": 1495422454, | |
"time_ago": "5 hours ago", | |
"comments_count": 45, | |
"type": "link", |
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
name: "Ivan" | |
}); |
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
Verifying my Blockstack ID is secured with the address 1AJmdGXeHwfRT4REir9tq69Xz7YpmpLTsw https://explorer.blockstack.org/address/1AJmdGXeHwfRT4REir9tq69Xz7YpmpLTsw |
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
import {step} from '@flood/element' | |
export default () => { | |
step("Step 1", async browser => { | |
await browser.visit("youtube.com") | |
}) | |
} |
I hereby claim:
- I am ivanvanderbyl on github.
- I am ivanv (https://keybase.io/ivanv) on keybase.
- I have a public key ASDf1Vtq-6SuyfK0r2sI1Y5fP1PRMOWNjY3b98baCAXEfgo
To claim this, I am signing this object:
Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.
Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.
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
const puppeteer = require('puppeteer'); | |
const { expect } = require('chai'); | |
describe('Duck Duck Go search using basic Puppeteer', () => { | |
let browser; | |
let page; | |
beforeEach(async () => { | |
browser = await puppeteer.launch(); |
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
o.a.j.p.h.s.HTTPHC4Impl$6: I/O exception (org.apache.http.NoHttpResponseException) caught when processing request to {s}->https://flooded.io:443: The target server failed to respond | |
o.a.j.p.h.s.HTTPHC4Impl$6: I/O exception (java.net.SocketException) caught when connecting to {s}->https://flooded.io:443: Broken pipe (Write failed) |