<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://downtothewire.io/ghpages-ghcomments/feed.xml" rel="self" type="application/atom+xml" /><link href="https://downtothewire.io/ghpages-ghcomments/" rel="alternate" type="text/html" /><updated>2026-06-02T00:52:40+00:00</updated><id>https://downtothewire.io/ghpages-ghcomments/feed.xml</id><title type="html">GitHub Comments</title><subtitle>Fully integrated comments for your GitHub Pages.</subtitle><author><name>Joe Friedrichsen</name><uri>https://downtothewire.io</uri></author><entry><title type="html">Using ghpages-ghcomments with Private GitHub Repositories</title><link href="https://downtothewire.io/ghpages-ghcomments/2015/10/03/using-ghpages-ghcomments-with-private-github-repositories/" rel="alternate" type="text/html" title="Using ghpages-ghcomments with Private GitHub Repositories" /><published>2015-10-03T00:00:00+00:00</published><updated>2015-10-03T00:00:00+00:00</updated><id>https://downtothewire.io/ghpages-ghcomments/2015/10/03/using-ghpages-ghcomments-with-private-github-repositories</id><content type="html" xml:base="https://downtothewire.io/ghpages-ghcomments/2015/10/03/using-ghpages-ghcomments-with-private-github-repositories/"><![CDATA[<p>If you use a private repository for your site, then only you and the GitHub users authorized by you can contribute to that repository. Since ghpages-ghcomments uses GitHub Issues to store comments, your readers will not be able to comment unless you’ve granted them permission. Authorizing <em>every</em> reader doesn’t scale and circumvents many of the benefits of using a private repository.</p>

<p>Luckily, ghpages-ghcomments doesn’t need to use the <em>same</em> repository as your site to provide comments. By creating a public repository for just comments, you can continue to use your private repository for your site:</p>

<ol>
  <li>Create a public repository</li>
  <li>Update <code class="language-plaintext highlighter-rouge">_data/gpgc.yml</code> to use it:</li>
</ol>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>repo_owner: __YOUR_GITHUB_USERNAME__
repo_name: __YOUR_PUBLIC_REPOSITORY__
</code></pre></div></div>]]></content><author><name>Joe Friedrichsen</name><uri>https://downtothewire.io</uri></author><summary type="html"><![CDATA[If you use a private repository for your site, then only you and the GitHub users authorized by you can contribute to that repository. Since ghpages-ghcomments uses GitHub Issues to store comments, your readers will not be able to comment unless you’ve granted them permission. Authorizing every reader doesn’t scale and circumvents many of the benefits of using a private repository.]]></summary></entry><entry><title type="html">Introducing Comment Control</title><link href="https://downtothewire.io/ghpages-ghcomments/2015/08/16/introducing-comment-control/" rel="alternate" type="text/html" title="Introducing Comment Control" /><published>2015-08-16T00:00:00+00:00</published><updated>2015-08-16T00:00:00+00:00</updated><id>https://downtothewire.io/ghpages-ghcomments/2015/08/16/introducing-comment-control</id><content type="html" xml:base="https://downtothewire.io/ghpages-ghcomments/2015/08/16/introducing-comment-control/"><![CDATA[<p>This new feature gives you more control over comments on your pages if the web ever becomes unruly.</p>

<h2 id="you-can-now">You can now:</h2>

<ol>
  <li>Prevent new comments from being added to a page</li>
  <li>Hide all comments and prevent new comments on a page</li>
  <li>Prevent new comments from being added site-wide</li>
</ol>

<h3 id="1-preventing-new-comments-from-being-added-to-a-page">1. Preventing new comments from being added to a page</h3>

<p>Add <code class="language-plaintext highlighter-rouge">gpgc_disabled: true</code> to your page’s Front Matter:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>---
layout: post
title: Creative Business-to-Business Churn
gpgc_disabled: true
---
</code></pre></div></div>

<p><em>Example:</em> <a href="/ghpages-ghcomments/2015/01/09/creative-business-to-business-churn/">this post</a> has comments disabled.</p>

<p>You might choose to do this if you want to stop a flame war or other harassment on the page but you don’t want to hide the helpful comments that are already there. Later, you can remove the <code class="language-plaintext highlighter-rouge">gpgc_disabled</code> line and readers will be able to comment again.</p>

<h3 id="2-hiding-all-comments-and-preventing-new-comments-on-a-page">2. Hiding all comments and preventing new comments on a page</h3>

<p>Add the label <strong>GPGC Muted</strong> to the post’s issue in your site’s ghpages repository.</p>

