<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/">
  <channel>
    <title>#chrome posts — Ben Crowder</title>
    <link>https://bencrowder.net/blog/tag/chrome/</link>
    <atom:link href="https://bencrowder.net/blog/tag/chrome/feed/" rel="self" />
    <description>Feed for blog posts tagged with #chrome.</description>
    <lastBuildDate>Sat, 04 Apr 2026 05:22:16 GMT</lastBuildDate>
    <language>en-US</language>
    <generator>https://bencrowder.net/</generator>

    <item>
      <title>A short followup to what I wrote last year about Press, my abandoned typesetting engine project: I’m...</title>
      <link>https://bencrowder.net/blog/2022/1357/</link>
      <guid isPermaLink="true">https://bencrowder.net/blog/2022/1357/</guid>
      <pubDate>Mon, 14 Nov 2022 12:00:00 GMT</pubDate>
      <dc:creator><![CDATA[Ben Crowder]]></dc:creator>
      <description><![CDATA[<p>A short followup to <a href="https://bencrowder.net/blog/2021/865/">what I wrote last year</a> about Press, my abandoned typesetting engine project: I’m now fully convinced that the web platform is where I want to do typesetting. It’s open, programmatic, and capable. Source files are plain text, easy to version control, and fairly future-proof. And even though it’s not WYSIWYG — at least not the way I’m using it — it’s much more comfortable for me as a working environment.</p>
<p>For non-book work (charts, some kinds of documents), I’ve found that browsers already support everything I need (like <code>@page</code>). That’s how I’ve done all my recent genealogy design work, and it’s how I’ll do any language charts I make going forward. And for things like books where browser support isn’t quite there yet, Paged.js works well (and will presumably be phased out once browser support gets better).</p>
<p>Not to mention how nice it is for both print and digital workflows (EPUB, web) to all use the same technologies. I also love that the web is cross-platform. Something I ran into when I was making charts with PlotDevice (which is Mac-only) was that people on Windows couldn’t modify the charts even when I gave them the source. That’s not a problem with the web.</p>
<p>I’ve even started using the web platform for less webby things like making wallpaper for my phone:</p>
<p><figure style="width: '300px'">
        <img src="https://cdn.bencrowder.net/blog/2022/11/scripture-wallpaper.jpg" alt="Dark cloudy background with the text of Matthew 11:28 at the center." title="Dark cloudy background with the text of Matthew 11:28 at the center." />
        
      </figure></p>
<p>Here’s the HTML (the 375&times;812px size is the CSS resolution of my iPhone 12 Mini — RIP — and also keep in mind that this was for a one-off never to see the light of day, so I took the liberty of cutting a few corners):</p>
<pre>
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0, user-scalable=no&quot; /&gt;
  &lt;link rel=&quot;stylesheet&quot; href=&quot;style.css&quot; /&gt;
&lt;/head&gt;
&lt;body&gt;
  &lt;div class=&quot;background&quot;&gt;
    &lt;svg id=&quot;darknoise&quot; viewBox=&quot;0 0 375 812&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot;&gt;
      &lt;filter id=&quot;noiseFilter&quot;&gt;
        &lt;feTurbulence baseFrequency=&quot;0.5&quot; numOctaves=&quot;8&quot; /&gt;
      &lt;/filter&gt;
      &lt;rect width=&quot;100%&quot; height=&quot;100%&quot; filter=&quot;url(#noiseFilter)&quot; /&gt;
    &lt;/svg&gt;

    &lt;svg id=&quot;lightnoise&quot; viewBox=&quot;0 0 375 812&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot;&gt;
      &lt;filter id=&quot;noiseFilter2&quot;&gt;
        &lt;feTurbulence seed=&quot;485&quot; baseFrequency=&quot;0.005&quot; numOctaves=&quot;12&quot; /&gt;
      &lt;/filter&gt;
      &lt;rect width=&quot;100%&quot; height=&quot;100%&quot; filter=&quot;url(#noiseFilter2)&quot; /&gt;
    &lt;/svg&gt;
  &lt;/div&gt;

  &lt;div class=&quot;quote&quot;&gt;Come unto me, all ye that labour and are heavy laden, and I will give you rest.&lt;/div&gt;

  &lt;div class=&quot;reference&quot;&gt;Matthew 11:28&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The CSS (with the font purchased from <a href="https://www.fontshop.com/families/ff-clifford">FontShop</a>):</p>
<pre>
* {
  box-sizing: border-box;
  font-family: Clifford Pro;
}

html {
  height: 100%;
}

body {
  color: #777;
  font-size: 1.6rem;
  margin: 0;
  text-align: center;
}

.background {
  background: radial-gradient(circle at 50% 90%, #222, #111);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.background svg#darknoise {
  bottom: 0;
  filter: saturate(0);
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.9;
  position: absolute;
  right: 0;
  top: 0;
}

.background svg#lightnoise {
  bottom: 0;
  filter: saturate(0);
  left: 0;
  mix-blend-mode: soft-light;
  opacity: 0.4;
  position: absolute;
  right: 0;
  top: 0;
}

.quote {
  line-height: 1.4;
  margin: 25rem 1.5rem 0;
}

.reference {
  color: hsl(0 40% 32%);
  font-size: 1.3rem;
  font-style: italic;
  margin-top: 1rem;
}
</pre>
<p>I then used headless Chrome to export the PNG (Firefox would probably have worked as well, though I haven’t yet tested it for this):</p>
<pre>
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --headless --disable-gpu --screenshot --window-size=375x812 index.html
</pre>
<p>It’s not the world’s most amazing wallpaper or anything, but I’m still pleased that I was able to make something I’m reasonably happy with using technologies I love. (I could have also used WebGL shaders or Canvas. Lots of options!)</p>
<p>Here’s to the open web.</p><hr class="feed-extra" style="margin-top: 48pt;" /><p class="feed-extra feed-mail"><a href="mailto:ben.crowder@gmail.com?subject=Re%3A%20A short followup to what I wrote last year about Press, my abandoned typesetting engine project: I’m...">Reply via email</a></p>]]></description>
    </item>
    <item>
      <title>Downside of Firefox, courtesy of Google: Gmail’s performance in Firefox is abysmal. Not only is it d...</title>
      <link>https://bencrowder.net/blog/2018/625/</link>
      <guid isPermaLink="true">https://bencrowder.net/blog/2018/625/</guid>
      <pubDate>Tue, 02 Oct 2018 12:00:00 GMT</pubDate>
      <dc:creator><![CDATA[Ben Crowder]]></dc:creator>
      <description><![CDATA[<p>Downside of Firefox, courtesy of Google: Gmail’s performance in Firefox is abysmal. Not only is it deathly slow, but buttons and keyboard shortcuts don’t register most of the time, and things are wonky across the board. (For example, deleting emails doesn’t actually delete them half the time.)</p>
<p>I’m leaning toward using Chrome just for Gmail (and perhaps other Google products as well).</p><hr class="feed-extra" style="margin-top: 48pt;" /><p class="feed-extra feed-mail"><a href="mailto:ben.crowder@gmail.com?subject=Re%3A%20Downside of Firefox, courtesy of Google: Gmail’s performance in Firefox is abysmal. Not only is it d...">Reply via email</a></p>]]></description>
    </item>
    <item>
      <title>Switched from Chrome to Firefox yesterday. (I don’t really trust Google anymore and figured it was f...</title>
      <link>https://bencrowder.net/blog/2018/623/</link>
      <guid isPermaLink="true">https://bencrowder.net/blog/2018/623/</guid>
      <pubDate>Tue, 25 Sep 2018 12:00:00 GMT</pubDate>
      <dc:creator><![CDATA[Ben Crowder]]></dc:creator>
      <description><![CDATA[<p>Switched from Chrome to Firefox yesterday. (I don’t really trust Google anymore and figured it was finally time to make the move.) Other perks: multi-account containers, theming via userChrome.css, supporting Rust. Happy so far, though it’s admittedly only been a day.</p><hr class="feed-extra" style="margin-top: 48pt;" /><p class="feed-extra feed-mail"><a href="mailto:ben.crowder@gmail.com?subject=Re%3A%20Switched from Chrome to Firefox yesterday. (I don’t really trust Google anymore and figured it was f...">Reply via email</a></p>]]></description>
    </item>
    <item>
      <title>Slow localhost in Chrome</title>
      <link>https://bencrowder.net/blog/2012/slow-localhost-in-chrome/</link>
      <guid isPermaLink="true">https://bencrowder.net/blog/2012/slow-localhost-in-chrome/</guid>
      <pubDate>Wed, 24 Oct 2012 12:00:00 GMT</pubDate>
      <dc:creator><![CDATA[Ben Crowder]]></dc:creator>
      <description><![CDATA[<p>For a while now I’ve been doing most of my web coding locally on my laptop, creating virtual <code>.local</code> hosts in Apache (like <code>unbindery.local</code>) and aliasing them to localhost in <code>/etc/hosts</code>. That was all well and good, but in Chrome there would always be a two or three second delay when first hitting a page on one of these local vhosts. Subsequent page views would be fast, but if I waited more than a minute or two, it would be slow again.</p>
<p>I finally googled around and <a href="http://www.gamecreatures.com/blog/2011/11/21/slow-response-testing-localhost-sites-in-google-chrome-on-mac-os-x/">just found</a> that the problem is the <code>.local</code> — it’s used by Bonjour on the Mac, causing conflicts that Chrome doesn’t quite know how to resolve quickly. (Safari does, though.)</p>
<p>So, all you have to do is change the name of the vhost to something else — from <code>unbindery.local</code> to <code>unbindery.dev</code>, for example. Works like a charm, and my goodness, I can’t believe I waited this long to fix it.</p>
<p><strong>Update</strong>: Turns out this is also the reason my terminal tabs would take two or three seconds to come up. It’s really fast now. Alleluia.</p><hr class="feed-extra" style="margin-top: 48pt;" /><p class="feed-extra feed-mail"><a href="mailto:ben.crowder@gmail.com?subject=Re%3A%20Slow localhost in Chrome">Reply via email</a></p>]]></description>
    </item>
    
  </channel>
</rss>
