feat: refactor pagination implementation

This commit is contained in:
Cory Dransfeldt 2023-03-26 17:35:46 -07:00
parent ee77555c32
commit da793fd1cc
No known key found for this signature in database
196 changed files with 2498 additions and 36 deletions

View file

@ -35,6 +35,7 @@
"@commitlint/config-conventional": "^17.4.4", "@commitlint/config-conventional": "^17.4.4",
"@extractus/feed-extractor": "^6.2.1", "@extractus/feed-extractor": "^6.2.1",
"@sherby/eleventy-plugin-files-minifier": "^1.1.1", "@sherby/eleventy-plugin-files-minifier": "^1.1.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.1", "@tailwindcss/typography": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^5.56.0", "@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0", "@typescript-eslint/parser": "^5.56.0",

View file

@ -70,7 +70,22 @@
localStorage.theme = 'dark' localStorage.theme = 'dark'
document.documentElement.classList.add('dark') document.documentElement.classList.add('dark')
} }
}); });;
(function() {
const pagination = document.getElementById('pagination');
if (pagination) {
pagination.addEventListener('change', (event) => {
const page = parseInt(event.target.value)
if (page === 1) {
window.location.href = '/'
} else {
window.location.href = `/${
event.target.value - 1
}/`
}
})
}
})()
</script> </script>
</body> </body>
</html> </html>

View file

@ -1,42 +1,42 @@
<nav class="flex justify-between mt-8 items-center"> <nav class="flex justify-between mt-8 items-center">
{% if pagination.href.previous %} {% if pagination.href.previous %}
<a href="{{ pagination.href.previous }}"> <a href="{{ pagination.href.previous }}">
<button class="py-2 pr-4 text-primary-500 hover:text-primary-400" aria-label="Previous page">Previous</button> <button class="py-2 pr-4 text-primary-500 hover:text-primary-400" aria-label="Previous page">
{% heroicon "solid" "arrow-left" "Prevous" "width=20 height=20" %}
</button>
</a> </a>
{% else %} {% else %}
<button <button
class="py-2 pr-4 cursor-not-allowed disabled:opacity-50" class="py-2 pr-4 cursor-not-allowed disabled:opacity-50"
aria-label="Previous page (disabled)" aria-label="Previous page (disabled)"
disabled>Previous</button> disabled>
{% heroicon "solid" "arrow-left" "Prevous" "width=20 height=20" %}
</button>
{% endif %} {% endif %}
<div class="flex flex-row gap-2 items-center"> <div class="flex flex-row gap-2 items-center">
<select id="pagination" class="inline rounded-lg p-1 text-center border border-primary-500 dark:text-white dark:bg-gray-900 text-gray-800 focus-visible:border-primary-400 focus-visible:outline-none">
{% for pageEntry in pagination.pages %} {% for pageEntry in pagination.pages %}
{% if page.url == pagination.hrefs[forloop.index0] %} <option {% if page.url == pagination.hrefs[forloop.index0] %}selected{% endif %} value="{{ forloop.index }}">{{ forloop.index }}</option>
<a href="{{ pagination.hrefs[forloop.index0] }}" aria-current="page">
<button class="w-12 h-12 rounded-full text-white dark:text-gray-900 bg-primary-400 hover:bg-primary-500 dark:hover:bg-primary-300" aria-label="Go to page {{forloop.index}}">
{{ forloop.index }}
</button>
</a>
{% else %}
<a href="{{ pagination.hrefs[forloop.index0] }}">
<button class="py-2 px-4" aria-label="Go to page {{forloop.index}}">
{{ forloop.index }}
</button>
</a>
{% endif %}
{% endfor %} {% endfor %}
</select>
<span>
of {{ pagination.links.size }}</span>
</div> </div>
{% if pagination.href.next %} {% if pagination.href.next %}
<a href="{{ pagination.href.next }}"> <a href="{{ pagination.href.next }}">
<button class="py-2 pl-4 text-primary-500 hover:text-primary-400" aria-label="Next page">Next</button> <button class="py-2 pl-4 text-primary-500 hover:text-primary-400" aria-label="Next page">
{% heroicon "solid" "arrow-right" "Next" "width=20 height=20" %}
</button>
</a> </a>
{% else %} {% else %}
<button <button
class="py-2 pl-4 cursor-not-allowed disabled:opacity-50" class="py-2 pl-4 cursor-not-allowed disabled:opacity-50"
aria-label="Next page (disabled)" aria-label="Next page (disabled)"
disabled>Next</button> disabled>
{% heroicon "solid" "arrow-right" "Next" "width=20 height=20" %}
</button>
{% endif %} {% endif %}
</nav> </nav>

View file

@ -9,14 +9,14 @@ permalink: /feed.xml
{{ collections.posts | rssLastUpdatedDate }}{% endblock %} {{ collections.posts | rssLastUpdatedDate }}{% endblock %}
{% block entries %} {% block entries %}
{% assign posts = collections.posts | reverse %} {% assign posts = collections.posts | reverse %}
{% for post in posts %} {% for post in posts limit: 15 %}
<entry> <entry>
<title>{{ post.data.title }}</title> <title>{{ post.data.title }}</title>
<link href="{{ site.url }}{{ post.url }}" /> <link href="{{ site.url }}{{ post.url }}" />
<updated>{{ post.date | date: "%m.%d.%Y" }}</updated> <updated>{{ post.date | date: "%m.%d.%Y" }}</updated>
<id>{{ site.url }}{{ post.url }}</id> <id>{{ site.url }}{{ post.url }}</id>
<content type="html"> <content type="html">
{{ post.data.post_excerpt | markdown }} {{ post.data.post_excerpt | markdown | escape }}
</content> </content>
</entry> </entry>
{% endfor %} {% endfor %}

View file

@ -0,0 +1,10 @@
---
date: 2013-09-04
draft: false
title: Arcade Fire - Reflektor 9/9/9
tags: ['music', 'Arcide Fire']
---
This sample sounds promising. I can't wait to hear more from _Reflektor_ on the 9th.<!-- excerpt -->
<iframe class="aspect-video w-full" width="640" height="480" src="//www.youtube.com/embed/4i2wp3GkNrg?rel=0" frameborder="0" allowfullscreen></iframe>

View file