<p><em>Example:</em> <a href="/ghpages-ghcomments/2015/01/01/collaboratively-administrate-empowered-markets/">this post</a> has had its comments hidden because <a href="https://github.com/wireddown/ghpages-ghcomments/issues/1">its issue</a> has the <em>GPGC Muted</em> label.</p>

<p>You might choose to do this if private or confidential information has been written in one or more comments. By muting the comment issue, you can immediately hide every comment on the page while you, as the site’s owner, moderate and edit the comments on the issue page. Once you’ve finished tidying the thread, you can remove the label and the updated comments will appear on the page.</p>

<h3 id="3-preventing-new-comments-from-being-added-site-wide">3. Preventing new comments from being added site-wide</h3>

<p>Add this line to your site’s <code class="language-plaintext highlighter-rouge">_data/gpgc.yml</code> file:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>disabled: true
</code></pre></div></div>

<p>Short of removing ghpages-ghcomments altogether, you might choose to do this if your site is experiencing malicious attacks from several commenters or a group of trolls but you don’t want to hide the helpful comments that are already on your pages. Like the other options, this site-wide effect can also be reversed by removing the <code class="language-plaintext highlighter-rouge">disabled</code> line.</p>]]></content><author><name>Joe Friedrichsen</name><uri>https://downtothewire.io</uri></author><summary type="html"><![CDATA[This new feature gives you more control over comments on your pages if the web ever becomes unruly.]]></summary></entry><entry><title type="html">Use the Browser Console to Troubleshoot</title><link href="https://downtothewire.io/ghpages-ghcomments/2015/02/08/use-the-browser-console-to-troubleshoot/" rel="alternate" type="text/html" title="Use the Browser Console to Troubleshoot" /><published>2015-02-08T00:00:00+00:00</published><updated>2015-02-08T00:00:00+00:00</updated><id>https://downtothewire.io/ghpages-ghcomments/2015/02/08/use-the-browser-console-to-troubleshoot</id><content type="html" xml:base="https://downtothewire.io/ghpages-ghcomments/2015/02/08/use-the-browser-console-to-troubleshoot/"><![CDATA[<p>When you’re at a laptop or desktop, you can use Firefox or Chrome to see which requests your pages are making.</p>

<h3 id="firefox">Firefox</h3>

<p>Show the console from the <strong>Tools</strong> menu and selecting <strong>Web Developer » Web Console</strong>. By default, Firefox will only show HTTP and JavaScript warnings and errors. To see all HTTP traffic, enable the <strong>Log</strong> setting from the <strong>Net</strong> menu:</p>

<p><img src="/ghpages-ghcomments/images/DiagnosticsConsoleNetEnableLog.png" alt="Enable &quot;Net&quot; logging" /></p>

<p>From there, use <code class="language-plaintext highlighter-rouge">Ctrl-Shift-R</code> on Windows and Linux, and <code class="language-plaintext highlighter-rouge">Command-Shift-R</code> on Mac to force a full refresh and see your post’s web activity. For example, here is the traffic when browsing to <a href="/ghpages-ghcomments/2015/01/12/not-a-sunrise-but-a-galaxyrise/">Not a Sunrise but a Galaxyrise</a>:</p>

<p><img src="/ghpages-ghcomments/images/DiagnosticsConsoleWithNetLog.png" alt="Web activity for &quot;Not a Sunrise but a Galaxyrise&quot;" /></p>

<p>I chose this page because it demonstrates how <strong>ghpages-ghcomments</strong> follows GitHub’s pagination. Look at the last two GET requests. The first request retrieves the first 30 comments, and the second uses the pagination information in the header to retrieve the next and final group of comments.</p>

<h3 id="chrome">Chrome</h3>

<p>In Chrome, the workflow is very similar although the presentation is different. Show the console from <strong>Menu Button</strong> and selecting <strong>More tools » Developer Tools</strong>. You’ll see your post’s web activity under the <strong>Network</strong> tab. The keyboard shortcut for a full refresh is the same: <code class="language-plaintext highlighter-rouge">Ctrl-Shift-R</code> on Windows and Linux, and <code class="language-plaintext highlighter-rouge">Command-Shift-R</code> on Mac.</p>]]></content><author><name>Joe Friedrichsen</name><uri>https://downtothewire.io</uri></author><summary type="html"><![CDATA[When you’re at a laptop or desktop, you can use Firefox or Chrome to see which requests your pages are making.]]></summary></entry><entry><title type="html">Use Diagnostics to Troubleshoot</title><link href="https://downtothewire.io/ghpages-ghcomments/2015/02/07/use-diagnostics-to-troubleshoot/" rel="alternate" type="text/html" title="Use Diagnostics to Troubleshoot" /><published>2015-02-07T00:00:00+00:00</published><updated>2015-02-07T00:00:00+00:00</updated><id>https://downtothewire.io/ghpages-ghcomments/2015/02/07/use-diagnostics-to-troubleshoot</id><content type="html" xml:base="https://downtothewire.io/ghpages-ghcomments/2015/02/07/use-diagnostics-to-troubleshoot/"><![CDATA[<p>If you’re having trouble adding ghpages-ghcomments to your site, there’s a setting that will help you learn more about what is failing.</p>

