The Unbearable Lightness of Being a Solo Founder
TLDR: Being a solo founder is tough. Find a community.
Continue ReadingKarl McCollester
TLDR: Being a solo founder is tough. Find a community.
Continue ReadingI saw an article that Ubuntu 2022.10 had been released, which spurred me to finally upgrade my Dell laptop from 2018.4 to 2022.4 Everything went great!… until I went to write some code.
Continue ReadingLet’s say you have a Business class in Rails..and maybe you want to records mergers, so you want to create a Merger class. Normally, when we create a model, we use the references type: so rails will automatically create both the <model>_id fields and the index: In this case though, we don’t want to reference […]
Continue ReadingA fundraising group to which I belong took up ‘The E-Myth Revisited‘ by Michael Gerber as reading material. Here’s what I took away: The Three Personalities: We each have three different mindsets warring within us with three distinctly different views: the entrepreneur (The optimist/visionary/dreamer), the manager (The planner/organizer/risk-avoider), and the Technician (The doer, tinkerer, perfecter). […]
Continue ReadingWith the tariffs levied by the Trump administration and the maintained by the Biden administration, it seemed to me that the American philosophy with China of engagement to further democracy had quietly undergone a bipartisan change. I realized I knew very little about post WWII China that wasn’t vaguely related to movies. I had no […]
Continue ReadingToday I was working on an pdf.erb view template in rails. In this case, I wanted to add into the PDF some images that we stored in cloudinary. My first instinct was to use the image tag that’s part of the cloudinary gem: However, the image would not display. Since I’ve rendered images in other […]
Continue ReadingI was configuring a Netgear switch today and having trouble getting everything working. Having only worked with Cisco folks and switches previously, I was completely unaware of the PVID setting until I read the Netgear helpdoc on setting a trunk port. I got everything working but still wasn’t clear until I read Jason Doolittle’s article. […]
Continue ReadingWhen writing a Rails app I love polymorphic relations. If there’s a good chance I can reuse a model with other objects and I can’t make it a PORO (plain old Ruby object), my relation of choice is likely to be a polymorphic one. Once challenge with polymorphism is documenting the interface future objects will […]
Continue ReadingI’ve been working on a Ruby program and had received a new version of an API to interface with. The new version had moved from GET requests to POST requests, so where before I was getting information with:
Continue Reading