<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Disqus - Latest Comments for rwdaigle</title><link>http://disqus.com/by/rwdaigle/</link><description></description><atom:link href="http://disqus.com/rwdaigle/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Mon, 15 Jun 2015 13:16:10 -0000</lastBuildDate><item><title>Re: Exposing a Javascript API in a Web Page with Browserify</title><link>http://ryandaigle.com/a/expose-javascript-api-with-browserify.html#comment-2080300945</link><description>&lt;p&gt;onesixtieth I think your best bet is to do your own sub-namespacing so there's a single top-level entity that contains MyBookStore and MyLibrary?&lt;/p&gt;&lt;p&gt;var lib = new MyLibrary();&lt;/p&gt;&lt;p&gt;// Now use lib.BookStore and lib.Library ?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Mon, 15 Jun 2015 13:16:10 -0000</pubDate></item><item><title>Re: Configuring CloudFlare DNS for a Heroku App - Higher Order Heroku</title><link>http://www.higherorderheroku.com/articles/cloudflare-dns-heroku/#comment-2071632670</link><description>&lt;p&gt;Hi @eggie5, I believe you mean the first picture? If so, that's just showing you how your records look like after you add your domain to Cloudflare - it's their default config. You're correct, though, in that after you go through the steps mentioned here, you won't have an A record.&lt;/p&gt;&lt;p&gt;Sorry if that initial pic was a little misleading!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Wed, 10 Jun 2015 08:03:14 -0000</pubDate></item><item><title>Re: Time-Series Database Design with InfluxDB</title><link>http://ryandaigle.com/a/time-series-db-design-with-influx#comment-2034408799</link><description>&lt;p&gt;Hi Fred,&lt;/p&gt;&lt;p&gt;It's been awhile since I've thought about this (since Influx is just humming away so far), but I think I can help.&lt;/p&gt;&lt;p&gt;First, regarding time-scoping queries, I think the original issue I had was caused by a bug that has since been fixed. However, being aware of the size of the dataset being queried is never a bad thing. I'd recommend the following:&lt;/p&gt;&lt;p&gt;* Keeping a per-customer series containing all their transaction values, e.g., `customer-123.transaction_values`, `customer-abc.transaction_values` etc...&lt;br&gt;* Create a continuous query that automatically populates a per-customer lifetime value series:&lt;br&gt;`select sum(value) as value from /^customer-*.*/ into :series_name.lifetime`. This will create series called `customer-123.transaction_values.lifetime` etc... containing pre-summed values.&lt;/p&gt;&lt;p&gt;That's one way to think about it. I can easily think of a few others too. Let me know what you come up with!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Tue, 19 May 2015 16:08:05 -0000</pubDate></item><item><title>Re: Configuring CloudFlare DNS for a Heroku App - Higher Order Heroku</title><link>http://www.higherorderheroku.com/articles/cloudflare-dns-heroku/#comment-1737254624</link><description>&lt;p&gt;Hi @arronjeffery,&lt;/p&gt;&lt;p&gt;If you mean: Is there a way to create a single wildcard CNAME DNS record that points to multiple Heroku apps, I believe the answer is "no". However, I suspect there might be some room for an alternative solution. Can you explain what you're trying to do and, specifically, how you're hoping to map a request URL to a specific Heroku app?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Thu, 11 Dec 2014 13:40:32 -0000</pubDate></item><item><title>Re: Time-Series Database Design with InfluxDB</title><link>http://www.ryandaigle.com/a/time-series-db-design-with-influx#comment-1723651207</link><description>&lt;p&gt;Hi Yngui,&lt;/p&gt;&lt;p&gt;In this example the continuous query is not extracting "the abc123 part of the series names to become part of the datapoints". That is your responsibility when you populate the series. What's happening is almost the inverse of that.&lt;/p&gt;&lt;p&gt;What I'm suggesting is to create a series with data that includes an "account" field (or some other field you want to query on). This series you can operate against to do summary calculations (across all accounts). Then, use continuous queries to create series specific to each account.&lt;/p&gt;&lt;p&gt;When you define a continuous query you can "pull up" a field value to be part of the new series name, so you can essentially create a series named for each account (account-abc123.gateway.sample) without having to do any creation or population yourself. So start with a series that has many filterable fields, and use continuous queries to automatically generate single-purpose series from each field.&lt;/p&gt;&lt;p&gt;I hope that helps. The Influx docs have a section on continuous queries in case their description is more intuitive for you than mine: &lt;a href="http://influxdb.com/docs/v0.8/api/continuous_queries.html" rel="nofollow noopener" target="_blank" title="http://influxdb.com/docs/v0.8/api/continuous_queries.html"&gt;http://influxdb.com/docs/v0...&lt;/a&gt;.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Wed, 03 Dec 2014 09:58:22 -0000</pubDate></item><item><title>Re: Time-Series Database Design with InfluxDB</title><link>http://www.ryandaigle.com/a/time-series-db-design-with-influx#comment-1663087318</link><description>&lt;p&gt;Usually a time-series db will store the events that occur in your system. It is not intended as a general data store. So, yes, usually there's a canonical "this is our data right now" conventional database that houses what you call static data alongside your Influx db which stores more temporal data.&lt;/p&gt;&lt;p&gt;Hope that helps!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Fri, 31 Oct 2014 10:25:22 -0000</pubDate></item><item><title>Re: Configuring CloudFlare DNS for a Heroku App - Higher Order Heroku</title><link>http://www.higherorderheroku.com/articles/cloudflare-dns-heroku/#comment-1623475051</link><description>&lt;p&gt;Yes, you will now need to discard the existing A record when you add the root domain CNAME.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Tue, 07 Oct 2014 10:00:39 -0000</pubDate></item><item><title>Re: Configuring CloudFlare DNS for a Heroku App - Higher Order Heroku</title><link>http://www.higherorderheroku.com/articles/cloudflare-dns-heroku/#comment-1623472789</link><description>&lt;p&gt;Yes it is. Just add a CNAME record mapped as &lt;a href="http://rootdomain.com" rel="nofollow noopener" target="_blank" title="rootdomain.com"&gt;rootdomain.com&lt;/a&gt; -&amp;gt; &lt;a href="http://yourapp.herokuapp.com" rel="nofollow noopener" target="_blank" title="yourapp.herokuapp.com"&gt;yourapp.herokuapp.com&lt;/a&gt;. I just recently updated the article to reflect this.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Tue, 07 Oct 2014 09:58:58 -0000</pubDate></item><item><title>Re: Configuring CloudFlare DNS for a Heroku App - Higher Order Heroku</title><link>http://www.higherorderheroku.com/articles/cloudflare-dns-heroku/#comment-1623469677</link><description>&lt;p&gt;@rassom We just updated the article yesterday. Let me know if it helps!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Tue, 07 Oct 2014 09:57:24 -0000</pubDate></item><item><title>Re: Time-Series Database Design with InfluxDB</title><link>http://www.ryandaigle.com/a/time-series-db-design-with-influx#comment-1542607394</link><description>&lt;p&gt;I'm not sure what you mean here by "table names"?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Thu, 14 Aug 2014 11:33:55 -0000</pubDate></item><item><title>Re: Time-Series Database Design with InfluxDB</title><link>http://www.ryandaigle.com/a/time-series-db-design-with-influx#comment-1542606019</link><description>&lt;p&gt;That's right, Kimo. It's a great way to automate the segmentation of your data into special-purpose series while still retaining the usefulness of the general series for higher level queries.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Thu, 14 Aug 2014 11:32:56 -0000</pubDate></item><item><title>Re: A frontend UI for the Spreedly Core API</title><link>http://www.dangrossman.info/2013/08/02/a-frontend-ui-for-the-spreedly-core-api/#comment-1503247382</link><description>&lt;p&gt;This is great work, Dan.&lt;/p&gt;&lt;p&gt;Just a note that an "official" &lt;a href="https://dashboard.spreedly.com" rel="nofollow noopener" target="_blank" title="https://dashboard.spreedly.com"&gt;Spreedly Dashboard&lt;/a&gt; is in development and available for beta testers.&lt;/p&gt;&lt;p&gt;However, we're happy to see an ecosystem of tools around the Spreedly API and welcome alternatives!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Fri, 25 Jul 2014 10:35:44 -0000</pubDate></item><item><title>Re: Configuring CloudFlare DNS for a Heroku App - Higher Order Heroku</title><link>http://www.higherorderheroku.com/articles/cloudflare-dns-heroku/#comment-1387204037</link><description>&lt;p&gt;Yes! This was confirmed by Cloudflare - I just need to update the article...&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Thu, 15 May 2014 10:20:57 -0000</pubDate></item><item><title>Re: The New Gist: What It Is and What It Could Be</title><link>http://www.ryandaigle.com/a/the-new-github-gists#comment-1306187670</link><description>&lt;p&gt;Hey Dennis,&lt;/p&gt;&lt;p&gt;Haven't sent it to them directly, but know they were aware of it when I posted it.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Thu, 27 Mar 2014 11:38:22 -0000</pubDate></item><item><title>Re: Using `pg:transfer` to Migrate Postgres Databases - Higher Order Heroku</title><link>http://www.higherorderheroku.com/articles/pgtransfer-is-the-new-taps/#comment-1051935848</link><description>&lt;p&gt;pg:transfer currently operates on whole databases only. To operate at a more granular level you're free to drop down to the raw Postgres tools like pg_dump (&lt;a href="http://www.postgresql.org/docs/9.2/static/app-pgdump.html)" rel="nofollow noopener" target="_blank" title="http://www.postgresql.org/docs/9.2/static/app-pgdump.html)"&gt;http://www.postgresql.org/d...&lt;/a&gt; and pg_restore (&lt;a href="http://www.postgresql.org/docs/9.2/static/app-pgrestore.html)" rel="nofollow noopener" target="_blank" title="http://www.postgresql.org/docs/9.2/static/app-pgrestore.html)"&gt;http://www.postgresql.org/d...&lt;/a&gt;.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Thu, 19 Sep 2013 15:08:51 -0000</pubDate></item><item><title>Re: Introducing Heroku Fork</title><link>https://blog.heroku.com/archives/2013/6/27/heroku-fork#comment-955416775</link><description>&lt;p&gt;Thanks for the feedback, @Aldric Giacomoni. Tracking here: &lt;a href="https://github.com/heroku/heroku/issues/765" rel="nofollow noopener" target="_blank" title="https://github.com/heroku/heroku/issues/765"&gt;https://github.com/heroku/h...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Mon, 08 Jul 2013 12:56:42 -0000</pubDate></item><item><title>Re: Introducing Heroku Fork</title><link>https://blog.heroku.com/archives/2013/6/27/heroku-fork#comment-954050802</link><description>&lt;p&gt;Hi @srohde, app forking does not make any modifications to the source tree. The best way is to manage this process yourself by creating a new branch in Git and pushing this branch to the new app fork.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Sat, 06 Jul 2013 20:46:20 -0000</pubDate></item><item><title>Re: Introducing Heroku Fork</title><link>https://blog.heroku.com/archives/2013/6/27/heroku-fork#comment-949891608</link><description>&lt;p&gt;Hi @Stephen Corwin, I suspect you're not running the Heroku Toolbelt (&lt;a href="https://toolbelt.heroku.com/)" rel="nofollow noopener" target="_blank" title="https://toolbelt.heroku.com/)"&gt;https://toolbelt.heroku.com/)&lt;/a&gt; and, thus, don't have the latest CLI version. Try the instructions here to get the latest and greatest: &lt;a href="https://devcenter.heroku.com/articles/heroku-command#installing-the-heroku-cli" rel="nofollow noopener" target="_blank" title="https://devcenter.heroku.com/articles/heroku-command#installing-the-heroku-cli"&gt;https://devcenter.heroku.co...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Tue, 02 Jul 2013 20:05:59 -0000</pubDate></item><item><title>Re: Configuring CloudFlare DNS for a Heroku App - Higher Order Heroku</title><link>http://www.higherorderheroku.com/articles/cloudflare-dns-heroku/#comment-945334892</link><description>&lt;p&gt;Hey @Chris, I'm not aware of any such integration plans so can't comment.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Fri, 28 Jun 2013 10:28:47 -0000</pubDate></item><item><title>Re: Introducing Heroku Fork</title><link>https://blog.heroku.com/archives/2013/6/27/heroku-fork#comment-945295013</link><description>&lt;p&gt;Hi @acjohnson55,&lt;/p&gt;&lt;p&gt;I'm not quite sure what you mean by "external service settings"? If you mean your add-on resource URLs and config vars - all add-on plans are re-provisioned which automatically creates new versions of these and avoids collisions with production values.&lt;/p&gt;&lt;p&gt;The only caveat is if you've manually added a pointer to an external resources using `$ heroku config:set`. In this case the value will be copied over verbatim since it's not associated with an add-on.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Fri, 28 Jun 2013 09:41:11 -0000</pubDate></item><item><title>Re: Introducing Heroku Fork</title><link>https://blog.heroku.com/archives/2013/6/27/heroku-fork#comment-944465902</link><description>&lt;p&gt;Hi JangoSteve,&lt;/p&gt;&lt;p&gt;This is a known, but unjustified, omission: &lt;a href="https://github.com/heroku/heroku/issues/795" rel="nofollow noopener" target="_blank" title="https://github.com/heroku/heroku/issues/795"&gt;https://github.com/heroku/h...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;If you're interested in contributing, please feel free to submit a pull request to the CLI. Otherwise, we'll look at making incremental improvements as we gather more use-cases for the utility.&lt;/p&gt;&lt;p&gt;Thank you for this feedback!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Thu, 27 Jun 2013 15:18:49 -0000</pubDate></item><item><title>Re: Configuring CloudFlare DNS for a Heroku App - Higher Order Heroku</title><link>http://www.higherorderheroku.com/articles/cloudflare-dns-heroku/#comment-919931453</link><description>&lt;p&gt;Hey Aaron. See the other comments in @Desinle 's thread. It's just a requirement of CloudFlare's setup. In reality, it doesn't get used to resolve any requests, but must be in the configuration.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Wed, 05 Jun 2013 12:31:03 -0000</pubDate></item><item><title>Re: The New Gist: What It Is and What It Could Be</title><link>http://www.ryandaigle.com/a/the-new-github-gists#comment-875381619</link><description>&lt;p&gt;Sure. Let me know if it's missing anything for you.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Thu, 25 Apr 2013 09:40:40 -0000</pubDate></item><item><title>Re: Configuring CloudFlare DNS for a Heroku App - Higher Order Heroku</title><link>http://www.higherorderheroku.com/articles/cloudflare-dns-heroku/#comment-818477113</link><description>&lt;p&gt;I'm not sure if you mis-typed, but the purpose here is to redirect the root domain to the `www` subdomain, not the other way around. Your domain is doing this correctly:&lt;/p&gt;&lt;p&gt;$ curl -I &lt;a href="http://xgd.in" rel="nofollow noopener" target="_blank" title="xgd.in"&gt;xgd.in&lt;/a&gt;&lt;br&gt;HTTP/1.1 301 Moved Permanently&lt;br&gt;Server: cloudflare-nginx&lt;br&gt;Location: &lt;a href="http://www.xgd.in/" rel="nofollow noopener" target="_blank" title="http://www.xgd.in/"&gt;http://www.xgd.in/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;It looks like everything is working as it should?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Sun, 03 Mar 2013 19:36:47 -0000</pubDate></item><item><title>Re: Configuring CloudFlare DNS for a Heroku App - Higher Order Heroku</title><link>http://www.higherorderheroku.com/articles/cloudflare-dns-heroku/#comment-816751305</link><description>&lt;p&gt;Yes, the A-record is required.&lt;br&gt;It looks like you're setup ok now - did you change anything to get it working?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Daigle</dc:creator><pubDate>Fri, 01 Mar 2013 14:25:44 -0000</pubDate></item></channel></rss>