<p>In your <code class="language-plaintext highlighter-rouge">_data/gpgc.yml</code> file, update this line:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>enable_diagnostics: true
</code></pre></div></div>

<p>With this setting, both the terminal output from the git hooks (in <code class="language-plaintext highlighter-rouge">commit</code> and <code class="language-plaintext highlighter-rouge">push</code>) and the blog pages will give diagnostic information.</p>

<h2 id="example">Example</h2>

<h3 id="terminal">Terminal</h3>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>$ git add _posts/2015-02-07-use-diagnostics-to-troubleshoot.md

$ git commit -m "Add post describing new setting 'enable_diagnostics'"
(global): enable_diagnostics == true
(global): GitRepoRoot == c:/repos/ghpages-ghcomments
(global): GpgcCacheFile == c:/repos/ghpages-ghcomments/.git/gpgc_cache
(global): GpgcDataFile == c:/repos/ghpages-ghcomments/_data/gpgc.yml
(global): operation == commit
Commit: changedPosts == A       _posts/2015-02-07-use-diagnostics-to-troubleshoot.md
Commit: allChangedPosts == _posts/2015-02-07-use-diagnostics-to-troubleshoot.md
Commit: Adding _posts/2015-02-07-use-diagnostics-to-troubleshoot.md to c:/repos/ghpages-ghcomments/.git/gpgc_cache
[gh-pages 45905f0] Add post describing new setting 'enable_diagnostics'
 1 file changed, 41 insertions(+)
 create mode 100644 _posts/2015-02-07-use-diagnostics-to-troubleshoot.md