@ -0,0 +1,10 @@
---
date: 2013-07-30
dradt: false
title: Blitzen Trapper - 'Ever Loved Once'
tags: ['music', 'Blitzen Trapper']
---
[I'm not quite sure what to make of this new track.](http://www.rollingstone.com/music/news/blitzen-trapper-visit-old-memories-in-ever-loved-once-song-premiere-20130730) It's a mellow, well-written song that's consistent with Blitzen Trapper's past material but it doesn't quite make the connection that their previous hits did.<!-- excerpt -->
The production feels a bit light and monotonous but I don't think that's what feels off here. I'm curious to hear what the rest of the album sounds like but I'm not quite sure where to set my expectations for it.

View file

@ -0,0 +1,12 @@
---
date: 2013-08-09
draft: false
title: Bombino and Hanni El Khatib at the Santa Monica Pier
tags: ['music', 'Hanni El Khatib']
---
The most recent entry in to the Santa Monica Pier's Twilight Concert series featured Bombino and Hanni El Khatib performing to a packed crowd on the pier that spilled out on to the beach.<!-- excerpt --> The weather and setting was picturesque, though Bombino's opening set was lackluster. I wasn't familiar with their music but it consisted of a jangly guitar melody, bouncy drum beat and slightly varied tempos.
Hanni El Khatib put on a strong, energetic performance (though the supporting guitarist/bassist were a bit dull). The sound was muddy but not overly hampered as the band ran through covers and tracks from both of his full length albums.
Overall it was a great show, a nice crowd and a fantastic setting for a concert. (It was also sponsored by myspace — the new myspace.)

View file

@ -0,0 +1,10 @@
---
date: 2013-08-27
draft: false
title: Damien Jurado - 2014
tags: ['music', 'Damien Jurado']
---
Damien Jurado has been one of my favorite musicians for years. He's a talented, albeit nervous, performer and a gifted songwriter.<!-- excerpt --> The announcement that he'll have a new record out in 2014 is exciting and something that I am very much looking forward to. If the new material he played live when I saw him at the Bootleg Theater in April is any indication it should be even more experimental and unique than _Maraqopa_. I cannot wait to hear it.
<iframe class="aspect-video w-full" width="640" height="480" src="//www.youtube.com/embed/NNpAj1U1_5Q" frameborder="0" allowfullscreen></iframe>

View file

@ -0,0 +1,12 @@
---
date: 2013-08-01
draft: false
title: Dawes - Most People
tags: ['music', 'video', 'Dawes', 'Damien Jurado']
---
A wonderful new video for one of the highlights of Dawes' most recent album _Stories Don't End_. I love videos from bands that give an insight in to live shows from both their perspective and that of their fans.<!-- excerpt --> The format steps away from the "video as a portrayal of a song's subject" approach and, instead, presents what goes in to bringing that song to life for fans night in and night out.
Damien Jurado gave "Museum of Flight" off of _Maraqopa_ a similar treatment that's also very [much worth checking out](https://www.youtube.com/watch?v=CCcAKNSJ3Ac).
<iframe class="aspect-video w-full" width="640" height="360" src="//www.youtube.com/embed/zUWu8Ny36dc" frameborder="0" allowfullscreen></iframe>

View file

@ -0,0 +1,8 @@
---
date: 2013-08-15
draft: false
title: Design by numbers - typography
tags: ['design', 'typography']
---
[A clear, concise primer on typography](https://medium.com/design-ux/2e5fd2f262e4) by [Dan Eden](http://daneden.me).<!-- excerpt -->

View file

@ -0,0 +1,10 @@
---
date: 2013-08-13
draft: false
title: Grapes of Wrath
tags: ['environment', 'wine', 'politics']
---
> "There is a fifteenfold difference in the price of cabernet sauvignon grapes that are grown in Napa Valley and cabernet sauvignon grapes grown in Fresno" in Californias hot Central Valley, says Kim Cahill, a scientist researching climate change's effect on viticulture who has also done consulting for the wine industry. "Cab grapes grown in Napa sold [in 2006] for $4,100 a ton. In Fresno, the price was $260 a ton. The difference in average temperature between Napa and Fresno was five degrees Fahrenheit."
Interesting read on climate change, wine and agriculture via [Mother Jones](https://medium.com/mother-jones/e85d7d9689ea).<!-- excerpt -->

View file

@ -0,0 +1,10 @@
---
date: 2013-08-07
draft: false
title: Hanni El Khatib Gets Saved In The Desert
tags: ['video', 'music', 'Hanni El Khatib']
---
An interesting rendition of Hanni El Khatib's "Save Me" in the desert near Joshua Tree via NPR's "Field Recordings" series. The performance isn't as strong as the recorded version but it's interesting nonetheless and translates reasonably well in an acoustic setting.<!-- excerpt -->
<iframe class="aspect-video w-full" width="600" height="338" src="https://www.npr.org/templates/event/embeddedVideo.php" frameborder="0" scrolling="no"></iframe>

View file

@ -0,0 +1,12 @@
---
date: 2013-08-13
draft: false
title: How The Head and the Heart made organic music
tags: ['music', 'The Head and the Heart']
---
[A nice, brief interview with _Elle_:](http://www.elle.com/news/culture/the-head-and-the-heart-outside-lands-2013)
> Though the album itself won't see the light of day for weeks, the Seattle alt-folk, rock sextet has been testing out the new stuff on rapt audiences over the course of the past few months, letting the clap-happy "Shake" and the earnest build of "Another Story" sweep over curious audiences eager to hear what the band's been mulling over since "Lost In My Mind" became a playlist classic in 2011.
I cannot wait to get my hands on _Let's Be Still_ and finally see The Head and The Heart live.<!-- excerpt --> I've listened to their debut countless times since first discovering the band and, if "Shake" is any indication of the direction the band took on the new album, I will be doing doing the same as soon as _Let's Be Still_ is released.

View file

@ -0,0 +1,12 @@
---
date: 2013-08-26
draft: false
title: Listen - Okkervil River, 'The Silver Gymnasium'
tags: ['music', 'Okkervil River']
---
**[NPR:](http://www.npr.org/2013/08/25/214471289/first-listen-okkervil-river-the-silver-gymnasium)**
> "It all adds up to a project in which nostalgia isn't the end result, but rather an engine that drives artistic ambition to a degree that's almost overwhelming." — Stephen Thompson, NPR
"Okkervil River's _The Silver Gymnasium_ sounds every bit as good as I had hoped it would.<!-- excerpt --> It's a diverse, well developed and thoughtful musical journey through Will Sheff's childhood in the 80s. I can't wait to hear this on vinyl."

View file

@ -0,0 +1,12 @@
---
date: 2013-07-15
draft: false
title: Maps And Music - Explore Okkervil River's New Album
tags: ['video', 'music', 'Okkervil River']
---
**[NPR:](http://www.npr.org/blogs/allsongs/2013/07/12/201582565/maps-and-music-explore-okkervil-rivers-new-album)**
> "The next album from the Austin, Texas band Okkervil River will tell the childhood tale of its lead singer and songwriter Will Sheff, a self-described awkward, nearsighted, asthmatic kid growing up the small town of Meriden, New Hampshire. The music on The Silver Gymnasium, out on September 3, is some of Okkervil River's best ..."
Cannot wait for this.<!-- excerpt -->

View file

@ -0,0 +1,12 @@
---
date: 2013-07-16
draft: false
title: New Arcade Fire Album Is 'Epic,' James Murphy Says
tags: ['music', 'Arcide Fire']
---
**[Rolling Stone:](http://www.rollingstone.com/music/news/new-arcade-fire-album-is-epic-james-murphy-says-20130716)**
> It sounds like Arcade Fire in the way that only Arcade Fire sound like Arcade Fire, you know? It's really fucking epic. Seriously.
It took me longer than it should have to get in to Arcade Fire but I have been absolutely hooked of late.<!-- excerpt --> This album should be genuinely incredible (especially given the band's track record and Murphy's involvement).

View file

@ -0,0 +1,10 @@
---
date: 2013-09-03
draft: false
title: New Sleigh Bells album in October
tags: ['music', 'Sleigh Bells']
---
The new track, "Bitter Rivals", sounds very poppy and cleanly produced which eliminates a lot of what I liked about _Treats_. I'll still be checking the album out but don't have particularly high hopes after the new track and _Reign of Terror_.<!-- excerpt -->
_[Via Pitchfork](http://pitchfork.com/news/52071-sleigh-bells-announce-new-album-bitter-rivals-share-title-track-announce-tour/)_

View file

@ -0,0 +1,10 @@
---
date: 2013-07-18
draft: false
title: NoMeansNo live via Marinet TVM
tags: ['music', 'video', 'NoMeansNo']
---
One of punk's greatest bands live via Marinet TVM. I still need to see them live and sincerely hope I get the chance to before they hang things up. Superb performance.<!-- excerpt -->
<iframe class="aspect-video w-full" width="640" height="360" src="//www.youtube.com/embed/euTMEIqTTfk" frameborder="0" allowfullscreen></iframe>

View file

@ -0,0 +1,8 @@
---
date: 2013-08-14
draft: false
title: Okkervil River - Lido Pier Suicide Car
tags: ['music', 'Okkervil River']
---
[This is proving to be one of my most anticipated albums (and shows) of the year.](http://www.usatoday.com/story/popcandy/2013/08/14/okkervil-river/2652311)<!-- excerpt -->

View file

@ -0,0 +1,10 @@
---
date: 2013-07-17
draft: false
title: Okkervil River - Open Mic Night
tags: ['video', 'music', 'Okkervil River']
---
Not out of place at all at an open mic night. Excellent.<!-- excerpt -->
<iframe class="aspect-video w-full" width="640" height="360" src="//www.youtube.com/embed/_GnemKx1tlk" frameborder="0" allowfullscreen></iframe>

View file

@ -0,0 +1,8 @@
---
date: 2013-08-07
draft: false
title: Okkervil River - Stay Young
tags: ['video', 'music', 'Okkervil River']
---
[Another strong track from Okkervil River's upcoming album](http://www.esquire.com/blogs/culture/okkervil-river-stay-young) _The Silver Gymnasium._ I'm really looking forward to seeing them in October at The Wiltern.<!-- excerpt -->

View file

@ -0,0 +1,25 @@
---
date: 2013-08-17
draft: false
title: Pile on the kale salad and an extra chicken wing
tags: ['Dawes', 'music']
---
Dawes played an acoustic set at the Whole Foods in West Hollywood to celebrate Whole Foods adding a record store to the location. Brothers Taylor and Griffin Goldsmith were joined on stage by Tay Strathairn with the elder Goldsmith leading the band through a range of songs from the band's 3 albums."<!-- excerpt -->
> "It's a great honor to play on front of Whole Foods. God knows we've put enough money into this place." - Taylor Goldsmith
Taylor's voice was the highlight of what was an inspired set of songs well-suited to the acoustic format. The band stuck to longer songs that benefited from the 3 members on stage harmonizing and backed by a guitar, light percussion and the ever-present sound of LA traffic.
If you get the chance to see Dawes on the road supporting _Stories Don't End_, do not hesitate to go. They are truly a fantastic live act.
**Setlist:**
1. Just Beneath the Surface
2. Million Dollar Bill
3. Someone Will
4. Love Is All I Am
5. Hey Lover [^heylover]
6. A Little Bit of Everything
[^heylover]: A cover from [Blake Mills](http://www.blakemillsonline.com)' solo debut, _Break Mirrors_.

View file

@ -0,0 +1,72 @@
---
date: 2013-08-20
drafts: false
title: Publishing to Kirby using Drafts workflows
tags: ['iOS']
---
I have recently begun publishing content to my [Kirby](http://getkirby.com) powered site using workflows from the endlessly-customizable [Drafts](http://agiletortoise.com/).<!-- excerpt --> The workflows I use send text formatted for my site's notes / blog template to [Textastic](http://www.textasticapp.com/). I then place the resulting text file in a folder named for the URL I want to assign to the post and push the folder to the appropriate content directory on my site.
My notes template uses four different text file names to differentiate between published content types and I have created a Drafts workflow for each name.
**Text post workflow:**
```
'textastic://x-callback-url/new?name=note.text.txt&amp;text=Title:%20[[title]]%0D----%0DDate:%20[[date|%m.%d.%Y]]%0D----%0DText:%20[[body]]'
```
So, for example, if the following were placed in to a draft ...
_Lorem ipsum dolor sit amet_
_Consectetur adipiscing elit. Suspendisse imperdiet ullamcorper accumsan. Duis et rhoncus odio. Vestibulum rhoncus nisl diam, non malesuada odio condimentum in. Morbi ut nisi nec erat viverra blandit at dapibus nibh._
... the workflow above would create a text file in Textastic named note.text.txt that contains:
```
Title: Lorem ipsum dolor sit amet
----
Date: 08.20.2013
----
Text: Consectetur adipiscing elit. Suspendisse imperdiet ullamcorper accumsan. Duis et rhoncus odio. Vestibulum rhoncus nisl diam, non malesuada odio condimentum in. Morbi ut nisi nec erat viverra blandit at dapibus nibh.
```
**Link post workflow:**
This would output the following ...
_Lorem ipsum dolor sit amet_
_Consectetur adipiscing elit. Suspendisse imperdiet ullamcorper accumsan. Duis et rhoncus odio. Vestibulum rhoncus nisl diam, non malesuada odio condimentum in. Morbi ut nisi nec erat viverra blandit at dapibus bibh._
... as:
```
Title: Lorem ipsum dolor sit amet
----
Date: 08.20.2013
----
Link: http://google.com
----
Text: Consectetur adipiscing elit. Suspendisse imperdiet ullamcorper accumsan. Duis et rhoncus odio. Vestibulum rhoncus nisl diam, non malesuada odio condimentum in. Morbi ut nisi nec erat viverra blandit at dapibus nibh.
```
It's worth noting that this particular workflow is a bit messy inasmuch as I've included an arbitrary number of Drafts line tags to account for any additional paragraphs of text after the first. Using the [[body]] tag in this instance would result in the "Link: http://google.com" line being included with the text.
The final two post types / work flows I use are identical to the first aside from the name of the file they supply to Textastic. They are as follows:
**Image post workflow:**
```
'textastic://x-callback-url/new?name=note.image.txt&amp;text=Title:%20[[title]]%0D----%0DWhen:%20[[date|%m.%d.%Y]]%0D----%0DText:%20[[body]]'
```
**Gallery post workflow:**
```
textastic://x-callback-url/new?name=note.gallery.txt&amp;text=Title:%20[[title]]%0D----%0DWhen:%20[[date|%m.%d.%Y]]%0D----%0DText:%20[[body]]
```
Using these actions to publish content from Drafts to your Kirby-based site should be as simple as changing the file name sent to Textastic in each workflow. If you run in to any problems or have any suggestions for improving these workflows feel free to [let me know](mailto:hi@coryd.me).
Many thanks to [Alex Duner](http://alexduner.com/) and [Nate Boateng](http://rantsandrambles.net/) for the Statamic Drafts workflow they provided to get me pointed in the right direction on this.

View file

@ -0,0 +1,12 @@
---
date: 2013-07-10
draft: false
title: Skin and Bones - Old Horses
tags: ['video', 'music']
---
Beautiful, stripped down song from a musician with a strong voice and truly heartfelt delivery. **Highly recommended.**<!-- excerpt -->
[Grab his album here »](http://skinandbonesmusic.bandcamp.com)
<iframe class="aspect-video w-full" width="640" height="360" src="//www.youtube.com/embed/wB52fQkjZkE" frameborder="0" allowfullscreen></iframe>

View file

@ -0,0 +1,26 @@
---
date: 2013-08-14
draft: false
title: The National at Jimmy Kimmel Live!
tags: ['music', 'The National']
---
I was finally able to see The National for the first time. The band has been promoting their newest release, _Trouble Will Find Me_ on the road but, after having missed them at Outside Lands, the Greek Theatre and the Hollywood Forever Cemetary, my final shot to catch them on this run through California was their performance at _Jimmy Kimmel Live_.<!-- excerpt -->
The band ran through cuts from their newest record at a breakneck pace that I didn't expect having listened to them exclusively on record up to that point.
Matt Berninger and company ran through "Graceless" and "This Is The Last Time" for Kimmel's audience before breaking out the wine, upping the tempo and getting in to other highlights from _Trouble Will Find Me_ ("Sea of Love", most notably).
Berninger also broke out the wine after the TV cameras stopped rolling.
> Are we off the air? Ok, I can drink wine then.
If you get the chance to see The National on this run, don't hesitate to do so.
**Setlist:**
1. Graceless
2. This Is The Last Time
3. Don't Swallow the Cap
4. Sea of Love
5. Pink Rabbits

View file

@ -0,0 +1,10 @@
---
date: 2013-07-25
draft: false
title: Postal Service - Some Idealistic Future
tags: ['music', 'video', 'The Postal Service']
---
A well-produced documentary and a great look at a band who, ten years later (and after only one album), still means so much to so many people.<!-- excerpt -->
<iframe class="aspect-video w-full" width="640" height="360" src="//www.youtube.com/embed/MoSP7lNJTqk" frameborder="0" allowfullscreen></iframe>

View file

@ -0,0 +1,12 @@
---
date: 2013-08-21
draft: false
title: The Silver Gymnasium
tags: ['video', 'music', 'Okkervil River']
---
This is an extremely creative and well-executed move by Okkervil River to promote their new album, _The Silver Gymnasium_.<!-- excerpt --> The game is well developed and evokes immediate nostalgia if you've ever played any older, 8-bit video games.
I can't wait to get my hands on the new album and see the band at The Wiltern in October.
_Via [The Silver Gymnasium](http://www.thesilvergymnasium.com)_

View file

@ -0,0 +1,10 @@
---
date: 2013-09-04
draft: false
title: The story behind Drafts
tags: ['drafts', 'iOS']
---
A nice, brief interview with Greg Pierce, the developer of [Drafts](http://agiletortoise.com/drafts/).<!-- excerpt --> Drafts has become an integral part of how I work from my phone and interact with other apps on it. I use Drafts for quick notes, composing emails, generating lists — you name it. Drafts has a permanent place in my dock and I can't wait to see what Pierce adds to the app next.
_[Via Lifehacker](http://lifehacker.com/im-greg-pierce-and-this-is-the-story-behind-drafts-1251294691)_

View file

@ -0,0 +1,12 @@
---
date: 2013-09-07
draft: false
title: Turns out your kids really did love that music you played
tags: ['music']
---
**[NPR:](http://www.npr.org/blogs/health/2013/09/05/219278386/turns-out-your-kids-really-did-love-that-music-you-played)**
> "The connection to parents' music isn't entirely surprising. Music plays a central role in child rearing, both in the songs children are taught at home and in school and in those heard more informally as part of the home environment. The songs parents choose to listen to reflect their taste, their values, their era."
Great read via NPR.<!-- excerpt --> Music means a great deal to me personally and, the older I get, the more I keep going back to the music I listened to with my parents as a kid. There's nothing quite like re-exploring old songs and albums that helped shape and guide my taste in music to where it is now.

View file

@ -0,0 +1,21 @@
---
date: 2013-09-13
draft: false
title: Where are you going?
tags: ['Godspeed You! Black Emperor', 'concert', 'music']
---
I've been a fan of Godspeed You! Black Emperor since high school and finally got the chance to see them live. The band put on a devastating, energetic performance that was worth the nine or so year wait it took to see them.<!-- excerpt -->
Godspeed's set began with a low, droning noise as the band took the stage, lurching in to a noisy clamor and building to the first of many crescendos. The band played through classic pieces from their discography, silhouetted against a backdrop of Efrim Munick's rapidly shifting film footage. As the set progressed, members of the band shifted from instrument to instrument, as the sound changed and shifted with them. The performance progressed and grew with the visuals behind the band, developing in to a fully-realized performance piece rather than simply feeling like another concert.
If you get the chance to see Godspeed You! Black Emperor in the future, jump at the chance. They are easily one of the most incredible acts I've had the pleasure of seeing live. Brilliant.
**Setlist:**
1. Hope Drone
2. Mladic
3. Chart #3
4. World Police and Friendly Fire
5. Behemoth
6. The Sad Mafioso

View file

@ -0,0 +1,12 @@
---
date: 2013-07-24
draft: false
title: Who the Fraggle designed this?
tags: ['music', 'Sufjan Stevens', 'Savages']
---
[Sufjan Stevens' thoughts on Savages' use of typography.](http://sufjan.com/post/56323826291/the-very-cool-savages-has-allowed-a-very-uncool) (Don't mind the unicorns throwing up rainbows in the background.)<!-- excerpt -->
[He continues in another post:](http://sufjan.com/post/56334645993/one-more-thing-about-this-album-the-awkward)
> Thank you, Savages, for the urgent all caps homily (to "recompose" ourselves in silence). I will never forgive your awkward italics, but I will forever sing your anthems to my children's children.

View file

@ -0,0 +1,14 @@
---
date: 2013-08-21
draft: false
title: Why Millennials are Ditching Cars and Redefining Ownership
tags: ['transportation', 'culture']
---
I wish ditching a car in Los Angeles were a workable option for me personally but, at the moment, I have an sixteen mile round trip, daily commute that isn't workable with public transit.<!-- excerpt -->
**[Via NPR](http://www.npr.org/2013/08/21/209579037/why-millennials-are-ditching-cars-and-redefining-ownership):**
> "While they do still want to own a car — not as much as they want to own a smartphone, by the way, that's the physical possession they're most attached to — they are thinking about, 'Do I need a car or not?' in a way that I think five years ago or 10 years ago we wouldn't have seen to the same extent." — Jill Hennessy
The insurance cost is absurd and maintenance is a bit much as well, especially given the state of the city's streets. It's understandable, to say the least, why people my age are ditching cars in favor of more cost-effective public options.

View file

@ -1,8 +1,8 @@
--- ---
title: Automatic Feedbin subscription backups
date: '2014-02-27' date: '2014-02-27'
tags: ['automation']
draft: false draft: false
title: Automatic Feedbin subscription backups
tags: ['automation']
--- ---
A few weeks ago I switched from [Fever.](http://feedafever.com/ 'Fever° Red hot. Well read.') to [Feedbin](https://feedbin.me/ 'Feedbin'). I had been using Fever on a shared hosting account and, over the long term, was proving to be slower than I had expected it to be.<!-- excerpt --> So far Feedbin has proven to be considerably faster than my old Fever install and appears to be more actively developed (I've also been able to use Jared Sinclair's [Unread](http://jaredsinclair.com/unread/ 'Unread — An RSS Reader') — it's fantastic). A few weeks ago I switched from [Fever.](http://feedafever.com/ 'Fever° Red hot. Well read.') to [Feedbin](https://feedbin.me/ 'Feedbin'). I had been using Fever on a shared hosting account and, over the long term, was proving to be slower than I had expected it to be.<!-- excerpt --> So far Feedbin has proven to be considerably faster than my old Fever install and appears to be more actively developed (I've also been able to use Jared Sinclair's [Unread](http://jaredsinclair.com/unread/ 'Unread — An RSS Reader') — it's fantastic).

View file

@ -0,0 +1,12 @@
---
date: 2014-05-19
draft: false
title: Ben Thompson on net neutrality
tags: ['net neutrality']
---
**[Ben Thompson:](http://stratechery.com/2014/net-neutrality-wake-call)**
> It's not enough to insist that a position is morally right; it behooves us who believe in net neutrality to work through how the US can balance net neutrality with the need for ongoing broadband investment, fashion a case for our position, and then build a political movement that makes our plan a reality. That is being serious.<!-- excerpt -->
This is a fantastic piece on net neutrality by Ben Thompson. This is a balanced, realistic look at net neutrality and the issues surrounding it. It's refreshing to see a pragmatic and informed discussion of the topic. Well worth the read.

View file

@ -0,0 +1,10 @@
---
date: 2014-01-06
draft: false
title: Changes coming to Droplr
tags: ['iOS']
---
> Droplr began as an idea between two geeks who wanted an easy way to share files with each other. So we set aside some weekends and evenings and built an app that could do just that. Over the last few years what began as a simple free Mac App, has grown into a great company dedicated to creating the best possible way to share files.<!-- excerpt -->
If this helps Droplr grow and continue as a successful business, I'm all for it. I use the service daily to shorten links, share files and post images.

View file

@ -0,0 +1,14 @@
---
date: 2014-02-25
draft: false
title: Dumb pipes
tags: ['politics', 'net neutrality']
---
**[Ben Bajarin:](http://atbenbajarin.com/dumb-pipes/)**
> Smart devices were ultimately the downfall of the wireless carriers when all the value moved to the handset and its ecosystem rather than their own proprietary ecosystem. This is the fear that some cable companies must face. Could smart devices eventually do the same thing to them? We can only hope.<!-- excerpt -->
I can't help but agree with everything Ben Bajarin has to say in this post. Carriers and broadband providers acting as "dumb pipes" is the best outcome for consumers and I can't help but cheer every time a provider gets a step closer to that role.
I don't want any services tied to my cell or broadband providers' ecosystems. I want them to provide me with the fastest connection at the most reasonable price possible and then get out of the way.

View file

@ -0,0 +1,33 @@
---
date: 2014-10-15
draft: false
title: External links and redirects in Statamic navigation
tags: ['development', 'Statamic']
---
I put together a fieldset and template that allows external links to be added to the navigation of Statamic sites alongside internal links.<!-- excerpt --> To implement this in your site, the fieldset should look like the following:
```
title: Nav link
fields:
link:
display: Link
required: true
default:
type: text
content:
type: hidden
```
This fieldset should be accompanied by a template named link.html which will need to be added to your site's theme. The contents of the template are simply Statamic's [redirect example](http://www.statamic.com/learn/documentation/tags/redirect).
Now you should be able to create link pages in your Statamic admin panel that can then be added to your site's navigation. The pages created in the panel should create page files that look like the following:
```
title: Example link page
fieldset: link
template: link
link: http://example.com
```
Is there an easier or more effective way to do this? [Let me know.](mailto:hi@coryd.dev)

View file

@ -0,0 +1,44 @@
---
date: 2014-09-08
draft: false
title: Fastmail in Fluid.app
tags: ['email', 'Fastmail']
---
I've spent the last few months bouncing around OSX mail clients. I went from Mail.app to [Airmail](https://itunes.apple.com/us/app/id573171375?at=11lvuD), to a [Mailmate](http://freron.com) trial, back to Airmail and then back to Mail.app. Now, however, I've finally settled on a mail client: [Fastmail](https://www.fastmail.com/?STKI=11917049)'s web interface in a [Fluid](http://fluidapp.com) instance.<!-- excerpt -->
I've gone with the Fastmail web app for one simple reason: I wanted every mail client I tried to essentially be a native version of their web app. I would find myself working in Fastmail's web app rather than any given mail client I was trying out without even thinking about it. I would be viewing something in Safari and then jump to the web app — rather than a mail client — without even thinking about it.
Running Fastmail in a Fluid instance did, however, require a bit of setup. First, I set my newly created Fastmail.app up as my default mail client. Next, I modified the default Gmail URL handler created with the new Fluid instance to open mailto: links in Fastmail as follows:
```javascript
function transform(inURLString) {
inURLString = inURLString.replace('mailto:', '')
inURLString = inURLString.replace('&', '&')
var argStr = ''
var splits = inURLString.split('?')
var emailAddr = null
var args = {}
if (splits.length > 0) emailAddr = splits[0]
if (splits.length > 1) argStr = splits[1]
var outURLString = 'https://www.fastmail.com/mail/compose:to=' + emailAddr
if (argStr.length > 0) outURLString += '&' + argStr
return outURLString
}
```
Add this URL handler by going to the Fluid app's preferences, URL handlers and name the handler Fastmail with the pattern mailto:\*
Configuring the dock counter for the Fluid instance is also fairly straightforward and James Wilcox has [a great writeup on setting that up](http://jamesw.me/?p=347).
Are you currently using Fastmail in a Fluid instance? Or do you have a particular web client you prefer? I'm currently pretty happy with this setup and already have a few other ideas for URL handlers and scripts I plan on trying out.
If you don't use Fastmail, I would highly recommend it and you can [sign up for it here](http://www.fastmail.com/?STKI=11917049).
**Edit (10.29.2014):** Updated the script to reflect Fastmail's new TLD (.com as opposed to .fm that they previously used; thanks to [Keith Bradnam for the heads up](http://keithbradnam.com).
**Edit (1.29.2017):** Updated the compose URL to reflect Fastmail's new compose routing. Thanks [Fred Barker](http://fredbarker.com)!

View file

@ -0,0 +1,14 @@
---
date: 2014-04-30
draft: false
title: Sorting email using aliases and plus addressing in Fastmail
tags: ['email', 'Fastmail']
---
I subscribe to a number of mailing lists and, up until recently, had been using individual server-side rules to sort all incoming messages from those lists in to a specific folder. However, as the number of lists I was subscribed to grew, adding and maintaining individual rules became increasingly tedious.<!-- excerpt -->
To make managing messages from mailing lists easier, I've switched all of the mailing lists I subscribe to to an alias that is targeted at the specific folder I want them sorted in to. To set this up you need to create a new alias and target that alias at a specific folder using [plus addressing](https://www.fastmail.com/help/receive/addressing.html) as follows:
`fastmailusername+targetfolder@fastmail.com`
Now, instead of having to create a rule for each mailing list sender, I simply provide the alias that I have created and any messages received via that alias are sent directly to the folder I store mailing list messages in.

View file

@ -0,0 +1,12 @@
---
date: 2014-09-02
draft: false
title: Front on email
tags: ['email']
---
**[Via Front](http://blog.frontapp.com/email-will-last-forever/):**
> I can't help but agree. There are a number of great messaging solutions out right now but none are as ubiquitous, reliable or open as email. The chat / messaging space suffers from a lack of all of these attributes — chat is becoming increasingly fragmented as companies battle for dominance and revenue.<!-- excerpt -->
I would gladly trade Hangouts, GroupMe, WhatsApp, Line et al for a unified, open chat / messaging standard.

View file

@ -0,0 +1,12 @@
---
date: 2014-10-03
draft: false
title: ISPs secretly furious at Verizon
tags: ['net neutrality', 'politics']
---
**[Via Ars Technica](http://arstechnica.com/tech-policy/2014/10/isps-secretly-furious-at-verizon-scared-of-stronger-net-neutrality-rules/):**
> "Verizon seemingly won a huge victory in January when a federal appeals court struck down network neutrality restrictions on blocking and discriminating against Internet content over fixed broadband connections. But Verizon's lawsuit against the Federal Communications Commission could backfire, with the commission now considering even stronger rules on both fixed and wireless networks."<!-- excerpt -->
That's good news if I've ever heard it (though I suppose I shouldn't be overly optimistic). Anything that upsets ISPs and, ultimately, leads to stronger net neutrality rules is a win for consumers.

View file

@ -2,7 +2,7 @@
title: Leaving Google Apps for Fastmail title: Leaving Google Apps for Fastmail
date: '2014-01-18' date: '2014-01-18'
draft: false draft: false
tags: ['email', 'fastmail', 'google'] tags: ['email', 'Fastmail', 'Google']
--- ---
I recently began a process of re-evaluating the web services I use, the companies that provide them and an evaluation of where I store important data. I had used Google services extensively with Gmail handling my email, my contacts synced through Google contacts, calendars in Google calendar and documents in a Google Drive (I had used Google Reader extensively but switched to a [Fever](http://feedafever.com/ 'Fever Red hot. Well read.') installation following Reader's demise).<!-- excerpt --> While Google's services are world class, it became increasingly clear to me that if was not in my interest to store significant amounts of personal data with a company that has a financial interest in profiting from that information. I recently began a process of re-evaluating the web services I use, the companies that provide them and an evaluation of where I store important data. I had used Google services extensively with Gmail handling my email, my contacts synced through Google contacts, calendars in Google calendar and documents in a Google Drive (I had used Google Reader extensively but switched to a [Fever](http://feedafever.com/ 'Fever Red hot. Well read.') installation following Reader's demise).<!-- excerpt --> While Google's services are world class, it became increasingly clear to me that if was not in my interest to store significant amounts of personal data with a company that has a financial interest in profiting from that information.

View file

@ -0,0 +1,28 @@
---
date: 2014-02-03
draft: false
title: Photo management with Dropbox and Hazel
tags: ['automation', 'Dropbox', 'macOS']
---
I recently abandoned iPhoto as a means of storing, organizing and managing photos on OSX and deactivated the associated [iCloud Photo Sharing](http://www.apple.com/icloud/icloud-photo-sharing.html 'iCloud Photo Sharing') feature running from iOS in to iPhoto via iCloud.<!-- excerpt --> I have replaced my iPhoto-based workflow with one centered around [Dropbox](http://dropbox.com) (which I have subscribed to for some time). I have been asked about this workflow and what follows is a brief explanation of what was involved with setting it up:
I began by exporting my iPhoto library to a folder using [Phoshare](http://code.google.com/p/phoshare/)[^iphoto]. I then created a simple [Hazel](http://www.noodlesoft.com/hazel.php) rule to scan my iPhoto library for duplicate images or videos and discard them. Clearing duplicates from my iPhoto library saved me 6 GB in space which either speaks to how disorganized my library was to begin with or how bloated iPhoto managed to make it.
After clearing duplicate files I created another rule to rename all photos based on the date they were taken and what they were taken with before then organizing them in to a subfolder based on that date. From there organization was simply a question of looking through each folder and appending an event title after the date the folder was named with.
Once all of the above rules were run on my Dropbox Photos directory I edited them to run on my [Dropbox Camera Uploads directory](https://www.dropbox.com/help/289/en 'How do I use Camera Upload?'). This allows me to upload photos via the iOS Dropbox app or import it directly from my camera and have Hazel auto-organize any content based on event date which I then label and move to a folder in the Photos folder named for the year in which the pictures were taken.
I now have more Dropbox space, an organized and easy to share photo library and a simple workflow for any and all photos I take (I take a lot).
This workflow allows me to keep all my photos (and all of my edited photos) unified across all devices that I use as well as the web. If I need to edit something I edit it in Photoshop and let Dropbox take care of making sure its everywhere I need it to be.
To view photos on the go, I use [Unbound](http://unboundapp.com 'Unbound') which allows me to quickly glance through and view images without having to store them directly on the device being used to view them.
I no longer have to wonder whether my photos made it to iPhoto on my MacBook Air through [iCloud Photo Sharing](http://www.apple.com/icloud/icloud-photo-sharing.html 'iCloud Photo Sharing') or any other device. Any photos I take on my phone are everywhere I need to be without having to worry because of Dropbox, as is the case with any photos I take with my camera (though the process of connecting that to a computer feels increasingly cumbersome).
I've seen more complex photo workflows than mine, but tend to prefer the simplicity of the default Dropbox app, a handful of rules and a little manual sorting. Now, I have all of my photos sorted and will have any other photos I take sorted going forward.
[You can download the rules I use here »](https://d.pr/m2tV 'Hazel rules for Dropbox Camera Uploads')
[^iphoto]: It's worth noting that Dropbox's app also allows you to pull your photos out of iPhoto's library file. If you import your photos this way, Dropbox attempts to sort them in to folders by date and iPhoto event. I found it easier to use Phoshare as it simply exports your photos in to a single folder, making it easier for Hazel to process them.

View file

@ -0,0 +1,10 @@
---
date: 2014-09-04
draft: false
title: Standard Markdown
tags: ['markdown']
---
**[Via Joe Steel](http://joe-steel.com/2014-09-04-Legitimate-Text-Processing.html):**
> This is about legitimizing their fork over all the others. Not just another fork here, this one is named "Standard Markdown"! — Joe Steel<!-- excerpt -->

View file

@ -0,0 +1,20 @@
---
date: 2014-10-20
draft: false
title: Streaming Music Has Left Me Adrift
tags: ['music']
---
[The New York Times has published an interesting piece on streaming music and the transition from analogue listening, CDs and other physical media.](http://www.nytimes.com/2014/10/19/magazine/streaming-music-has-left-me-adrift.html) What I find most interesting is the author, Dan Brooks', point about the effort involved in collecting music as versus now simply being able to search streaming services for available releases.<!-- excerpt -->
> When getting into a band became as easy as typing its name into a search box, particular musical tastes lost their function as signifiers of commitment. What you listened to ceased to be a measure of how much you cared and became a mere list of what you liked.
I used to be (and suppose I still am — to some extent) a fan of heavy metal. Almost all of the bands I listened to released records through small labels or independently with small print runs for each release being the norm. At the time, half the fun was not only finding new bands but actually _finding_ their releases so you could even listen to them. No band is all that great if everyone can listen to them and all that — exclusivity is king and all that (there was a sense of ownership or being in the know that came along with finding a new band and being able to refer fans of similar music to them).
Streaming services have eroded a lot of the excitement inherent in the old process of discovering new music. Now you can follow playlists or immediately stream just about anything anyone recommends to you (there are some notable exceptions — one of my favorite bands, Canadian punk act [NoMeansNo](http://www.nomeanswhatever.com), only has a greatest hits compilation distributed digitally). As silly as it is, I get less excited about finding new bands now and I tend to over-listen to releases I'm excited about, burn out on them and move on. As fans, we're less invested in what we're listening to because we didn't make the effort to discover it and the financial investment in a physical release or digital download to really attach us to it. Sure, we _are_ paying for music inasmuch as paying a [Spotify](http://spotify.com) or [Beats](http://www.beatsmusic.com) is paying for access to music ... but we're not directly supporting artists by buying those releases, by seeing the artwork, by having to go through the tea ceremony of pulling out a vinyl record and putting it on a turntable.
We have more access to music now than we've ever had, but we're much less invested in it. Maybe streaming proponents are right and streaming services will raise the money spent on music consumption in the aggregate, but I can't help but think we're losing something in the process. We've gained so much in the way of convenience and lost a lot with respect to the experience.
> My record collection is no longer a lifestyle, a biography, a status. The identities that I and a generation of fellow aesthetes spent our lives fashioning are suddenly obsolete. They turned out to be mere patterns of consumption, no more resilient than the patterns of production that provoked them.
Streaming has made music distribution far easier for artists and, really, I'm not advocating against streaming or somehow going back to any one physical medium (although I do enjoy collecting vinyl). I just feel as though streaming has stripped something special out of discovering and exploring new music. I hope, sincerely, that that experience is replaced by something else (perhaps music fans will go to more shows — I try to) or maybe streaming services will evolve in a way that produces a unique experience all its own. I'm not disappointed that we're moving past music in its traditional physical form, but I do have nostalgia for the years I spent ordering odd CDs from European metal distributors and anxiously awaiting their arrival in the mail.

View file

@ -0,0 +1,15 @@
---
date: 2014-08-06
draft: false
title: Sublime Text 3 - ctrl + tab key bindings
tags: ['Sublime Text']
---
I use [Sublime Text](http://sublimetext.com) as my primary text editor but have never liked the default tab behavior where ctrl + tab takes you to the most recently used tab rather than the next horizontal tab in the tab bar (ctrl + shift + tab does the reverse).<!-- excerpt -->
To fix this, I've added a few lines to the user key bindings file (located in Preferences > Key Bindings - User):
```json
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }
```

View file

@ -0,0 +1,12 @@
---
date: 2015-12-24
draft: false
title: Backdoor password in Juniper's firewall code
tags: ['politics', 'security']
---
**[Via Ars Technica](http://arstechnica.com/security/2015/12/researchers-confirm-backdoor-password-in-juniper-firewall-code/):**
> On December 17, Juniper Networks issued an urgent security advisory about "unauthorized code" found within the operating system used by some of the company's NetScreen firewalls and Secure Service Gateway (SSG) appliances. The vulnerability, which may have been in place in some firewalls as far back as 2012 and which shipped with systems to customers until late 2013, allows an attacker to gain remote administrative access to systems with telnet or ssh access enabled.<!-- excerpt -->
This is exactly why creating back doors in to encryption is a really bad thing. We don't need [a 'Manhattan-like project'](http://arstechnica.com/tech-policy/2015/12/hillary-clinton-wants-manhattan-like-project-to-break-encryption/) to create more security holes like this one — if you create backdoors, even for legitimate purposes, you'll simply be increasing the likelihood that incidents like this will continue to happen.

View file

@ -0,0 +1,14 @@
---
date: 2015-11-27
draft: false
title: A Cadillac for Your Thoughts (2015 in music)
tags: ['music']
---
2015 has been a genuinely fantastic year for music (both live and recorded). That's very much a personal assessment of the year but music is an inherently personal thing. There's been a number of albums released or that I've discovered that I see myself listening to for a long time to come and I've attended a number of shows that left a lasting impression on me (for good reasons and bad).<!-- excerpt -->
My wife and I saw EL VY play a beautifully rehearsed set at The Independent in front of what was, easily, the most obnoxious crowd we've been in (leave it to the other audience members from LA to earn that distinction). We saw our shared favorite band, The National, play a significant undersell for charity at The Troubadour in West Hollywood and we saw Sufjan Stevens perform a devastating rendition of _[Carrie and Lowell](https://geo.itunes.apple.com/us/album/carrie-lowell/id955572616?uo=4&app=itunes&at=11lvuD)_ in downtown.
I spent the year taking deep dives in to EL VY's _[Return to the Moon](https://geo.itunes.apple.com/us/album/return-to-the-moon/id1020818018?uo=4&app=itunes&at=11lvuD)_, Turnover's _[Peripheral Vision](https://geo.itunes.apple.com/us/album/peripheral-vision/id980825405?uo=4&app=itunes&at=11lvuD)_, The Hotelier's _[Home, Like No Place Is There](https://geo.itunes.apple.com/us/album/home-like-noplace-is-there/id818552465?uo=4&app=itunes&at=11lvuD)_ and, strangely, Brand New's _[Deja Entendu](https://geo.itunes.apple.com/us/album/deja-entendu/id325226569?uo=4&app=itunes&at=11lvuD)_ (this was spurred by their stellar performance at Coachella more than anything). Seinabo Sey and Courtney Barnett both released exceptional albums as well (they're also both outstanding live performers).
I'm curious to see what 2016 holds for music but this year has been one of my favorite's in recent memory.

View file

@ -0,0 +1,16 @@
---
date: 2015-03-28
draft: false
title: Currently reading
tags: ['books', 'javascript']
---
I've been reading a lot lately (mainly on my phone when I catch a spare moment). I've picked up several books on front end development and am currently digging in to _JavaScript: The Good Parts_ by [Douglas Crockford](http://www.crockford.com).<!-- excerpt --> I've been trying to dial in on an area of focus when reading about development and, for now, I think I'm settling in on JavaScript and a bit of Python. In addition to Crockford's book I'm planning on reading a book on [Ember.js](http://emberjs.com) and the framework's documentation.
For now, my backlog looks like this:
- _JavaScript: The Good Parts_
- _Scalable and Modular Architecture for CSS_
- _Building Web Apps with Ember.js_
- _Head First Python_
- _Flask Web Development_

View file

@ -0,0 +1,26 @@
---
date: 2015-04-17
draft: false
title: Exploring OS X mail clients
tags: ['Fastmail', 'email']
---
I've been using [Fastmail](https://www.fastmail.com/?STKI=11917049) for over a year now and have been exploring email clients the entire time I've been a subscriber. Until recently, the best client I've been able to find has been Fastmail's web app itself (whether that's in the browser or [in a Fluid instance](http://coryd.me/notes/fastmail-in-fluid-app).<!-- excerpt -->
I've tried [Airmail](http://airmailapp.com/), which is fine but isn't as flexible as I'd like (despite having a really extensive preferences pane) or as lightweight as I had hoped[^1]. I suffered through using OS X's Mail app and, though the [Gmailinator](https://github.com/nompute/GMailinator) plugin made it somewhat bearable, it frequently exhibited odd behavior that had me wondering just what the app was doing at times. I tried using [Mailmate](http://freron.com) on several occasions but would get hung up on the minimal nature of the app's designed and overwhelmed by it's flexibility and featureset.
I circled back to the Fastmail web app, but didn't love the idea of using a different web app for each of my email accounts (I have secondary Gmail accounts and would prefer a unified interface for all of my accounts). Frustration with using multiple web apps led me to give Mailmate another chance[^2].
I downloaded Mailmate and settled in to the idea of giving it a long term trial. I enabled the app's support for Gmail keybindings and went to work modifying the app's badge settings and creating custom folders I might find useful. I created a smart folder for tasks and assigned it to a dock and menubar counter[^3]. The tasks folder I created looks for emails from task management systems and messages I manually apply a todo label to (this isn't mapped to an IMAP label or folder — I don't typically handle tasks on the go and don't feel the need to reference this folder on the go).
I created several other helpful folders:
- A folder that lists all git commit messages for projects I'm working on.
- A folder that collects development meetup messages in Los Angeles so that I can decide which, if any, I'd like to attend.
- Individual folders for my Fastmail accounts so that I can filter through my inbox based on which alias a message was sent to.
Once I had folders set up in Mailmate, adjusted to the UI and began to memorize keyboard shortcuts, I was sold. The app is extremely lightweight and responsive, it's endlessly configurable and the app's bundles feature is extremely useful. I also really enjoy it's composer view and Markdown support (being able to email fenced code blocks is extremely useful). I think I'm finally done looking for a new email app. Finally.
[^1]: In fairness, this is a subjective judgement, but the app doesn't feel quite as smooth or as responsive as I had hoped it would.
[^2]: This decision was, in part, prompted by [Gabe Weatherhead's](http://www.macdrifter.com/tag/mailmate.html) and Brett Terpstra's posts about the app. I assumed there must be slmething I was missing.
[^3]: I know, I know, I shouldn't be using email as a task management or todo system, but I find it helpful to have a running tally of messages I need to act on.

View file

@ -0,0 +1,12 @@
---
date: 2015-07-18
draft: false
title: Hypebot Hosts LA Music Tech Meetup July 23
tags: ['meetups']
---
**[Hypebot:](http://www.hypebot.com/hypebot/2015/07/hypebot-hosts-la-music-tech-meetup-july-23.html)**
> Spend an evening with the bright minds and brilliant talents of LA's music industry and technology scene. Make connections, swap ideas, and build community.
If you're based in LA be sure to come out to the meetup and say hi!<!-- excerpt -->

View file

@ -0,0 +1,16 @@
---
date: 2015-08-29
draft: false
title: Moving to Bitbucket
tags: ['git', 'GitHub', 'Bitbucket']
---
I recently moved all of the repositories for my personal and client development projects to [Bitbucket](http://bitbucket.org).<!-- excerpt --> I had been paying for Github's micro plan to manage a few projects that I didn't want public, but made the decision to switch after exploring a bit more and seeing that, well, Bitbucket provides the functionality I was paying Github for for free.
Making the switch itself was painless. I added a key to my Bitbucket account, switched the remotes out on my repos and pushed each repo to its new home on Bitbucket. Switching remotes out is as simple as:
```bash
git remote set-url origin REPO-URL
```
Github is, of course, an incredible resource but, for my purposes, the switch made too much sense not to carry out.

View file

@ -0,0 +1,10 @@
---
date: 2015-11-12
title: Scotch Box for local LAMP development
draft: false
tags: ['development', 'vagrant']
---
> Scotch Box is a preconfigured Vagrant Box with a full array of LAMP Stack features to get you up and running with Vagrant in no time.<!-- excerpt -->
If you spend any amount of time working on LAMP stack development projects you should take a look at [Scotch Box](https://box.scotch.io). It's a full-featured Vagrant Box and is far easier than fiddling with setting up a server directly on your dev machine.

View file

@ -1,7 +1,7 @@
--- ---
title: Syncing OSX app preferences and dot files
date: '2015-03-15' date: '2015-03-15'
draft: false draft: false
title: Syncing OSX app preferences and dot files
tags: ['development', 'macOS'] tags: ['development', 'macOS']
--- ---

View file

@ -0,0 +1,20 @@
---
date: 2015-09-05
draft: false
title: Update OS X from the command line
tags: ['macOS']
---
If you don't want to bother dealing with the Mac App Store you can check for any recent updates for OS X from the command:
```bash
sudo softwareupdate -i -a
```
<!-- excerpt -->
You can also combine this with commands to run Homebrew and Cask updates (allowing you to quickly update things quickly and efficiently):
```bash
sudo softwareupdate -i -a && brew update && brew upgrade brew-cask && brew cleanup && brew cask cleanup
```

View file

@ -0,0 +1,14 @@
---
date: 2016-03-13
draft: false
title: DOJ takes war on encryption to WhatsApp
tags: ['politics', 'security']
---
**[The EFF:](https://www.eff.org/deeplinks/2016/03/next-front-new-crypto-wars-whatsapp):**
> The government's theory, that the All Writs Act gives it the power to compel American companies to write code and design products to ensure law enforcement access to encrypted content, is virtually without limits. No devices, and indeed no encrypted messaging services, would be safe from such backdoor orders. If the government wins in San Bernardino, it could even force companies to give it access to software update systems, and send their users government surveillance software disguised as security patches.<!-- excerpt -->
The government is taking its war on encryption to WhatsApp's front door. This is, perhaps, even more terrifying than their effort to force Apple to hamstring its device security. It's one thing if the government can force its way in to devices but, oftentimes, services used on secured devices have their own, additional layers of security. This is the government attempting to compromise security further by making inroads in to security provided by messaging (and other) service providers.
Chilling.

View file

@ -0,0 +1,12 @@
---
date: 2016-01-09
draft: false
title: Dutch government on encryption
tags: ['politics', 'security']
---
**[Via Ars Technica](http://arstechnica.com/tech-policy/2016/01/dutch-government-encryption-good-backdoors-bad/):**
> ...forcing companies to add backdoors to their products and services would have "undesirable consequences for the security of communicated and stored information," since "digital systems can become vulnerable to criminals, terrorists and foreign intelligence services."
Exactly.<!-- excerpt -->

View file

@ -1,7 +1,7 @@
--- ---
title: Generating a responsive CSS grid using Neat
date: '2016-07-24' date: '2016-07-24'
draft: false draft: false
title: Generating a responsive CSS grid using Neat
tags: ['development', 'css', 'sass'] tags: ['development', 'css', 'sass']
--- ---

View file

@ -0,0 +1,16 @@
---
date: 2016-12-31
draft: false
title: Updating to the latest version of git on Ubuntu
tags: ['Javascript', 'development']
---
[A fantastastic read](https://medium.com/javascript-scene/top-javascript-frameworks-topics-to-learn-in-2017-700a397b711#.2micvl2c8) by [Eric Elliott](https://ericelliottjs.com) on what to stay on top of in the ever-changing JavaScript ecosystem in 2017.<!-- excerpt -->
Personally, I've been focusing in on [React](https://facebook.github.io/react), [Redux](https://github.com/reactjs/redux) and the tooling ecosystem surrounding both. I can't wait to see what else next year brings.
I've been reading quite a bit this year as well and have particularly enjoyed:
- _Functional JavaScript_ by Michael Fogus: [iTunes](https://geo.itunes.apple.com/us/book/functional-javascript/id657571134?mt=11&uo=4&at=11lvuD) | [Amazon](http://www.amazon.com/dp/1449360726/?tag=corydme-20)
- _Learning JavaScript Design Patterns_ by Addy Osmani: [iTunes](https://geo.itunes.apple.com/us/book/learning-javascript-design/id552162547?mt=11&uo=4&at=11lvuD) | [Amazon](http://www.amazon.com/dp/1449331815/?tag=corydme-20)
- _React: Up and Running_ by Stoyan Stefanov: [Amazon](http://www.amazon.com/dp/1491931825/?tag=corydme-20)

View file

@ -0,0 +1,12 @@
---
date: 2016-05-30
draft: false
title: Senate push for encryption legislation falters
tags: ['politics', 'security']
---
**[Reuters:](http://www.reuters.com/article/us-usa-encryption-legislation-idUSKCN0YI0EM):**
> Draft legislation that Senators Richard Burr and Dianne Feinstein, the Republican and Democratic leaders of the Intelligence Committee, had circulated weeks ago likely will not be introduced this year and, even if it were, would stand no chance of advancing, the sources said.
Fantastic news. This bill (and the push behind it) was ill-conceived at best and would have caused untold damage were it to pass.<!-- excerpt -->

View file

@ -0,0 +1,31 @@
---
date: 2016-04-24
draft: false
title: Scriptable Backups with Arq
tags: ['Arq', 'backups']
---
I've been using Arq for my backups for several months now and have regular backups being pushed to both [Amazon Cloud Drive](https://www.amazon.com/clouddrive) and [AWS](https://aws.amazon.com). A big part of Arq's appeal is it's flexibility, configurability and the wide array of backup destinations it supports. In short, it allows you to own and control your backups.<!-- excerpt -->
In addition to being a wonderfully designed app, Arq ships with a handy command line utility that lets you pause, resume and otherwise control your backups using simple commands named for the app. In order to use these commands, however, you need to include the executable in your shell's path variable.
To accomplish this, I symlinked the Arq executable in to usr/local/bin. If /usr/local/bin isn't in your path, you can add it by adding the following to your .bashrc, .bash_profile or what have you:
```bash
export PATH=$PATH:/usr/local/bin
```
Next, symlink the Arq executable:
```bash
sudo ln -s /Applications/Arq.app/Contents/MacOS/Arq /usr/local/bin/Arq
```
Next, open up a new shell and try the following:
```bash
Arq pause 60
Arq resume
```
Now you can easily control your backups from your CLI of choice or even script them from apps like [Alfred](https://www.alfredapp.com/) or [Control Plane](http://www.controlplaneapp.com/) (context sensitive backups anyone?).

View file

@ -0,0 +1,17 @@
---
date: 2016-12-11
draft: false
title: Throwing together a blog
tags: ['development', 'Statamic']
---
I've been working on this site for longer than I'd care to admit (years at this point). It's been through a few domains, two content management systems, multiple versions of those content management systems, countless designs and several different hosts. I'm really happy with where it's at and what I've learned putting it together.<!-- excerpt -->
I started this site off running [Kirby](https://getkirby.com) on shared hosting. It's served as a design and development playground for me as I've learned and applied new things. It started off without being version and now the source for it is stored on [Github](https://github.com) and now runs on [Statamic](https://statamic.com).
I started off writing the CSS and JS for the site
manually, before generating a Grunt build process, breaking out the styles to be more modular and rewriting them in SCSS. Dependencies are now sourced from [npm](http://npmjs.com) and [Bower](https://bower.io).
Instead of running the site on shared hosting, it now runs on a LAMP [Digital Ocean](https://m.do.co/c/3635bf99aee2) box using PHP7 and [mod_pagespeed](https://github.com/pagespeed/mod_pagespeed), both of which have made a tremendous difference in terms of site performance.
As it stands now, I'm thrilled with where this site sits, but I'm curious to see how else I can continue improving it.

View file

@ -0,0 +1,10 @@
---
date: 2016-12-30
draft: false
title: The year encryption won
tags: ['security', 'privacy']
---
**[Wired:](https://www.wired.com/2016/12/year-encryption-won/)**
> It's not a firm guarantee, and who knows what a Trump administration will bring. For now, though, it's enough to appreciate the gains encryption made in 2016, and be hopeful that 2017 will only build on them.<!-- excerpt -->

View file

@ -0,0 +1,14 @@
---
date: 2017-08-10
draft: false
title: Ajit Pai accused of conflict for helping former client
tags: ['politics']
---
**[Ars Technica:](https://arstechnica.com/?p=1145545)**
> A prisoners' rights group has accused Federal Communications Commission Chairman Ajit Pai of having a conflict of interest because he used to represent a prison phone company as a lawyer.<!-- excerpt -->
> Under Pai's direction, the FCC dropped its court defense of rules capping the intrastate phone rates charged to prisoners. The decision helped prison phone companies—including Pai's former client, Securus Technologies—continue to charge high prices.
Nothing to see here.

View file

@ -0,0 +1,17 @@
---
date: 2017-08-27
draft: false
title: Sarahah uploads your contacts without permission
link: https://theintercept.com/2017/08/27/hit-app-sarahah-quietly-uploads-your-address-book/
tags: ['iOS', 'privacy']
---
**Yael Grauer, writing for The Intercept:**
> Sarahah bills itself as a way to "receive honest feedback" from friends and employees. But the app is collecting more than feedback messages. When launched for the first time, it immediately harvests and uploads all phone numbers and email addresses in your address book.<!-- excerpt -->
This behavior seems to be all too common lately and, while most apps ask for permission to access contacts, it's worth bearing in mind that they may not need that access. Additionally, once that access is granted, it isn't always clear what's actually done with the data.[^1] If an app asks for access to sensitive data, it's worth considering what they intend to use it for and how securely it might be stored should they copy it off of your device.
**Update:** apparently the app [is going to be updated to discontinue this behavior](https://threatpost.com/anonymous-messaging-app-sarahah-to-halt-collection-of-user-data-with-next-update/127668/). Better late than never, I suppose.
[^1]: This all assumes the app actually adheres to the platform rules requiring that they ask for permission to access this (or any other) device data.

View file

@ -0,0 +1,12 @@
---
date: 2017-02-22
draft: false
title: Castro v2.3 released
tags: ['iOS']
---
> The most exciting part is that Castro now uses custom notifications to allow episode triage without opening the app.
Castro is easily one of the best podcast apps on iOS and it just keeps getting better.<!-- excerpt -->
_[Buy Castro on the App Store](https://geo.itunes.apple.com/us/app/castro-podcast-player/id1080840241)_

View file

@ -0,0 +1,12 @@
---
date: 2017-03-13
draft: false
title: CBO analysis confirms GOP health bill is little more than class warfare
tags: ['politics']
---
**[Vox"](http://www.vox.com/2017/3/13/14914062/republican-health-care-plan-cbo-redistribution-poor-medicaid)**
> The AHCA would reverse one of the greatest actions against inequality ever taken by the federal government, and then increase inequality yet further. It is an act of class warfare against low-income Americans, waged for the benefit of the handful of rich taxpayers affected by Obamacare's surtaxes.<!-- excerpt -->
This bill amounts to tax cuts for the rich by stripping healthcare subsidies away from individuals that desperately need them. It should not be allowed to pass.

View file

@ -0,0 +1,10 @@
---
date: 2017-03-03
draft: false
title: 'The Internet belongs to the people, not powerful corporate interests'
tags: ['politics', 'net neutrality']
---
**[Chuck Schumer, via Ars Technica:](https://arstechnica.com/tech-policy/2017/03/op-ed-the-internet-belongs-to-the-people-not-powerful-corporate-interests)**
> The Internet is an invaluable platform on which we depend to spur innovation and job creation. Our economy works best when innovators, entrepreneurs, and businesses of all sizes compete on a level playing field. Ensuring that the playing field would be level was the basis for the FCC's decision to protect net neutrality by properly classifying broadband as a telecommunications service.<!-- excerpt -->

View file

@ -1,7 +1,7 @@
--- ---
title: Clearing mod_pagespeed cache
date: '2017-02-20' date: '2017-02-20'
draft: false draft: false
title: Clearing mod_pagespeed cache
tags: ['apache', 'development'] tags: ['apache', 'development']
--- ---

View file

@ -0,0 +1,14 @@
---
date: 2017-07-18
draft: false
title: Comcast continues to whine about net neutrality
tags: ['politics', 'net neutrality']
---
**[Via Ars Technica:](https://arstechnica.com/?p=1134039)**
> Comcast's claims about network investment clash with what ISPs have told their own investors; even Comcast's chief financial officer downplayed Title II's effect on investment in December 2016.<!-- excerpt -->
This is, of course, nonsense as the article goes on to explain. Comcast and so many of the other players in the net neutrality argument appear to either miss or intentionally bury the point: in the absence of competition, consumers and the open internet need net neutrality protections. Failing that, customers need dramatically more choice in selecting an ISP.
Comcast would love to gut those protections, double dip by charging competitors for access to its network before then passing those costs on to its reluctant customers. If Comcast is frustrated at losing revenue to new competitors it should make products people actually want to use and that compete rather than focusing on strong arming regulatory bodies intended to protect consumers from exactly this kind of behavior.

View file

@ -0,0 +1,8 @@
---
date: 2017-05-23
draft: false
title: How to comment on the FCC's proposal to kill net neutrality
tags: ['politics', 'net neutrality']
---
[The Verge has a handy write up on how to comment on the FCC's proposal to kill net neutrality](https://www.theverge.com/2017/5/23/15681434/net-neutrality-how-to-comment-fcc-proposal-released).<!-- excerpt --> If you're invested in preserving an open internet (and you should be), take the time to comment and voice your concern.

View file

@ -0,0 +1,10 @@
---
date: 2017-03-28
draft: false
title: Congress guts internet privacy protections
tags: ['politics', 'net neutrality']
---
**[Techdirt:](https://www.techdirt.com/articles/20170328/09565737026/consumer-broadband-privacy-protections-are-dead.shtml)**
> Thanks to a cash-soaked Congress there will be neither broadband competition, nor functional regulatory oversight of an industry with a documented history of aggressive, anti-consumer and anti-competitive behavior. What could possibly go wrong?<!-- excerpt -->

View file

@ -0,0 +1,18 @@
---
date: 2017-09-08
draft: false
title: Data is a toxic asset
tags: ['security']
---
**[Bruce Schneier:](https://www.schneier.com/blog/archives/2016/03/data_is_a_toxic.html)**
> We can be smarter than this. We need to regulate what corporations can do with our data at every stage: collection, storage, use, resale and disposal. We can make corporate executives personally liable so they know there's a downside to taking chances. We can make the business models that involve massively surveilling people the less compelling ones, simply by making certain business practices illegal.<!-- excerpt -->
> Data is a toxic asset. We need to start thinking about it as such, and treat it as we would any other source of toxicity. To do anything else is to risk our security and privacy.
This piece by Bruce Schneier is worth revisiting in light of [yesterday's Equifax breach](https://www.theverge.com/2017/9/7/16270808/equifax-data-breach-us-identity-theft). We're in the middle of a fresh wave of outrage over it but, as that fades, we should remember that we can do better than this. Companies and organizations that hold and collect our personal information can do better than this[^1].
There will be more breaches and we'll have to deal with the fallout, but we shouldn't be apathetic about it. Any company that collects that much data about the public should be held to higher standards when storing it (or, better yet, shouldn't store it at all). An insincere apology and a free year of some service provided by the company that failed to protect our data in the first place isn't good enough.
[^1]: They might consider starting by patching [nine year old vulnerabilities before they're exploited](https://qz.com/1073221/the-hackers-who-broke-into-equifax-exploited-a-nine-year-old-security-flaw/).

View file

@ -0,0 +1,14 @@
---
date: 2017-04-20
draft: false
title: DHS Boss Calls For More Fear, Less Encryption
tags: ['politics', 'security', 'privacy']
---
**[Techdirt:](https://www.techdirt.com/articles/20170419/09500037187/dhs-boss-calls-more-fear-less-encryption.shtml)**
> This is wonderful stuff if you're a fan of authoritarianism. Shut up and show your support. It's a message that's been sent several times by the new president. Now, it's being echoed by his top officials.
Yet another ill-considered power grab in the name of safety.<!-- excerpt -->
> Those who would give up essential liberty to purchase a little temporary safety deserve neither liberty nor safety.

View file

@ -0,0 +1,12 @@
---
date: 2017-04-14
draft: false
title: Don't like systematic privacy violations? Stop using the internet
tags: ['politics', 'net neutrality']
---
**[Via Ars Technica](https://arstechnica.com/tech-policy/2017/04/dont-like-privacy-violations-dont-use-the-internet-gop-lawmaker-says):**
> That's when Sensenbrenner said, "Nobody's got to use the Internet." He praised ISPs for "invest[ing] an awful lot of money in having almost universal service now." He then said, "I don't think it's my job to tell you that you cannot get advertising for your information being sold. My job, I think, is to tell you that you have the opportunity to do it, and then you take it upon yourself to make the choice."
We desperately need to stop electing officials that have no understanding of the impact of the legislation they help pass.<!-- excerpt -->

View file

@ -0,0 +1,12 @@
---
date: 2017-08-08
draft: false
title: EFF argues border agents need warrants to search digital devices
tags: ['politics', 'security']
---
**[The EFF:](https://www.eff.org/press/releases/eff-court-border-agents-need-warrants-search-contents-digital-devices)**
> "Our cell phones and laptops provide access to an unprecedented amount of detailed, private information, often going back many months or years, from emails to our coworkers to photos of our loved ones and lists of our closest contacts. This is light years beyond the minimal information generally contained in other kinds of personal items we might carry in our suitcases. It's time for courts and the government to acknowledge that examining the contents of a digital device is highly intrusive, and Fourth Amendment protections should be strong, even at the border," said EFF Staff Attorney Sophia Cope.<!-- excerpt -->
It's ludicrous that a warrant is not currently required for these searches. If a search is truly necessary, the authorities in question should be able to obtain a warrant with ease.

View file

@ -0,0 +1,10 @@
---
date: 2017-09-30
draft: false
title: Ending net neutrality will end the Internet as we know it
tags: ['politics', 'net neutrality']
---
**[Steve Wozniak and Michael Copps:](https://www.usatoday.com/story/opinion/2017/09/29/ending-net-neutrality-will-end-internet-we-know-steve-wozniak-michael-copps-column/704861001/)**
> The path forward is clear. The FCC must abandon its ill-conceived plan to end net neutrality. Instead of creating fast lanes for the few, it should be moving all of us to the fast lane by encouraging competition in local broadband connectivity and pushing companies to deliver higher speeds at more affordable prices. It's the right thing for us as consumers and as citizens.<!-- excerpt -->

View file

@ -0,0 +1,10 @@
---
date: 2017-09-08
draft: false
title: The Equifax breach is a disaster
tags: ['security']
---
**[Mike Masnick, Techdirt:](https://www.techdirt.com/articles/20170908/17363538172/equifax-security-breach-is-complete-disaster-will-almost-certainly-get-worse.shtml)**
> At some point, we need to rethink why we've given Equifax, Experian and TransUnion so much power over so much of our everyday lives. You can't opt-out. They collect most of their data without us knowing and in secret. You can't avoid them. And now we know that at least one of them doesn't know how to secure that data.<!-- excerpt -->

View file

@ -0,0 +1,16 @@
---
date: 2017-05-03
draft: false
title: FCC and ISPs begin campaign to gut net neutrality while pretending to protect it
tags: ['politics', 'net neutrality']
---
**[Techcrunch:](https://www.techdirt.com/blog/netneutrality/articles/20170502/17212137292/dont-get-fooled-plan-is-to-kill-net-neutrality-while-pretending-being-protected.shtml)**
> ... don't pretend that a bill from Congress pretending to "save" net neutrality will actually do so, when it's quite obvious that the bills being offered will undermine our internet, help big broadband screw over users, and diminish competition.<!-- excerpt -->
**[Ars Technica:](https://arstechnica.com/tech-policy/2017/05/gops-internet-freedom-act-permanently-guts-net-neutrality-authority/)**
> Nine Republican US senators yesterday submitted legislation that would prohibit the Federal Communications Commission from ever again using the regulatory authority that allowed the commission to impose net neutrality rules. The "Restoring Internet Freedom Act" would prohibit the FCC from classifying ISPs as common carriers under Title II of the Communications Act and "from imposing certain regulations on providers of such service."
All this amounts to is ISPs attempting to irreperably harm the internet in an effort to prop up businesses that would otherwise not be competetive. Strong net neutrality protections are absolutely vital to the ongoing health of the internet and companies that depend on it.

View file

@ -0,0 +1,24 @@
---
date: 2017-03-01
draft: false
title: FCC chair offers poor excuses as he seeks to strip consumer protections
tags: ['politics', 'privacy']
---
**[TechDirt:](https://www.techdirt.com/articles/20170228/07594036809/fcc-boss-falsely-claims-his-attacks-net-neutrality-have-already-made-wireless-sector-more-competitive.shtml)**
> Eliminate functional regulatory oversight and refuse to address limited competition? The end result is... Comcast Corporation and its record-shatteringly-bad customer service, high prices, and usage caps.<!-- excerpt -->
**[The Verge:](http://www.theverge.com/2017/3/1/14756064/net-neutrality-second-anniversary-under-assault)**
> ... net neutrality opponents are sticking with the same arguments they used two years ago: the rules rely on law that's too old, they'll hurt investment, and they'll leave internet providers uncertain of their fate.
**[The Verge:](http://www.theverge.com/2017/2/28/14761510/fcc-chairman-ajit-pai-says-net-neutrality-was-a-mistake)**
> [Ajit] Pai has been chairman of the commission for just over a month now, and in that time, he's already begun chipping away at net neutrality in a few different ways: approving zero rating, scaling back transparency rules, proposing to halt major new privacy requirements. After this speech today, it's evident that Pai is just getting started.
Net neutrality was nice while it lasted, but it looks like it'll be gone soon. More and more this issue seems like something congress should settle definitively but, given the current political makeup of both houses, any decision made likely would not be at all consumer friendly.
**[The EFF:](https://www.eff.org/deeplinks/2017/02/new-fcc-chairman-begins-attacks-internet-privacy)**
> Republicans in Congress are planning a much bigger assault on the Internet, by making it illegal for the FCC to protect consumer privacy online.

View file

@ -0,0 +1,22 @@
---
date: 2017-08-31
draft: false
title: FCC continues to completely disregard public opposition to net neutrality repeal
tags: ['politics', 'net neutrality']
---
**[Karl Bode via Techdirt:](https://www.techdirt.com/articles/20170830/10391738114/985-original-comments-to-fcc-oppose-killing-net-neutrality.shtml)**
> Let's not mince words: the FCC's plan to gut net neutrality protections in light of severe public opposition is likely one of the more bare-knuckled acts of cronyism in modern technological and political history. That's because the rules have overwhelming, bipartisan support from the vast majority of consumers, most of whom realize the already imperfect rules are some of the only consumer protections standing between consumers and giant, uncompetitive companies like Comcast. Repealing the rules only serves one interest: that of one of the least liked, least-competitive industries in America.<!-- excerpt -->
**[Jacob Kastrenakes via The Verge:](https://www.theverge.com/2017/8/31/16228220/net-neutrality-comments-22-million-reply-record)**
> Even after millions of comments arguing that internet protections are needed, its entirely possible that the commission will go ahead with its original, bare-bones plan to simply kill net neutrality and leave everything else up to internet providers to sort out.
FCC chairman Ajit Pai has, for the entirety of the net neutrality comment period, shown a willful disregard for public comments and interests. The FCC appears determined to repeal the rules in a decision that would only benefit companies that already occupy abusive duopoly positions in the market. Even worse, those make the decision seem perfectly willing to accept comments supporting their position that are clearly fraudulent.
**[Jon Brodkin via Ars Technica:](https://arstechnica.com/?p=1156315)**
> Despite a study showing that 98.5 percent of individually written net neutrality comments support the US's current net neutrality rules, AT&T is claiming that the vast majority of "legitimate" comments favor repealing the rules.
> The Federal Communication Commission's net neutrality docket is a real mess, with nearly 22 million comments, mostly from form letters and many from spam bots using identities stolen from data breaches.

View file

@ -0,0 +1,26 @@
---
date: 2017-08-04
draft: false
title: FCC is ignoring public interest in net neutrality repeal
tags: ['politics', 'net neutrality']
---
**[Ars Technica:](https://arstechnica.com/tech-policy/2017/08/fcc-is-ignoring-public-interest-in-net-neutrality-repeal-democrats-say/)**
> Although ISPs have claimed that the net neutrality rules harm investment, the cable industry's top lobbying group recently boasted that US Internet speeds are continuing to soar and that the cost of data per megabit has gone down. ISPs have also told their investors that the rules have not harmed network investment, an important factor because publicly traded companies are required to give investors accurate financial information, including a description of risk factors involved in investing in the company.<!-- excerpt -->
ISPs and the FCC have been pushing this misleading argument for the entirety of the current debate around net neutrality. You can't argue to the FCC that net neutrality has harmed investment while making the opposite claim to investors. Proponents of repealing title II regulations are either lying or being deliberately disingenuous.
> Without the rules against blocking and throttling websites and online services, ISPs "will be subject to economic and political pressures to choke off unpopular conversations or speed up viewpoints supported by the politically dominant," Democrats wrote.
[ISPs are already guilty of consumer-hostile behavior]([Verizon argues throttling video is allowed under net neutrality rules - The Verge](https://www.theverge.com/2017/7/25/16025520/verizon-says-video-throttling-allowed-under-net-neutrality)), even with the current rules in place. Their abuses would only get worse should those protections be rolled back.
> While the Republican-controlled Congress recently eliminated privacy rules that protect consumers from ISPs, the Title II authority over common carriers that the FCC uses to enforce net neutrality rules still imposes some basic privacy protections.
This goes without saying, but losing even more privacy protections _only_ benefits ISPs. Invasive tracking and advertising is bad enough without granting large companies the freedom to take it further.
> The net neutrality rule that forbids ISPs from charging websites for faster access to consumers is important for small businesses that won't be able to afford paid prioritization, the Democrats wrote.
This is, perhaps, one of the most compelling arguments for leaving net neutrality protections in place. ISPs should not be able to hamper new potential competitors that depend on network access simply due to their market position. If ISPs want to compete against, say, Netflix they should make a service that actually appeals to consumers.
You can add your comment opposing net neutrality repeal at the FCC's site.

View file

@ -0,0 +1,12 @@
---
date: 2017-03-11
draft: false
title: FCC throwing consumer privacy protections out the window to help ISPs
tags: ['politics', 'privacy']
---
**[The Verge:](http://www.theverge.com/2017/3/10/14881068/fcc-privacy-rules-fight-web-history-ads)**
> There's not really a bright side here for consumers. Internet providers asked for permission to start sharing your private data again, and without much of a fight, they're about to get it.<!-- excerpt -->
If ISPs are incapable of competing with services people actually want, the FCC shouldn't be working to prop them up.

View file

@ -0,0 +1,10 @@
---
date: 2017-05-27
draft: false
title: Google's new obsession with your photos
tags: ['Google', 'privacy']
---
**[The Ringer:](https://theringer.com/google-photos-data-collection-e8578b3256e0)**
> Sergey Brin says that Google wants to be the third half of your brain," [Pedro] Domingos says. "But now think about it: Do you really want the third half of your brain to make a living by showing you ads? I don't.<!-- excerpt -->

View file

@ -0,0 +1,12 @@
---
date: 2017-05-23
draft: false
title: GOP advances plan for ring-free voicemail spam
tags: ['politics', 'privacy']
---
**[Recode:](https://www.recode.net/2017/5/23/15681158/political-campaign-robocall-ringless-voicemail-without-ringing-cellphone-republican)**
> The GOP's leading campaign and fundraising arm, the Republican National Committee, has quietly thrown its support behind a proposal at the Federal Communications Commission that would pave the way for marketers to auto-dial consumers' cellphones and leave them prerecorded voicemail messages — all without ever causing their devices to ring.<!-- excerpt -->
It's like a U2 album release — but for annoying political crap.

View file

@ -0,0 +1,10 @@
---
date: 2017-03-08
draft: false
title: GOP senators' new bill would let ISPs sell your Web browsing data
tags: ['politics', 'privacy']
---
**[Ars Technica:](https://arstechnica.com/tech-policy/2017/03/gop-senators-new-bill-would-let-isps-sell-your-web-browsing-data)**
> "Big broadband barons and their Republican allies want to turn the telecommunications marketplace into a Wild West where consumers are held captive with no defense against abusive invasions of their privacy by internet service providers," [Sen. Edward] Markey said.<!-- excerpt -->

View file

@ -0,0 +1,42 @@
---
date: 2017-03-19
draft: false
title: Installing HTTP/2 on Ubuntu 16.04 with virtual hosts
tags: ['development']
---
Now that HTTP/2 is fairly stable and widely available, I decided to try and install and run it on this server. I'm currently running the [Ubuntu 16.04.2](http://releases.ubuntu.com/16.04/) LTS with virtual hosts configured so I can serve a number of sites beyond this one. All of the sites this server hosts are also served securely using certificates from [LetsEncrypt](https://letsencrypt.org/).<!-- excerpt -->
To install HTTP/2 I SSH'd in to the server and ran the following commands:
```bash
# add the new apache repository to your server's sources
sudo add-apt-repository -y ppa:ondrej/apache2
# update apache
sudo apt-key update
sudo apt-get update
# WARNING: answering yes at the prompts following this command will overwrite your apache.conf file located in /etc/apache2
sudo apt-get --only-upgrade install apache2 -y
# enable http2
sudo a2enmod http2
```
Next, navigate to /etc/apache2/sites-available and edit a virtual file of your choice, adding the following line after the ServerName declaration:
`Protocols h2 h2c http/1.1`
Finally, restart apache:
`sudo service apache2 restart`
Your site should now be served using http2. You can verify this using the KeyCDN tool located [here](https://tools.keycdn.com/http2-test).
_Did I miss anything? [Let me know.](mailto:hi@coryd.dev)_

View file

@ -0,0 +1,14 @@
---
date: 2017-04-03
draft: false
title: Internet privacy rules repealed
tags: ['politics', 'net neutrality']
---
**[Bob Quinn (an SVP at AT&T)](https://www.recode.net/2017/4/3/15169748/donald-trump-ends-federal-online-privacy-rules-fcc-data-advertisers):**
> "If the government believes that location data is sensitive and requires more explicit consumer disclosures and permissions," he continued, "then those protections should apply to all players that have access to location data, whether an ISP or edge player or search engine."
No, customers should be able to expect that their data remain private and, the fact of the matter is, customers typically have a choice who they provide their data to (whether that be Facebook, Google — you name it).<!-- excerpt --> Where most people in the U.S. live, there's often only one ISP for customers to get a connection from — they shouldn't be forced to have sensitive data exposed to that company purely for the benefit of that company.
If ISPs are upset about perceived competitors having access to different data sets than they do, they should come up with a competitive service that people actually want to use that can actually compete. [Or maybe they'll keep buying failed tech companies and mashing them together in a hilarious rebranding effort.](http://www.theverge.com/2017/4/3/15166872/aol-verizon-oath-announced-merger-rebranding-new-name-logo)

View file

@ -0,0 +1,10 @@
---
date: 2017-03-04
draft: false
title: iPhone spam call blockers
tags: ['privacy']
---
I've tried all of the apps Marco calls out in this post and I agree with his assessment of all of them. I liked [Nomorobo](https://www.nomorobo.com) a lot and it worked reliably, but I've settled on a different app that wasn't called out in this post. I've been using [Callblock](https://callblockapp.com) for the past week and like that its database extends beyond the robocallers covered by Nomorobo. It's already blocked a few calls and nothing that shouldn't get through has gotten through.
_[Via Marco Arment](https://marco.org/2017/01/08/call-blockers)._<!-- excerpt -->

View file

@ -0,0 +1,12 @@
---
date: 2017-09-29
draft: false
title: ISPs look to the Supreme Court to kill net neutrality
tags: ['politics', 'net neutrality']
---
**[Jon Brodkin, Ars Technica:](https://arstechnica.com/?p=1177323)**
> The lobby groups want a ruling that the FCC exceeded its statutory authority by reclassifying broadband as a common carrier service. Such a ruling could prevent future FCCs from implementing net neutrality rules as strict as the current ones, which outlaw blocking, throttling, and paid prioritization. A ruling for the industry could also prevent future FCCs from reviving other consumer protections that are likely to be overturned by the commission's current Republican majority.<!-- excerpt -->
None of this would be necessary if ISPs and cable companies were capable of creating and providing services that consumers actually wanted to use. Instead, they pursue legal action to cripple competitors and force consumers to use their, at best, substandard services.

View file

@ -0,0 +1,12 @@
---
date: 2017-03-14
draft: false
title: Keep the Internet Open
tags: ['politics', 'net neutrality']
---
**[Sam Altman](http://blog.samaltman.com/keep-the-internet-open):**
> "The internet is a public good, and I believe access should be a basic right. We've seen such great innovation in software because the internet has been a level playing field. People have been able to succeed by merit, not the regulatory weight of incumbency."<!-- excerpt -->
I could not agree more. ISPs demonstrate over and over that they [will not act in anyone's best interest but their own](https://www.techdirt.com/articles/20170314/04285036912/new-york-city-sues-verizon-fiber-optic-bait-switch.shtml) without proper oversight.

View file

@ -0,0 +1,20 @@
---
date: 2017-07-26
draft: false
title: Lawmakers blast FCC net neutrality rollback
tags: ['politics', 'net neutrality']
---
**[Motherboard:](https://motherboard.vice.com/en_us/article/j5qzm8/democratic-lawmakers-blast-trumps-fcc-for-anti-consumer-agenda)**
> "To date, most of the FCC's actions have ignored the needs of consumers," said Rep. Frank Pallone, the New Jersey Democrat. "Too often, when given the choice, this FCC has sided with large corporations to the detriment of hardworking Americans."<!-- excerpt -->
> "Chairman Pai, in the time you have been the head of this agency, we have seen an agenda that is anti-consumer, anti-small business, anti-competition, anti-innovation, and anti-opportunity," said Rep. Mike Doyle, the Pennsylvania Democrat. "I am deeply concerned that the FCC is on the wrong a path, a path that will hurt small businesses, regular people, and some of the most innovative sectors of our economy."
The current incarnation of the FCC is entirely pro-industry and anti-consumer in its approach to regulating the market it oversees.
Chairman Pai's argument is misleading at best, particularly given the admission of ISPs that the current net neutrality rules have not harmed investment. Should the current rules be repealed, ISPs likely won't materially increase their infrastructure investments. Instead they'll use the lack of oversight and regulations to line their pockets at the expense of competitors that require access to their networks and consumers that have no other choice but to pay for their service when selecting an internet service provider.
**[Via Ars Technica](https://arstechnica.com/?p=1138213):**
> "Although you stated the [September 7] hearing was an inquiry into the 'Internet ecosystem,' you once again failed to recognize how important the Internet is for consumers, small businesses, entrepreneurs, political organizers, public interest groups, and people looking for work," Doyle and Frank Pallone, Jr. (D-N.J.) said

View file

@ -0,0 +1,12 @@
---
date: 2017-04-04
draft: false
title: Lawmakers want to require border agents to obtain a warrant for smartphone searches
tags: ['politics', 'privacy']
---
**[Recode:](https://www.recode.net/2017/4/4/15178810/lawmakers-border-agents-warrant-search-smartphone-privacy-data)**
> "By requiring a warrant to search Americans' devices and prohibiting unreasonable delay, this bill makes sure that border agents are focused on criminals and terrorists instead of wasting their time thumbing through innocent Americans' personal photos and other data," [Sen. Ron] Wyden said in a statement.
I'd love to see this implemented, but I just can't see it happening.<!-- excerpt -->

View file

@ -0,0 +1,12 @@
---
date: 2017-07-26
draft: false
title: Lawsuit seeks records of FCC net neutrality discussions
tags: ['politics', 'net neutrality']
---
**[Via Ars Technica](https://arstechnica.com/?p=1138457):**
> "The FCC has made it clear that they're ignoring feedback from the general public, so we're going to court to find out who they're actually listening to about net neutrality," American Oversight Executive Director Austin Evers said in the group's announcement of its lawsuit.
They're listening to ISPs and their lobbyists — they could care less about the public.<!-- excerpt -->

View file

@ -0,0 +1,12 @@
---
date: 2017-07-20
draft: false
title: Misleading Arguments Against Net Neutrality Abound
tags: ['politics', 'net neutrality']
---
**[Techdirt:](https://www.techdirt.com/articles/20170718/06483437804/comcast-we-must-kill-net-neutrality-to-help-sick-disabled.shtml)**
> ... anybody that actually cares about net neutrality should support the simplest and easiest way to protect consumers, startups and small businesses moving forward: keep the existing rules intact.<!-- excerpt -->
Comcast's argument that gutting existing net neutrality rules will help members of protected classes is totally disingenuous. The best way to protect consumers and the open internet across the board is to leave the existing rules intact. Comcast has only its best interests in mind, not those of their customers or any other consumers.

View file

@ -0,0 +1,17 @@
---
date: 2017-02-26
draft: false
title: Internet Privacy Rules in Part Face a Halt at the FCC
tags: ['politics', 'privacy']
---
**[Via NPR](http://www.npr.org/sections/thetwo-way/2017/02/24/517050966/fcc-chairman-goes-after-his-predecessors-internet-privacy-rules):**
> Consumer advocacy groups have argued that the ISPs have a broader capacity to collect data on people than websites and digital services, given that ISPs connect users to all those websites and services in the first place.
> ISPs might use the collected data for their own promotions or sell it to data brokers for marketing or other uses.<!-- excerpt -->
Rolling back privacy protections for consumers is _only_ good for ISPs. This move reflects the current FCC chair's willingness to work for the interests of the businesses his agency should be regulating over those of consumers.
All this amounts to is a violation of customer privacy in order to allow ISPs to better market subpar products that exist only due to their existing, near-monopoly positions in the marketplace.
The sooner ISPs become [dumb pipes](https://en.m.wikipedia.org/wiki/Dumb_pipe), the better.

View file

@ -0,0 +1,12 @@
---
date: 2017-04-23
draft: false
title: Protecting your privacy
tags: ['politics', 'privacy']
---
**[Via Unroll.me](http://blog.unroll.me/we-can-do-better/):**
> I can't stress enough the importance of your privacy. We never, ever release personal data about you. All data is completely anonymous and related to purchases only.
Nonsense. If you're not paying for the service your data is being monetized in a way that benefits the interests of the company providing the service, not you.<!-- excerpt -->

View file

@ -0,0 +1,10 @@
---
date: 2017-10-10
draft: false
title: Responsible encryption
tags: ['politics', 'security']
---
**[Kurt Opsahl, The EFF:](https://www.eff.org/deeplinks/2017/10/deputy-attorney-general-rosensteins-responsible-encryption-demand-bad-and-he)**
> The Department of Justice has said that they want to have an “adult conversation” about encryption. This is not it. The DOJ needs to understand that secure end-to-end encryption is a responsible security measure that helps protect people.<!-- excerpt -->

View file

@ -0,0 +1,12 @@
---
date: 2017-09-10
draft: false
title: RSS still beats social media for tracking news
tags: ['rss']
---
**[David Nield, Gizmodo:](http://fieldguide.gizmodo.com/why-rss-feeds-still-beat-facebook-and-twitter-for-track-1800722740)**
> Whether youve never heard of it before or you've abandoned it for pastures new, here's why you should be using RSS for your news instead of social media.<!-- excerpt -->
Gizmodo has a simple explainer on why RSS still beats social media for news. If you don't currently use an RSS reader, check out the post and the services it recommends.

View file

@ -0,0 +1,10 @@
---
date: 2017-02-20
draft: false
title: Securing your personal devices and accounts
tags: ['privacy', 'security']
---
Jonathan Zdziarski has a detailed write up on personal, technical security that you should read and consider implementing (particularly given [recent events](http://www.theverge.com/2017/2/12/14583124/nasa-sidd-bikkannavar-detained-cbp-phone-search-trump-travel-ban)).<!-- excerpt -->
> With the current US administration pondering the possibility of forcing foreign travelers to give up their social media passwords at the border, a lot of recent and justifiable concern has been raised about data privacy. The first mistake you could make is presuming that such a policy won't affect US citizens.

Some files were not shown because too many files have changed in this diff Show more