Period analyzed: February 9, 2025 – February 8, 2026 (52 weeks, 51 sermons) Primary preacher: Clyde Cooper (pastor) Other preachers: Andrew Cooper (son), Bob Davis, Matthew Cunningham, Rob Chadwick Church: Evangelical Free Church of America, La Center, WA
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
| # This assumes jq is installed already. | |
| # The stripe binary will be installed at /bin/stripe | |
| curl --silent "https://api.github.com/repos/stripe/stripe-cli/releases/latest" \ | |
| | jq -r '.assets[] | select(.name | endswith("linux_x86_64.tar.gz")).browser_download_url' \ | |
| | wget -qi - -O - \ | |
| | sudo tar -xzvf - -C /bin stripe > /dev/null |
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
| #!/bin/bash | |
| # Replace with your D1 IP (see it in serial monitor when the devboard starts up) | |
| url=http://192.168.179.146/LED | |
| while : | |
| do | |
| if xwininfo -tree -root | grep "Zoom Meeting" &> /dev/null | |
| then | |
| curl -d color=red $url |
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
| require "bundler/inline" | |
| gemfile(true) do | |
| source "https://rubygems.org" | |
| git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |
| gem "rails", "5.2.2" | |
| gem "sqlite3", '~> 1.3.13' | |
| gem "factory_bot", "4.11.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
| "/home/deploy/.rbenv/versions/2.4.3/lib/ruby/2.4.0/net/protocol.rb:186:in `rbuf_fill'", | |
| "/home/deploy/.rbenv/versions/2.4.3/lib/ruby/2.4.0/net/protocol.rb:154:in `readuntil'", | |
| "/home/deploy/.rbenv/versions/2.4.3/lib/ruby/2.4.0/net/protocol.rb:164:in `readline'", | |
| "/home/deploy/.rbenv/versions/2.4.3/lib/ruby/2.4.0/net/http/response.rb:40:in `read_status_line'", | |
| "/home/deploy/.rbenv/versions/2.4.3/lib/ruby/2.4.0/net/http/response.rb:29:in `read_new'", | |
| "/home/deploy/.rbenv/versions/2.4.3/lib/ruby/2.4.0/net/http.rb:1446:in `block in transport_request'", | |
| "/home/deploy/.rbenv/versions/2.4.3/lib/ruby/2.4.0/net/http.rb:1443:in `catch'", | |
| "/home/deploy/.rbenv/versions/2.4.3/lib/ruby/2.4.0/net/http.rb:1443:in `transport_request'", | |
| "/home/deploy/.rbenv/versions/2.4.3/lib/ruby/2.4.0/net/http.rb:1416:in `request'", | |
| "/gems/gems/webmock-2.3.1/lib/webmock/http_lib_adapters/net_http.rb:97:in `block in request'", |
- Assigning an object to a
belongs_toassociation does not automatically save the object. It does not save the associated object either.
- When you assign an object to a
has_oneassociation, that object is automatically saved (in order to update its foreign key). - In addition, any object being replaced is also automatically saved, because its foreign key will change too
- If either of these saves fails due to validation errors, then the assignment statement returns false and the assignment itself is cancelled.
- If the parent object (the one declaring the
has_oneassociation) is unsaved (that is,new_record?returns true) then the child objects are not saved. They will automatically when the parent object is saved.
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
| var logLocationInforation = []; | |
| var logs = []; | |
| function download(filename, text) { | |
| var pom = document.createElement('a'); | |
| pom.setAttribute('href', URL.createObjectURL(new Blob([text], {type: "application/octet-stream"}))); | |
| pom.setAttribute('download', filename); | |
| if (document.createEvent) { | |
| var event = document.createEvent('MouseEvents'); |
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
| START RequestId: 62375f65-6814-11e7-9b71-5d7513cb8861 Version: $LATEST | |
| 2017-07-13 14:44:01.472 (-07:00) 62375f65-6814-11e7-9b71-5d7513cb8861 @serverless-chrome/lambda Spawning headless shell | |
| 2017-07-13 14:44:01.496 (-07:00) 62375f65-6814-11e7-9b71-5d7513cb8861 @serverless-chrome/lambda ChromeLauncher No debugging port found on port 9222, launching a new Chro | |
| me. | |
| 2017-07-13 14:44:01.496 (-07:00) 62375f65-6814-11e7-9b71-5d7513cb8861 @serverless-chrome/lambda Chrome already running with pid 13. | |
| 2017-07-13 14:44:01.496 (-07:00) 62375f65-6814-11e7-9b71-5d7513cb8861 @serverless-chrome/lambda Waiting for Chrome 0 | |
| 2017-07-13 14:44:02.013 (-07:00) 62375f65-6814-11e7-9b71-5d7513cb8861 @serverless-chrome/lambda Waiting for Chrome 1 | |
| 2017-07-13 14:44:02.514 (-07:00) 62375f65-6814-11e7-9b71-5d7513cb8861 @serverless-chrome/lambda Waiting for Chrome 2 | |
| 2017-07-13 14:44:03.015 (-07:00) 62375f65-6814-11e7-9b71-5d7513cb8861 @serverless-chrome/lambda Waiting fo |
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
| --- | |
| engines: | |
| rubocop: | |
| enabled: true | |
| ratings: | |
| paths: | |
| - lib/** | |
| - "**.rb" | |
| exclude_paths: | |
| - spec/**/* |
I hereby claim:
- I am benjaminwood on github.
- I am benjaminwood (https://keybase.io/benjaminwood) on keybase.
- I have a public key whose fingerprint is F5F8 A6C7 5F99 E195 189F 60B8 0205 FF8F 4B67 5D5B
To claim this, I am signing this object:
NewerOlder