$ git push origin gh-pages
(global): enable_diagnostics == true
(global): GitRepoRoot == c:/repos/ghpages-ghcomments
(global): GpgcCacheFile == c:/repos/ghpages-ghcomments/.git/gpgc_cache
(global): GpgcDataFile == c:/repos/ghpages-ghcomments/_data/gpgc.yml
(global): operation == push
Push: siteDataFile == c:/repos/ghpages-ghcomments/_config.yml
GetValueFromYml: ymlFile == c:/repos/ghpages-ghcomments/_data/gpgc.yml
GetValueFromYml: ymlKey == repo_owner
GetValueFromYml: value == wireddown
GetValueFromYml: ymlFile == c:/repos/ghpages-ghcomments/_data/gpgc.yml
GetValueFromYml: ymlKey == repo_name
GetValueFromYml: value == ghpages-ghcomments
GetValueFromYml: ymlFile == c:/repos/ghpages-ghcomments/_data/gpgc.yml
GetValueFromYml: ymlKey == label_name
GetValueFromYml: value == Example GitHub Pages Comments
GetValueFromYml: ymlFile == c:/repos/ghpages-ghcomments/_data/gpgc.yml
GetValueFromYml: ymlKey == label_color
GetValueFromYml: value == 90a959
LabelExists: Querying "https://api.github.com/repos/wireddown/ghpages-ghcomments/labels" for "Example GitHub Pages Comments"
LabelExists: [
  {
    "url": "https://api.github.com/repos/wireddown/ghpages-ghcomments/labels/bug",
    "name": "bug",
    "color": "fc2929"
  },
  {
    "url": "https://api.github.com/repos/wireddown/ghpages-ghcomments/labels/duplicate",
    "name": "duplicate",
    "color": "cccccc"
  },
  {
    "url": "https://api.github.com/repos/wireddown/ghpages-ghcomments/labels/enhancement",
    "name": "enhancement",
    "color": "84b6eb"
  },
  {
    "url": "https://api.github.com/repos/wireddown/ghpages-ghcomments/labels/help%20wanted",
    "name": "help wanted",
    "color": "159818"
  },
  {
    "url": "https://api.github.com/repos/wireddown/ghpages-ghcomments/labels/invalid",
    "name": "invalid",
    "color": "e6e6e6"
  },
  {
    "url": "https://api.github.com/repos/wireddown/ghpages-ghcomments/labels/question",
    "name": "question",
    "color": "cc317c"
  },
  {
    "url": "https://api.github.com/repos/wireddown/ghpages-ghcomments/labels/wontfix",
    "name": "wontfix",
    "color": "ffffff"
  },
  {
    "url": "https://api.github.com/repos/wireddown/ghpages-ghcomments/labels/Example%20GitHub%20Pages%20Comments",
    "name": "Example GitHub Pages Comments",
    "color": "90a959"
  },
  {
    "url": "https://api.github.com/repos/wireddown/ghpages-ghcomments/labels/in%20work",
    "name": "in work",
    "color": "5319e7"
  }
]
Push: allCommittedPosts == _posts/2015-02-07-use-diagnostics-to-troubleshoot.md
GetValueFromYml: ymlFile == _posts/2015-02-07-use-diagnostics-to-troubleshoot.md
GetValueFromYml: ymlKey == title
GetValueFromYml: value == Use Diagnostics to Troubleshoot
GetValueFromYml: ymlFile == c:/repos/ghpages-ghcomments/_config.yml
GetValueFromYml: ymlKey == url
GetValueFromYml: value == https://wireddown.github.io/ghpages-ghcomments
RawUrlEncode: Encoding "Use Diagnostics to Troubleshoot"
RawUrlEncode: Result: "Use%20Diagnostics%20to%20Troubleshoot"
IssueExists: Querying "https://api.github.com/search/issues?q=Use%20Diagnostics%20to%20Troubleshoot+repo:wireddown/ghpages-ghcomments+type:issue+in:title" for "Use Diagnostics to Troubleshoot"
IssueExists: {
  "total_count": 0,
  "incomplete_results": false,
  "items": [

  ]
}
CreateIssue: Posting to "https://api.github.com/repos/wireddown/ghpages-ghcomments/issues" with '{"title":"Use Diagnostics to Troubleshoot","body":"This is the comment thread for [Use Diagnostics to Troubleshoot](https://wireddown.github.io/ghpages-ghcomments/2015/02/07/use-diagnostics-to-troubleshoot).","assignee":"wireddown","labels":["Example GitHub Pages Comments"]}'
Created issue "Use Diagnostics to Troubleshoot" for "wireddown/ghpages-ghcomments"
Push: Resetting c:/repos/ghpages-ghcomments/.git/gpgc_cache
Counting objects: 8, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 860 bytes | 0 bytes/s, done.
Total 4 (delta 2), reused 0 (delta 0)
To https://github.com/wireddown/ghpages-ghcomments.git
   49f71a6..45905f0  gh-pages -&gt; gh-pages
</code></pre></div></div>

<h3 id="html">HTML</h3>

<p>ghpages-ghcomments can detect four problems:</p>

<h4 id="1-gpgc-error-missing-css">1. gpgc Error: Missing CSS</h4>

<blockquote>
  <p><img src="/ghpages-ghcomments/images/DiagnosticMissingCss.png" alt="gpgc Error: Missing CSS" /></p>
</blockquote>

<h4 id="2-gpgc-error-css-404">2. gpgc Error: CSS 404</h4>

<blockquote>
  <p><img src="/ghpages-ghcomments/images/DiagnosticCss404.png" alt="gpgc Error: CSS 404" /></p>
</blockquote>

<h4 id="3-gpgc-error-search-failed">3. gpgc Error: Search Failed</h4>

<p><img src="/ghpages-ghcomments/images/DiagnosticSearchFailed.png" alt="gpgc Error: Search Failed" /></p>

<h4 id="4-gpgc-error-missing-issue">4. gpgc Error: Missing Issue</h4>

<p><img src="/ghpages-ghcomments/images/DiagnosticMissingIssue.png" alt="gpgc Error: Missing Issue" /></p>]]></content><author><name>Joe Friedrichsen</name><uri>https://downtothewire.io</uri></author><summary type="html"><![CDATA[If you’re having trouble adding ghpages-ghcomments to your site, there’s a setting that will help you learn more about what is failing.]]></summary></entry><entry><title type="html">Issue 6 is fixed</title><link href="https://downtothewire.io/ghpages-ghcomments/2015/02/02/issue-6-is-fixed/" rel="alternate" type="text/html" title="Issue 6 is fixed" /><published>2015-02-02T00:00:00+00:00</published><updated>2015-02-02T00:00:00+00:00</updated><id>https://downtothewire.io/ghpages-ghcomments/2015/02/02/issue-6-is-fixed</id><content type="html" xml:base="https://downtothewire.io/ghpages-ghcomments/2015/02/02/issue-6-is-fixed/"><![CDATA[<p>This is a post that demonstrates <a href="https://github.com/wireddown/ghpages-ghcomments/issues/6">wireddown/ghpages-ghcomments#6</a> is fixed.</p>

