Hi! I’m Daniel.
I live in Kansas City where I help run a small Christian church, raise two kids with my awesome wife, and write software for Divvy.
I run a ton of self-hosted software here at home on some machines that sit on an unnecessarily large server rack in my basement. I love building keyboards, too. I heavily customize my workflow and you can sift through my dotfiles if you like.
Occasionally, I post technical articles here.
Latest Blog Posts (RSS)
Things I Use
Posted on Jul 6 2023
I saw a post recently on ye ole fediverse that asked developers if they have a “uses” page and I was inspired to create mine. I wrote up just about everything I use on a weekly basis.
You can read about all the things I use here!
Teaching TypeScript to Help You with Events (Generically)
Posted on Jan 18 2022
I wanted my custom event system to have all the nice typed goodness and it took me a lot of brain-twisting and a couple of meetings to finally rubber duck it out. Now, I will share my hard-won knowledge with you!
Using Ecto Reflection for Simple Admin CRUD Forms in Elixir's Phoenix
Posted on Mar 28 2019
If you’re working on a Phoenix project, you probably realized the client might want to view (or even – gasp – edit!) their data in a pretty raw form. Frameworks like Django provide this out of the box. Phoenix, however, leaves this up to you!
Elm: Forms, Fields, and Abstractions
Posted on Mar 20 2019
If you’re using Elm, you’re probably dealing with forms and fields. You’re also probably wanting to do functional programming “right” and compose smaller functions together. Hopefully this helps!
Mirroring Gitea to Other Repository Management Services (GitHub, GitLab, etc.)
Posted on Mar 13 2019
I have a Gitea instance I self-host at home. I keep most of my repositories there, but I recognize that most other developers and potential employers will want to see my work on GitHub.
Weechat & Matrix Encryption Guide
Posted on Mar 7 2019
There’s a new-fangled Python WeeChat plugin that supports end-to-end encryption. This guide will walk you through what is currently a semi-annoying setup, as the entire project is still under heavy development.
Latest Tips (RSS)
iex and dbg/1 without pry prompts
Posted on Jun 22 2023
I love iex -S mix ...
but I usually don’t like when dbg
asks me to pry
.
Just show me my data! Well, today I learned about iex --no-pry
:
$ iex --help
Usage: iex [options] [.exs file] [data]
...
--no-pry Doesn't start pry sessions when dbg/2 is called.
Now I can iex --no-pry -S mix ...
and just see output instead of dealing with
the prompts for pry
ing! Not sure if anybody else felt this pain, but there
ya go.