<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Wilberto Morales</title>
    <link>http://wilbertom.com/</link>
    <description>Recent content on Wilberto Morales</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Sun, 29 Oct 2023 06:01:05 -0500</lastBuildDate>
    <atom:link href="http://wilbertom.com/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>RDP File Format</title>
      <link>http://wilbertom.com/code/rdp-file-format/</link>
      <pubDate>Sun, 29 Oct 2023 06:01:05 -0500</pubDate>
      <guid>http://wilbertom.com/code/rdp-file-format/</guid>
      <description>.rdp files are just plain text so you can edit them with any editor.&#xA;For example, you can disable printer redirection by adding this line:&#xA;redirectprinters:i:0 You can enable it by adding:&#xA;redirectprinters:i:1 This beats editing the connection via the GUI each time you connect.&#xA;Values you can edit.</description>
    </item>
    <item>
      <title>Dotnet Logger without DI</title>
      <link>http://wilbertom.com/code/dotnet-logger-without-di/</link>
      <pubDate>Thu, 12 Oct 2023 17:08:20 -0500</pubDate>
      <guid>http://wilbertom.com/code/dotnet-logger-without-di/</guid>
      <description>Creating Dotnet loggers in awkward places where dependency injection makes it difficult.</description>
    </item>
    <item>
      <title>Leg Pummelling and Transitions</title>
      <link>http://wilbertom.com/mma/leg-pummelling-and-transitions/</link>
      <pubDate>Thu, 05 Oct 2023 09:01:56 -0500</pubDate>
      <guid>http://wilbertom.com/mma/leg-pummelling-and-transitions/</guid>
      <description>For the past week we&amp;rsquo;ve been working on the Craig Jones instructional on how to break legs with heel hooks. Now that we have a good feel for breaking mechanics, I just need to actually get into the actual submissions.&#xA;Solo drilling the leg pummelling, creating windmills with your feet while rotating the hips. This drill should help get better at fighting for inside leg position.&#xA;For the transitions, we&amp;rsquo;re learning how to go from the different heel hook positions.</description>
    </item>
    <item>
      <title>A new company Wiki</title>
      <link>http://wilbertom.com/entrepreneurship/bloominwiki/</link>
      <pubDate>Tue, 24 Jan 2023 07:58:37 -0600</pubDate>
      <guid>http://wilbertom.com/entrepreneurship/bloominwiki/</guid>
      <description>For the past few months I&amp;rsquo;ve been working on BloominWiki, a company wiki. Its going to make documenting procedures easier for companies.&#xA;While working at WithMe, we&amp;rsquo;ve had growing pains for something like it.&#xA;Google Drive is great up to a certain point but it doesn&amp;rsquo;t scale with a growing team.&#xA;It starts feeling like documents get lost. Search isn&amp;rsquo;t great. The way it separates your documents and the ones shared with you is dumb.</description>
    </item>
    <item>
      <title>Black skips files without extensions</title>
      <link>http://wilbertom.com/code/black-will-skip-executables-without-extensions/</link>
      <pubDate>Tue, 10 Jan 2023 00:50:46 -0600</pubDate>
      <guid>http://wilbertom.com/code/black-will-skip-executables-without-extensions/</guid>
      <description>Python&amp;rsquo;s black formatter skips any files that don&amp;rsquo;t have a file extension(.py). This gets me once in a while, where I have a script with a shebang and notice that its code quality goes down over time because black has been skipping it.&#xA;All done! ✨ 🍰 ✨ 374 files left unchanged. </description>
    </item>
    <item>
      <title>Lua Is Embedded</title>
      <link>http://wilbertom.com/code/lua-is-embedded/</link>
      <pubDate>Sat, 05 Nov 2022 08:35:32 -0500</pubDate>
      <guid>http://wilbertom.com/code/lua-is-embedded/</guid>
      <description>Lua is missing so much functionality because it can be added from the host environment.</description>
    </item>
    <item>
      <title>My Experience with a Monorepo</title>
      <link>http://wilbertom.com/code/monorepos/</link>
      <pubDate>Sat, 01 Jan 2022 20:35:56 -0600</pubDate>
      <guid>http://wilbertom.com/code/monorepos/</guid>
      <description>When microservices were at the peak of their craze, I was working on &lt;a href=&#34;https://printwithme.com/&#34;&gt;PrintWithMe&lt;/a&gt;. We had multiple services that made up the app. It was natural to have a separate repository for each service. As the system grew in size, it became too difficult to manage.</description>
    </item>
    <item>
      <title>Use Signals to Safely Stop processes</title>
      <link>http://wilbertom.com/code/use-signals-to-safely-stop-a-process/</link>
      <pubDate>Thu, 30 Dec 2021 21:19:07 -0600</pubDate>
      <guid>http://wilbertom.com/code/use-signals-to-safely-stop-a-process/</guid>
      <description>You can use &lt;code&gt;signal&lt;/code&gt;s to manage processes externally. One usecase is telling a process to exit gracefully.</description>
    </item>
    <item>
      <title>Making Decisions</title>
      <link>http://wilbertom.com/mental-models/making-decisions/</link>
      <pubDate>Mon, 30 Aug 2021 22:28:07 -0500</pubDate>
      <guid>http://wilbertom.com/mental-models/making-decisions/</guid>
      <description>Making decisions can be difficult; here are my models for making them.</description>
    </item>
    <item>
      <title>React Testing Library - Testing a Node Attribute</title>
      <link>http://wilbertom.com/code/react-testing-library-testing-a-node-attribute/</link>
      <pubDate>Mon, 29 Mar 2021 17:06:34 -0500</pubDate>
      <guid>http://wilbertom.com/code/react-testing-library-testing-a-node-attribute/</guid>
      <description>You can test HTML node attributes with the &lt;a href=&#34;https://www.npmjs.com/package/@testing-library/jest-dom#tohaveattribute&#34;&gt;toHaveAttribute&lt;/a&gt; matcher. When you need more than an equality check, though, you can use &lt;code&gt;getAttribute&lt;/code&gt;.</description>
    </item>
    <item>
      <title>Extremes are Usually Wrong for Software Engineers</title>
      <link>http://wilbertom.com/mental-models/extremes-are-usually-wrong-for-software-engineers/</link>
      <pubDate>Fri, 26 Mar 2021 23:34:14 -0500</pubDate>
      <guid>http://wilbertom.com/mental-models/extremes-are-usually-wrong-for-software-engineers/</guid>
      <description>We need to get into the habit of taking a step back and being more pragmatic when making choices.</description>
    </item>
    <item>
      <title>Reading Effectively</title>
      <link>http://wilbertom.com/learning/reading-effectively/</link>
      <pubDate>Thu, 18 Mar 2021 23:48:54 -0500</pubDate>
      <guid>http://wilbertom.com/learning/reading-effectively/</guid>
      <description>I believe books are too long. Here are some tips to get the most out of your reading.</description>
    </item>
    <item>
      <title>Library Testing Functionality</title>
      <link>http://wilbertom.com/code/library-testing-functionality/</link>
      <pubDate>Tue, 08 Sep 2020 20:05:15 -0500</pubDate>
      <guid>http://wilbertom.com/code/library-testing-functionality/</guid>
      <description>We would save a lot of developer time if libraries included testing functionality.</description>
    </item>
    <item>
      <title>Testing Logger</title>
      <link>http://wilbertom.com/code/testing-logger/</link>
      <pubDate>Tue, 18 Aug 2020 01:18:50 -0500</pubDate>
      <guid>http://wilbertom.com/code/testing-logger/</guid>
      <description>Logging is sometimes a part of your requirements. For example, you might want to issue a &lt;code&gt;warning&lt;/code&gt; anytime some security event occurs. I like to test these events using a &lt;code&gt;TestingLogger&lt;/code&gt; class that can stand in place of a real logger.</description>
    </item>
    <item>
      <title>Tips for Code Assignments</title>
      <link>http://wilbertom.com/code/code-assignments/</link>
      <pubDate>Wed, 05 Aug 2020 20:00:28 -0500</pubDate>
      <guid>http://wilbertom.com/code/code-assignments/</guid>
      <description>Over the last six months, I have been reviewing coding assignments while searching for our next Software Engineer at &lt;a href=&#34;https://www.printwithme.com/&#34;&gt;PrintWithMe&lt;/a&gt;. Here are some tips I would give developers on the other side of this.</description>
    </item>
    <item>
      <title>Learning React 2nd Edition</title>
      <link>http://wilbertom.com/booknotes/learning-react-2nd-edition/</link>
      <pubDate>Tue, 28 Jul 2020 07:25:26 -0500</pubDate>
      <guid>http://wilbertom.com/booknotes/learning-react-2nd-edition/</guid>
      <description>If you want to learn React and catch up with other recent JavaScript developments, I recommend &lt;a href=&#34;https://amzn.to/3gkiaI8&#34;&gt;Learning React, 2nd Edition by Alex Banks &amp;amp; Eve Porcello&lt;/a&gt;.</description>
    </item>
  </channel>
</rss>