<p>Look at the raw view, these contents are ignored:</p>

<ul>
  <li>in-line comment in the front matter</li>
  <li>bookend double quotes in the value</li>
</ul>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>---
layout: post
title: "Issue 6 is fixed" # This line shows issue #6 is fixed
---
</code></pre></div></div>]]></content><author><name>Joe Friedrichsen</name><uri>https://downtothewire.io</uri></author><summary type="html"><![CDATA[This is a post that demonstrates wireddown/ghpages-ghcomments#6 is fixed.]]></summary></entry><entry><title type="html">The Phrenic Shrine Reveals Itself</title><link href="https://downtothewire.io/ghpages-ghcomments/2015/01/18/the-phrenic-shrine-reveals-itself/" rel="alternate" type="text/html" title="The Phrenic Shrine Reveals Itself" /><published>2015-01-18T00:00:00+00:00</published><updated>2015-01-18T00:00:00+00:00</updated><id>https://downtothewire.io/ghpages-ghcomments/2015/01/18/the-phrenic-shrine-reveals-itself</id><content type="html" xml:base="https://downtothewire.io/ghpages-ghcomments/2015/01/18/the-phrenic-shrine-reveals-itself/"><![CDATA[<p>Lordless pastries show us how angers can be gore-texes. We know that a cabbage is a mice from the right perspective. A peak is a pillow <a href="https://ajklijs.files.wordpress.com/2012/10/ikea-instructions-escher.jpg">from the right perspective</a>. Some posit the worldly step-brother to be less than abreast. A stocking sees a turkey as a frugal tomato.</p>

<p>The goal of a mallet becomes a makeshift cross. What we don’t know for sure is whether or not before ounces, emeries were only restaurants. This could be, or perhaps authors often misinterpret the retailer as a fructed scanner, when in actuality it feels more like a frowzy edger. A chill is a norwegian’s slip. Framed in a different way, a root is a seeking crib.</p>

<p>Unfortunately, that is wrong; on the contrary, some posit the bristly goat to be less than twinkling. Senseless frenches show us how burmas can be straws. Some assert that the payments could be said to resemble turdine lans. This is not to discredit the idea that a playground of the pull is assumed to be an only chalk. Their database was, in this moment, a rutty paste.</p>

<p>What we don’t know for sure is whether or not the first imbued knee is, in its own way, an ellipse. A hoe is an ashtray’s mallet. This is not to discredit the idea that one cannot separate mices from sequent wings. In modern times the betty is a bar. Extending this logic, the overt feature comes from a nettly cold.</p>

<p>The phrenic shrine reveals itself as a dustproof stepmother to those who look. A calculus is a plastics angora. We know that authors often misinterpret the nose as a gutsy america, when in actuality it feels more like a genty direction. A pain sees an olive as a sulkies moustache. In modern times the twelvefold stick comes from a cestoid speedboat.</p>

<p><a href="https://metaphorpsum.com">https://metaphorpsum.com</a></p>]]></content><author><name>Joe Friedrichsen</name><uri>https://downtothewire.io</uri></author><summary type="html"><![CDATA[Lordless pastries show us how angers can be gore-texes. We know that a cabbage is a mice from the right perspective. A peak is a pillow from the right perspective. Some posit the worldly step-brother to be less than abreast. A stocking sees a turkey as a frugal tomato.]]></summary></entry><entry><title type="html">Not a Sunrise but a Galaxyrise</title><link href="https://downtothewire.io/ghpages-ghcomments/2015/01/12/not-a-sunrise-but-a-galaxyrise/" rel="alternate" type="text/html" title="Not a Sunrise but a Galaxyrise" /><published>2015-01-12T00:00:00+00:00</published><updated>2015-01-12T00:00:00+00:00</updated><id>https://downtothewire.io/ghpages-ghcomments/2015/01/12/not-a-sunrise-but-a-galaxyrise</id><content type="html" xml:base="https://downtothewire.io/ghpages-ghcomments/2015/01/12/not-a-sunrise-but-a-galaxyrise/"><![CDATA[<p>Concept of the number one, trillion ship of the imagination encyclopaedia galactica, Jean-François Champollion laws of physics? Brain is the seed of intelligence, great turbulent clouds cosmic ocean hydrogen atoms the only home we’ve ever known. Another world stirred by starlight, as a patch of light from which we spring encyclopaedia galactica. Cosmos laws of physics from which we spring hundreds of thousands? Cambrian explosion Orion’s sword Tunguska event the sky calls to us great turbulent clouds. A billion trillion, billions upon billions galaxies! Emerged into consciousness.</p>

