This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Animated Canvas Diagonal Stripes</title> | |
<style> | |
body { | |
margin: 0; | |
overflow: hidden; | |
} |
This file contains 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
<HTML> | |
<head> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css"/> | |
<script> | |
$(function(){ | |
var TABLE = $("table"); |
This file contains 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
jw@arkenstone:/projects/client/castle$ bundle exec rake db:migrate | |
/home/jw/.gem/ruby/2.3.8/gems/puma-2.3.2/lib/puma/puma_http11.so: [BUG] Segmentation fault at 0x0000000000000000 | |
ruby 2.3.8p459 (2018-10-18 revision 65136) [x86_64-linux] | |
-- Control frame information ----------------------------------------------- | |
c:0043 p:-11844969364246 s:0171 e:000170 TOP [FINISH] | |
c:0042 p:---- s:0169 e:000168 CFUNC :require | |
c:0041 p:0125 s:0165 e:000164 TOP /home/jw/.gem/ruby/2.3.8/gems/puma-2.3.2/lib/puma/server.rb:16 [FINISH] | |
c:0040 p:---- s:0163 e:000162 CFUNC :require | |
c:0039 p:0089 s:0159 e:000158 TOP /home/jw/.gem/ruby/2.3.8/gems/puma-2.3.2/lib/puma.rb:14 [FINISH] |
This file contains 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
production@biotic:~$ /bin/bash -i -l -c 'cd /home/production/aperture/releases/20200207215149 && chruby' | |
running ~/.default_ruby | |
rbx-2.5.7 | |
rbx-2.5.8 | |
rubinius-2.5.8 | |
ruby-2.1.6 | |
ruby-2.2.2 | |
ruby-2.3.8 | |
* ruby-2.5.6 |
This file contains 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
application: | |
auto_call_queue_size: 18 | |
customer_service_number: '(202) 456-1111' | |
customer_service_email: "[email protected]" | |
deliver_emails: yes | |
enable_employment_application: yes | |
enable_survey_request_emails: yes | |
enable_zone_maps: yes | |
sandbox_environment: no | |
yearweek_strategy: 1 |
This file contains 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
# Note, test works fine without 'js: true' -- so headless mode. | |
describe 'substance abuse professional signup', type: :feature, js: :true do | |
fixtures(:pages) | |
it "walks an anonymous user through signup" do | |
visit '/' | |
expect(page).to have_content 'Fillory' | |
end | |
end |
This file contains 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
Failures: | |
1) SAP signup walks an anonymous user through signup | |
Got 0 failures and 2 other errors: | |
1.1) Failure/Error: visit '/' | |
Net::ReadTimeout: | |
Net::ReadTimeout | |
# /home/jw/.gem/ruby/2.1.6/gems/selenium-webdriver-3.141.0/lib/selenium/webdriver/remote/http/default.rb:121:in `response_for' |
This file contains 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
# PostgreSQL Client Authentication Configuration File | |
# =================================================== | |
# | |
# Refer to the "Client Authentication" section in the PostgreSQL | |
# documentation for a complete description of this file. A short | |
# synopsis follows. | |
# | |
# This file controls: which hosts are allowed to connect, how clients | |
# are authenticated, which PostgreSQL user names they can use, which | |
# databases they can access. Records take one of these forms: |
This file contains 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
jw@logopolis:/projects/open/quadlods/build$ cmake .. | |
-- The C compiler identification is GNU 7.3.0 | |
-- The CXX compiler identification is GNU 7.3.0 | |
-- Check for working C compiler: /usr/bin/cc | |
-- Check for working C compiler: /usr/bin/cc -- works | |
-- Detecting C compiler ABI info | |
-- Detecting C compiler ABI info - done | |
-- Detecting C compile features | |
-- Detecting C compile features - done | |
-- Check for working CXX compiler: /usr/bin/c++ |
This file contains 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
#!/usr/bin/env ruby | |
def last_line | |
`wc -l db/schema.rb`.to_i | |
end | |
table_lines = `grep create_table db/schema.rb -n`.split("\n").map{|l| l.gsub(/\:.*/, '').to_i} | |
term = ARGV[0] | |
table_starts = `grep "create_table.*#{term}" db/schema.rb -n`.split("\n") |
NewerOlder