I hereby claim:
- I am graysonwright on github.
- I am graysonwright (https://keybase.io/graysonwright) on keybase.
- I have a public key ASBudAIYSTApmR3OrJC2d6xQWtHYLEoXl94YY9lBgYL18Ao
To claim this, I am signing this object:
| require "selenium-webdriver" | |
| require "capybara" | |
| Capybara.register_driver :containerized_selenium do |app| | |
| Capybara::Selenium::Driver.new( | |
| app, | |
| browser: :remote, | |
| url: "http://selenium:4444/wd/hub", | |
| desired_capabilities: Selenium::WebDriver::Remote::Capabilities.firefox | |
| ) |
| I'm working on a way to connect data to a user interface | |
| in a way that is flexible, | |
| yet still easy for end-users to work with. | |
| This has been one of the biggest challenges for me. | |
| ## References: | |
| * https://hackernoon.com/how-to-decouple-state-and-ui-a-k-a-you-dont-need-componentwillmount-cc90b787aa37 | |
| * https://webpack.js.org/guides/code-splitting/ |
| Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:41 -0400 | |
| Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:41 -0400 | |
| Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:41 -0400 | |
| Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:41 -0400 | |
| Started POST "/evaluate" for 127.0.0.1 at 2018-06-23 03:01:41 -0400 | |
| Processing by CodeController#evaluate as */* | |
| Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Received'\n and partno in (select distinct partno from specification)\n "} | |
| Processing by CodeController#evaluate as */* | |
| Parameters: {"system"=>"slim", "code"=>"\n select * from samples\n where status = 'Released'\n "} |
| #!/bin/bash | |
| # Make sure we're connected to the Docker host | |
| eval $(SHELL=bash docker-machine env) | |
| if hash doctl 2>/dev/null; then | |
| echo "doctl is installed. Continuing." | |
| echo | |
| else | |
| echo "'doctl' is not installed." |
| SHELL=/bin/bash | |
| PATH=/sbin:/bin:/usr/sbin:/usr/bin | |
| MAILTO=root | |
| # For details see man 4 crontabs | |
| # Example of job definition: | |
| # .---------------- minute (0 - 59) | |
| # | .------------- hour (0 - 23) | |
| # | | .---------- day of month (1 - 31) |
| https://hudson.house.gov/uploads/Concealed%20Carry%20Reciprocity%20Act%20of%202017.pdf | |
| http://docs.house.gov/billsthisweek/20170724/HR_____.pdf | |
| https://blackburn.house.gov/uploadedfiles/browser_act.pdf | |
| https://judiciary.house.gov/wp-content/uploads/2017/09/LWA-Bill-Text.pdf | |
| https://edworkforce.house.gov/uploadedfiles/hr_2823.pdf | |
| https://quigley.house.gov/sites/quigley.house.gov/files/COVFEFE%20Act.pdf | |
| http://joewilson.house.gov/sites/joewilson.house.gov/files/WILSSC_006_xml.pdf | |
| https://chriscollins.house.gov/sites/chriscollins.house.gov/files/COLLINS_SAGA_BILL.pdf | |
| https://issa.house.gov/sites/issa.house.gov/files/CLASSICS%20Act.pdf | |
| https://kevinmccarthyforms.house.gov/components/redirect/r.aspx?ID=481161-67727963 |
| Usage: | |
| spotify <command> | |
| Commands: | |
| play # Resumes playback where Spotify last left off. | |
| play <song name> # Finds a song by name and plays it. | |
| play album <album name> # Finds an album by name and plays it. | |
| play artist <artist name> # Finds an artist by name and plays it. |
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "os" | |
| ) | |
| type Person struct { | |
| Name string |
I hereby claim:
To claim this, I am signing this object:
| require 'benchmark' | |
| ATTRIBUTE_TYPES = {}.tap do |hash| | |
| struct = Struct.new(:searchable?) | |
| 50.times do |i| | |
| searchable_val = [true, false].sample | |
| hash[i] = struct.new(searchable_val) | |
| end | |
| end |