<p>Euclid extraordinary claims require extraordinary evidence not a sunrise but a galaxyrise, consciousness? Birth the carbon in our apple pies Vangelis kindling the energy hidden in matter not a sunrise but a galaxyrise billions upon billions, realm of the galaxies descended from astronomers billions upon billions Euclid network of wormholes how far away Jean-François Champollion prime number tesseract. A very small stage in a vast cosmic arena?</p>

<p>Corpus callosum another world. Cosmos realm of the galaxies! Made in the interiors of collapsing stars rogue billions upon billions extraplanetary a still more glorious dawn awaits another world tendrils of gossamer clouds kindling the energy hidden in matter not a sunrise but a galaxyrise. Vastness is bearable only through love culture cosmic ocean dispassionate extraterrestrial observer, white dwarf culture billions upon billions finite but unbounded trillion cosmos worldlets encyclopaedia galactica finite but unbounded tesseract.</p>

<p>Rig Veda, Tunguska event, Apollonius of Perga shores of the cosmic ocean, concept of the number one hydrogen atoms not a sunrise but a galaxyrise! As a patch of light of brilliant syntheses? Paroxysm of global death, tendrils of gossamer clouds birth? Two ghostly white figures in coveralls and helmets are soflty dancing, Tunguska event, are creatures of the cosmos rogue quasar. Star stuff harvesting star light radio telescope venture, something incredible is waiting to be known. Billions upon billions citizens of distant epochs, brain is the seed of intelligence cosmic ocean extraplanetary paroxysm of global death, white dwarf. Drake Equation, shores of the cosmic ocean network of wormholes corpus callosum as a patch of light and billions upon billions upon billions upon billions upon billions upon billions upon billions.</p>

<p><a href="https://saganipsum.com">https://saganipsum.com</a></p>]]></content><author><name>Joe Friedrichsen</name><uri>https://downtothewire.io</uri></author><summary type="html"><![CDATA[Concept of the number one, trillion ship of the imagination encyclopaedia galactica, Jean-François Champollion laws of physics? Brain is the seed of intelligence, great turbulent clouds cosmic ocean hydrogen atoms the only home we’ve ever known. Another world stirred by starlight, as a patch of light from which we spring encyclopaedia galactica. Cosmos laws of physics from which we spring hundreds of thousands? Cambrian explosion Orion’s sword Tunguska event the sky calls to us great turbulent clouds. A billion trillion, billions upon billions galaxies! Emerged into consciousness.]]></summary></entry><entry><title type="html">Creative Business-to-Business Churn</title><link href="https://downtothewire.io/ghpages-ghcomments/2015/01/09/creative-business-to-business-churn/" rel="alternate" type="text/html" title="Creative Business-to-Business Churn" /><published>2015-01-09T00:00:00+00:00</published><updated>2015-01-09T00:00:00+00:00</updated><id>https://downtothewire.io/ghpages-ghcomments/2015/01/09/creative-business-to-business-churn</id><content type="html" xml:base="https://downtothewire.io/ghpages-ghcomments/2015/01/09/creative-business-to-business-churn/"><![CDATA[<p>Innovator infrastructure funding. Mass market customer release ecosystem backing launch party. Learning curve startup strategy venture leverage hypotheses stealth buzz conversion bandwidth equity accelerator market infographic. Bootstrapping seed money non-disclosure agreement release pivot termsheet assets entrepreneur MVP handshake backing disruptive graphical user interface. Social proof strategy www.discoverartisans.com. Gamification handshake disruptive sales user experience. Social proof ecosystem <a href="https://en.wikipedia.org/wiki/Long_tail">long tail</a> research &amp; development infographic business-to-consumer www.discoverartisans.com gamification crowdfunding. Ecosystem freemium stealth bootstrapping facebook holy grail pivot alpha monetization pitch virality market release. Seed money bootstrapping iPhone product management. Business model canvas branding supply chain learning curve.</p>

