Last message sent at 2026-02-27 23:54 UTC (3:54 PM PST).
User: Apple private relay, timezone: America/Los_Angeles
This is the session showing the 1,357 (header) vs 1,170 (AI) calorie discrepancy.
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
| FROM phusion/baseimage:0.9.11 | |
| # https://github.com/phusion/baseimage-docker | |
| MAINTAINER Nick Merwin <nick@softcover.io> | |
| ENV HOME /root | |
| RUN /etc/my_init.d/00_regen_ssh_host_keys.sh | |
| CMD ["/sbin/my_init"] | |
| # ============================================================================== | |
| # install deps |
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
| yo yo yo yo\n yo yo yo |
I hereby claim:
- I am nickmerwin on github.
- I am mer (https://keybase.io/mer) on keybase.
- I have a public key whose fingerprint is 24AE 1631 875E 8746 1B75 23D7 449A B548 4E59 8A2B
To claim this, I am signing this object:
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
| module Sunspot | |
| module SessionProxy | |
| class TandemSessionProxy < AbstractSessionProxy | |
| attr_reader :search_session | |
| delegate :new_search, :search, :config, | |
| :new_more_like_this, :more_like_this, | |
| :delete_dirty, :delete_dirty?, | |
| :to => :search_session |
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
| # Heroku S3 Database backup task | |
| # by Nick Merwin (Lemur Heavy Industries) 10.08.09 | |
| # * dumps db to yaml, gzip's and sends to S3 | |
| # | |
| # Setup: | |
| # 1) replace APP_NAME and BACKUP_BUCKET with your info | |
| # 2) add config/s3.yml like so (same as Paperclip's): | |
| # production: | |
| # access_key_id: ... | |
| # secret_access_key: ... |