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
name: Build and Test | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- 'workouts/**.csv' | |
- '.github/**' | |
jobs: |
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
require 'csv' | |
require 'octokit' | |
require 'optparse' | |
class DirectImporter | |
DISPLAYED_ACTIVITIES = { | |
Running: '🏃♂️', | |
Walking: '🚶♂️', | |
Hiking: '🥾', | |
Cycling: '🚴♂️', |
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
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
Currently reading: | |
Poor Charlie’s Almanack, The Essential Wit and | |
Wisdom of Charles T. Munger by Charles T. Munger | |
Recently read: | |
Dopamine Nation by Anna Lembke | |
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
🏂 80km █████████░░░░░░░░░░░ | |
🚶♂️ 72km ████████░░░░░░░░░░░░ | |
🏃♂️ 20km ██░░░░░░░░░░░░░░░░░░ | |
🥾 6km ▍░░░░░░░░░░░░░░░░░░░ | |
🚴♂️ 0km ░░░░░░░░░░░░░░░░░░░░ | |
176km total |
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
🏃♂️ 297.85 km ███████████████████ | |
🏊♂️ 0.00 km ░░░░░░░░░░░░░░░░░░░ | |
🚴♂️ 0.00 km ░░░░░░░░░░░░░░░░░░░ | |
🗓 0.00 km |

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
👩🏻🔧 Kaylee: So, um, how come you | |
don’t care where you’re going? | |
👩🏾🌾 Book: ‘Cause how you get there | |
is the worthier part. |
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
### Keybase proof | |
I hereby claim: | |
* I am ashtom on github. | |
* I am ashtom (https://keybase.io/ashtom) on keybase. | |
* I have a public key whose fingerprint is E34B 112A 5FA7 D46A 7455 9E11 6E71 8750 737E 08F6 | |
To claim this, I am signing this object: |
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
class ActiveResource::Connection | |
def http | |
# Setup http object | |
http = Net::HTTP.new(@site.host, @site.port) | |
http.use_ssl = @site.is_a?(URI::HTTPS) | |
http.verify_mode = OpenSSL::SSL::VERIFY_NONE if http.use_ssl | |
http.read_timeout = @timeout if @timeout | |
# Log to stderr | |
http.set_debug_output $stderr |
NewerOlder