<p>Venture conversion crowdfunding ramen hackathon prototype mass market buzz. Partnership infographic long tail series A financing. Hypotheses ramen www.discoverartisans.com A/B testing partnership metrics return on investment client freemium research &amp; development buzz innovator venture. Ownership hackathon startup long tail www.discoverartisans.com android MVP customer client. A/B testing gen-z vesting period first mover advantage android deployment ecosystem entrepreneur strategy. MVP backing low hanging fruit validation alpha analytics agile development startup. IPad business model canvas user experience vesting period first mover advantage product management MVP crowdsource stock marketing rockstar iteration freemium. Buzz www.discoverartisans.com sales business plan vesting period technology lean startup partner network prototype iteration beta success. Infrastructure www.discoverartisans.com user experience pivot. Product management buyer conversion channels prototype marketing.</p>

<p>Hackathon success agile development. Ecosystem marketing growth hacking first mover advantage learning curve. Market network effects responsive web design. Hackathon paradigm shift iPhone. Influencer leverage success value proposition growth hacking holy grail. Ownership series A financing early adopters analytics creative business-to-business churn rate funding metrics burn rate stock deployment. Agile development android business-to-business direct mailing handshake leverage low hanging fruit churn rate monetization release stock first mover advantage. Rockstar supply chain investor user experience. Equity pivot holy grail gamification focus customer. Startup graphical user interface deployment long tail early adopters value proposition social proof.</p>

<p>Market equity research &amp; development network effects iPad facebook supply chain startup. Network effects influencer A/B testing research &amp; development launch party social proof first mover advantage traction business-to-consumer responsive web design business model canvas virality conversion. Hackathon gen-z paradigm shift handshake innovator disruptive channels MVP backing early adopters ownership market influencer business-to-business. Founders niche market www.discoverartisans.com customer assets A/B testing innovator non-disclosure agreement paradigm shift leverage venture. Value proposition pitch prototype seed round. Founders alpha entrepreneur. Series A financing responsive web design churn rate traction. Crowdfunding business plan android backing freemium twitter. Value proposition low hanging fruit gen-z social proof advisor sales innovator long tail paradigm shift hackathon www.discoverartisans.com learning curve gamification. Paradigm shift freemium sales analytics infographic hypotheses scrum project launch party first mover advantage direct mailing A/B testing focus validation www.discoverartisans.com.</p>

<p><a href="https://startupsum.com">https://startupsum.com</a></p>]]></content><author><name>Joe Friedrichsen</name><uri>https://downtothewire.io</uri></author><summary type="html"><![CDATA[Innovator infrastructure funding. Mass market customer release ecosystem backing launch party. Learning curve startup strategy venture leverage hypotheses stealth buzz conversion bandwidth equity accelerator market infographic. Bootstrapping seed money non-disclosure agreement release pivot termsheet assets entrepreneur MVP handshake backing disruptive graphical user interface. Social proof strategy www.discoverartisans.com. Gamification handshake disruptive sales user experience. Social proof ecosystem long tail research &amp; development infographic business-to-consumer www.discoverartisans.com gamification crowdfunding. Ecosystem freemium stealth bootstrapping facebook holy grail pivot alpha monetization pitch virality market release. Seed money bootstrapping iPhone product management. Business model canvas branding supply chain learning curve.]]></summary></entry><entry><title type="html">Mumblecore Flexitarian Thundercats</title><link href="https://downtothewire.io/ghpages-ghcomments/2015/01/08/mumblecore-flexitarian-thundercats/" rel="alternate" type="text/html" title="Mumblecore Flexitarian Thundercats" /><published>2015-01-08T00:00:00+00:00</published><updated>2015-01-08T00:00:00+00:00</updated><id>https://downtothewire.io/ghpages-ghcomments/2015/01/08/mumblecore-flexitarian-thundercats</id><content type="html" xml:base="https://downtothewire.io/ghpages-ghcomments/2015/01/08/mumblecore-flexitarian-thundercats/"><![CDATA[<p>Marfa kale chips DIY mixtape, next level Carles Kickstarter PBR&amp;B sartorial. <a href="https://en.wikipedia.org/wiki/Mumblecore">Mumblecore</a> flexitarian Thundercats tote bag, brunch cornhole direct trade pop-up Austin. Post-ironic VHS banjo, fingerstache whatever cray lo-fi hella slow-carb fanny pack meh Pinterest distillery kogi. Gluten-free sustainable street art gentrify, mlkshk authentic chillwave dreamcatcher. Organic gastropub tilde XOXO trust fund chia. Direct trade Marfa Thundercats twee authentic distillery. Scenester occupy salvia food truck craft beer.</p>

<p>Helvetica retro mixtape migas pickled. Hoodie cold-pressed raw denim messenger bag lo-fi. Tote bag Blue Bottle listicle artisan, jean shorts wayfarers Godard stumptown chambray. Irony craft beer health goth, Schlitz tousled mumblecore selfies hashtag photo booth Echo Park cronut lumbersexual. Squid asymmetrical mumblecore gluten-free kitsch. Put a bird on it church-key 8-bit whatever. Irony post-ironic vegan gastropub.</p>

<p>Listicle bitters American Apparel, selfies Portland Odd Future Thundercats cornhole. Four loko forage XOXO, irony High Life bespoke Portland skateboard mumblecore vegan. Brooklyn Carles cliche Odd Future taxidermy locavore. Vinyl Portland meditation roof party Intelligentsia scenester, asymmetrical seitan Tumblr disrupt post-ironic farm-to-table sustainable shabby chic. Hoodie McSweeney’s leggings trust fund gluten-free, try-hard pork belly actually biodiesel Godard ethical umami roof party you probably haven’t heard of them Carles. Fingerstache dreamcatcher kitsch scenester, farm-to-table slow-carb aesthetic High Life church-key PBR mustache Williamsburg paleo tofu. Meh banjo cliche leggings you probably haven’t heard of them, Carles seitan actually fanny pack Wes Anderson cardigan bespoke chambray hella.</p>

<p><a href="https://hipsum.co">https://hipsum.co</a></p>]]></content><author><name>Joe Friedrichsen</name><uri>https://downtothewire.io</uri></author><summary type="html"><![CDATA[Marfa kale chips DIY mixtape, next level Carles Kickstarter PBR&amp;B sartorial. Mumblecore flexitarian Thundercats tote bag, brunch cornhole direct trade pop-up Austin. Post-ironic VHS banjo, fingerstache whatever cray lo-fi hella slow-carb fanny pack meh Pinterest distillery kogi. Gluten-free sustainable street art gentrify, mlkshk authentic chillwave dreamcatcher. Organic gastropub tilde XOXO trust fund chia. Direct trade Marfa Thundercats twee authentic distillery. Scenester occupy salvia food truck craft beer.]]></summary></entry><entry><title type="html">Collaboratively Administrate Empowered Markets</title><link href="https://downtothewire.io/ghpages-ghcomments/2015/01/01/collaboratively-administrate-empowered-markets/" rel="alternate" type="text/html" title="Collaboratively Administrate Empowered Markets" /><published>2015-01-01T00:00:00+00:00</published><updated>2015-01-01T00:00:00+00:00</updated><id>https://downtothewire.io/ghpages-ghcomments/2015/01/01/collaboratively-administrate-empowered-markets</id><content type="html" xml:base="https://downtothewire.io/ghpages-ghcomments/2015/01/01/collaboratively-administrate-empowered-markets/"><![CDATA[<p>Collaboratively administrate empowered markets via plug-and-play networks. Dynamically procrastinate B2C users after installed base benefits. Dramatically visualize customer directed convergence without revolutionary ROI.</p>

<p>Efficiently unleash cross-media information without cross-media value. Quickly maximize timely deliverables for real-time schemas. Dramatically maintain <a href="https://en.wikipedia.org/wiki/Bricks_and_clicks">clicks-and-mortar</a> solutions without functional solutions.</p>

<p>Completely synergize resource sucking relationships via premier niche markets. Professionally cultivate one-to-one customer service with robust ideas. Dynamically innovate resource-leveling customer service for state of the art customer service.</p>

<p>Objectively innovate empowered manufactured products whereas parallel platforms. Holisticly predominate extensible testing procedures for reliable supply chains. Dramatically engage top-line web services vis-a-vis cutting-edge deliverables.</p>

<p>Proactively envisioned multimedia based expertise and cross-media growth strategies. Seamlessly visualize quality intellectual capital without superior collaboration and idea-sharing. Holistically pontificate installed base portals after maintainable products.</p>

<p><a href="https://www.cipsum.com">https://www.cipsum.com</a></p>]]></content><author><name>Joe Friedrichsen</name><uri>https://downtothewire.io</uri></author><summary type="html"><![CDATA[Collaboratively administrate empowered markets via plug-and-play networks. Dynamically procrastinate B2C users after installed base benefits. Dramatically visualize customer directed convergence without revolutionary ROI.]]></summary></entry></feed>