<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.2.0">Jekyll</generator><link href="/feed.xml" rel="self" type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" /><updated>2025-10-08T00:23:29+00:00</updated><id>/feed.xml</id><title type="html">Miles A. Curry</title><subtitle>Personal web page of Miles A. Curry.</subtitle><entry><title type="html">Exploring How to avoid ‘Unrecognized Application’ on Windows</title><link href="/Windows-AntiVirus-Python-Arcade/" rel="alternate" type="text/html" title="Exploring How to avoid ‘Unrecognized Application’ on Windows" /><published>2024-05-17T19:00:00+00:00</published><updated>2024-05-17T19:00:00+00:00</updated><id>/Windows-AntiVirus-Python-Arcade</id><content type="html" xml:base="/Windows-AntiVirus-Python-Arcade/">&lt;p&gt;Recently, I started writing a small video game usying &lt;a href=&quot;https://api.arcade.academy/en/latest/&quot;&gt;Python Arcade&lt;/a&gt;. In
order to distribute it to my friends I started compiling it into a single .DLL
using &lt;a href=&quot;https://nuitka.net/&quot;&gt;Nuitka&lt;/a&gt;. In fact, you can download an early version &lt;a href=&quot;https://micurry.org/space.v0.5.zip&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If you do download the game, and try to run it on Windows (sorry Linux and Mac
users), your Windows defender will produce a “Windows Protected Your PC”
warning and prevent the application from running (if you click ‘More Info’,
you’ll be giving the option to run the application).&lt;/p&gt;

&lt;p&gt;This mechanism is driven by Window’s Defender’s SmartScreen.&lt;/p&gt;

&lt;p&gt;A bit of annoying warning from a developer’s perspective, but it’s a warning I
think we can all agree is needed for preventing malware execution.&lt;/p&gt;

&lt;p&gt;But the question then comes, what are the steps that are needed to be preformed
to become a ‘recognized’ app in Microsoft’s eyes?&lt;/p&gt;

&lt;p&gt;In this blog post, I will go into the research I’ve done to preform such a
task. While, I have not come to a solution now, I wanted to have a place to
hold my research and have a place to share it with others.&lt;/p&gt;

&lt;p&gt;I’ll provide as much links to documentation as I can, so you can find it on
your own.&lt;/p&gt;

&lt;p&gt;Likewise, I plan on updating this document when I return to this topic.&lt;/p&gt;

&lt;ul id=&quot;markdown-toc&quot;&gt;
  &lt;li&gt;&lt;a href=&quot;#tldr&quot; id=&quot;markdown-toc-tldr&quot;&gt;TLDR&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#running-an-unrecognized-application-via-run-anyway&quot; id=&quot;markdown-toc-running-an-unrecognized-application-via-run-anyway&quot;&gt;Running an Unrecognized Application via ‘Run Anyway’&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#how-windows-defender-determines-if-a-executable-is-unrecognized---reputation&quot; id=&quot;markdown-toc-how-windows-defender-determines-if-a-executable-is-unrecognized---reputation&quot;&gt;How Window’s Defender determines if a Executable is ‘Unrecognized’ - Reputation&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#submitting-your-application-for-review-by-microsoft&quot; id=&quot;markdown-toc-submitting-your-application-for-review-by-microsoft&quot;&gt;Submitting your Application For Review by Microsoft&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#certificates&quot; id=&quot;markdown-toc-certificates&quot;&gt;Certificates&lt;/a&gt;    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;#extended-validation-ev-certificates&quot; id=&quot;markdown-toc-extended-validation-ev-certificates&quot;&gt;Extended Validation (EV) Certificates&lt;/a&gt;        &lt;ul&gt;
          &lt;li&gt;&lt;a href=&quot;#ev-requirements&quot; id=&quot;markdown-toc-ev-requirements&quot;&gt;EV Requirements&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href=&quot;#ev-expiration&quot; id=&quot;markdown-toc-ev-expiration&quot;&gt;EV Expiration&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href=&quot;#ev-cost&quot; id=&quot;markdown-toc-ev-cost&quot;&gt;EV Cost&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#some-links-to-more-info-on-ev&quot; id=&quot;markdown-toc-some-links-to-more-info-on-ev&quot;&gt;Some Links to More Info on EV:&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#organization-validation-ov-and-individual-validation-iv-certificates&quot; id=&quot;markdown-toc-organization-validation-ov-and-individual-validation-iv-certificates&quot;&gt;Organization Validation (OV) and Individual Validation (IV) certificates&lt;/a&gt;        &lt;ul&gt;
          &lt;li&gt;&lt;a href=&quot;#requirements-for-ov-and-iv-certificates-validations&quot; id=&quot;markdown-toc-requirements-for-ov-and-iv-certificates-validations&quot;&gt;Requirements for OV and IV Certificates Validations&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href=&quot;#renewing-oviv-certificates&quot; id=&quot;markdown-toc-renewing-oviv-certificates&quot;&gt;Renewing OV/IV Certificates&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href=&quot;#oviv-cost&quot; id=&quot;markdown-toc-oviv-cost&quot;&gt;OV/IV Cost:&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#is-there-any-easy-way-like-through-lets-encrypt&quot; id=&quot;markdown-toc-is-there-any-easy-way-like-through-lets-encrypt&quot;&gt;Is there any easy way, like through Let’s Encrypt?&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#other-things-ive-found&quot; id=&quot;markdown-toc-other-things-ive-found&quot;&gt;Other things I’ve found…&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h1 id=&quot;tldr&quot;&gt;TLDR&lt;/h1&gt;

&lt;p&gt;TLDR: You application gains reputation as it is downloaded and ran by people.
You can increase the reputation by submitting it to Microsoft for malware
evaluation, but this takes time.&lt;/p&gt;

&lt;p&gt;Extended Validation (EV) certificates cost a crap ton of money and can only be
issued to organizations, but they allow the SmartScreen warning to instantly go
away.&lt;/p&gt;

&lt;p&gt;Organization Validation (OV) and Individual Validation (IV) certificates cost
less (but still a lot), but don’t automatically remove the SmartScreen. You
still need to gain reputation organically; however, your certificate will gain
reputation alongside your application. Thus you can use it to sign other
applications, which will gain reputation from your certification.&lt;/p&gt;

&lt;h1 id=&quot;running-an-unrecognized-application-via-run-anyway&quot;&gt;Running an Unrecognized Application via ‘Run Anyway’&lt;/h1&gt;

&lt;p&gt;First, I wanted to make a note about allowing an application to run by clicking
on the ‘Run Anyway’ button on the ‘Windows protected your PC’. Mainly, I wanted
to see if there was a way to undo this action.&lt;/p&gt;

&lt;p&gt;However, from a decent bit of searching, I have not found a way to undo this
action. Google has found nothing of use, and I’ve searched through the Window’s
Registry Editor and haven’t found anything related with applications that I’ve
clicked ‘Run Anyway’ on.&lt;/p&gt;

&lt;p&gt;I know I should &lt;em&gt;at least&lt;/em&gt; have some applications that I’ve allowed, but
perhaps Microsoft has hid the ability to undo to disable people from repeatedly
accepting an executable to increase it’s reputation (we’ll get into reputation
shortly).&lt;/p&gt;

&lt;p&gt;If anyone does find a way to disable it, let me know. It would be nice to have
a way to test locally if a Window’s Defender SmartScan accepts an application
or not.&lt;/p&gt;

&lt;h1 id=&quot;how-windows-defender-determines-if-a-executable-is-unrecognized---reputation&quot;&gt;How Window’s Defender determines if a Executable is ‘Unrecognized’ - Reputation&lt;/h1&gt;

&lt;p&gt;&lt;em&gt;Note: Here, I referrer to executable and application interchangeably. By
executable/application I refer to a program that executes commands on a
computer without the need to be compiled.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Application’s and executables are accepted based upon the executable’s
reputation &lt;em&gt;and&lt;/em&gt; the reputation of the certificate that has signed it.&lt;/p&gt;

&lt;p&gt;From what I’ve discovered, this reputation is based on the number of times
Window’s Defender/Microsoft has seen the executable &lt;em&gt;and&lt;/em&gt; the number of times
that application has been submitted and identified as malware.&lt;/p&gt;

&lt;p&gt;Microsoft provides a way to submit an executable for malware analysis. From
what I’ve seen, this site is the same for when you want to report a malware
executable &lt;em&gt;or&lt;/em&gt; you want to submit your application to be flagged as &lt;em&gt;not&lt;/em&gt;
malware. You can submit your application yo microsoft here:
&lt;a href=&quot;https://www.microsoft.com/en-us/wdsi/filesubmission/&quot;&gt;https://www.microsoft.com/en-us/wdsi/filesubmission/&lt;/a&gt;. See, here for more
submission guidelines: &lt;a href=&quot;https://learn.microsoft.com/en-us/defender-xdr/submission-guide&quot;&gt;https://learn.microsoft.com/en-us/defender-xdr/submission-guide&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It appears that this site will automatically scan your application and
will probably make a determination on that scan. After that scan, it is placed
into a queue, and based on priority, it will be analyzed by a human at
Microsoft to determine if it is malware or not. If your application is accepted
here, it will gain reputation.&lt;/p&gt;

&lt;p&gt;On top of that, the reputation of your application is based on the certificate
that was used to sign it. As we will go into detail in another section,   this
certificate must be purchased. The certificate itself has reputation. If a
signed executable is found to be malware, other executables signed with that
certificate will be negatively effected.&lt;/p&gt;

&lt;p&gt;Using an Extended Validation (EV) Certificates on your code will automatically
allow your executable to pass the Smart Screen Scan. See the Certificate
section for more info.&lt;/p&gt;

&lt;p&gt;See:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://stackoverflow.com/a/66582477&quot;&gt;Great Answer on StackOverflow&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://learn.microsoft.com/en-us/defender-xdr/criteria&quot;&gt;Microsoft Article on how they identify malware&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h1 id=&quot;submitting-your-application-for-review-by-microsoft&quot;&gt;Submitting your Application For Review by Microsoft&lt;/h1&gt;

&lt;p&gt;To gain reputation for your application, you can submit your application to
Microsoft to gain additional reputation, but it appears this can take a long
time. I believe if you are an enterprise customer (i.e. pay to play) you will
go faster through the priority.&lt;/p&gt;

&lt;p&gt;Submit your application here: &lt;a href=&quot;https://www.microsoft.com/en-us/wdsi/filesubmission/&quot;&gt;https://www.microsoft.com/en-us/wdsi/filesubmission/&lt;/a&gt;
Additional Guidelines: &lt;a href=&quot;https://learn.microsoft.com/en-us/defender-xdr/submission-guide&quot;&gt;https://learn.microsoft.com/en-us/defender-xdr/submission-guide&lt;/a&gt;&lt;/p&gt;

&lt;h1 id=&quot;certificates&quot;&gt;Certificates&lt;/h1&gt;

&lt;h2 id=&quot;extended-validation-ev-certificates&quot;&gt;Extended Validation (EV) Certificates&lt;/h2&gt;

&lt;p&gt;Now, onto certificates. There are a number of certificates out there for the
choosing, but again, only executables signed with a Extended Validation (EV)
Certificates will immediately pass the SmartScan. However, the EV Certificate
comes with some caveats.&lt;/p&gt;

&lt;p&gt;First, an EV certificate can only be issued to an Organization, so single
individuals cannot get obtain an EV certificate. However, I’m guessing any
individual with an LLC should be able to obtain one.&lt;/p&gt;

&lt;p&gt;Second, your issued EV certificate private key it’s self is shipped and
must only be stored on an encrypted USB hardware token (such as a Yubi Key).
This is to prevent keys being stolen. (There also appears to be a way to sign
from the cloud).&lt;/p&gt;

&lt;p&gt;Lastly, EV certificates are &lt;em&gt;expensive&lt;/em&gt;. This is because they require a higher
standard for authenticating the identify of the certificate requester’s legal
identity. Hence the name, Extended &lt;strong&gt;Validation&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;EV certificates seem mostly geared towards truly enterprise organizations.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;NOTE: EV certificates a required for developing a Windows 10 Driver.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;List of Code Signing Authorities (There’s probably more):&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.digicert.com/signing/code-signing-certificates&quot;&gt;DigiCert&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.entrust.com/products/digital-signing/code-signing-certificates&quot;&gt;Entrust&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.globalsign.com/en/code-signing-certificate/ev-code-signing-certificates&quot;&gt;GlobalSign&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.ssl.com/certificates/ev-code-signing/&quot;&gt;SSL&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;ev-requirements&quot;&gt;EV Requirements&lt;/h3&gt;

&lt;p&gt;From what I’ve found going through a few different sites, CA’s require the
following when applying for an EV certificate (It looks like there are some
differences between different issuers):&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Organization Name, Trade Name, etc.&lt;/li&gt;
  &lt;li&gt;Business Address&lt;/li&gt;
  &lt;li&gt;Telephone numbers&lt;/li&gt;
  &lt;li&gt;Verification of the Business owner&lt;/li&gt;
  &lt;li&gt;Dun &amp;amp; Bradstreet (DUNS) number&lt;/li&gt;
  &lt;li&gt;Attestation letter from a licensed professional&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Some requirements listed above appear that they can be substituted for each
other (e.g. DUNs number instead of a letter from a licensed professional).&lt;/p&gt;

&lt;p&gt;See:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.ssl.com/faqs/what-are-the-requirements-for-ssl-com-ev-certificates/&quot;&gt;https://www.ssl.com/faqs/what-are-the-requirements-for-ssl-com-ev-certificates/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;ev-expiration&quot;&gt;EV Expiration&lt;/h3&gt;

&lt;p&gt;Like all good Certificates EV’s expire. Any renewed certificate will require
you to go through the same validation as you did with the first one.&lt;/p&gt;

&lt;p&gt;I believe using an expired EV certificate to sign code decreases it’s
reputation.&lt;/p&gt;

&lt;h3 id=&quot;ev-cost&quot;&gt;EV Cost&lt;/h3&gt;

&lt;p&gt;Here are some costs I grabbed from a list of CA’s. They all offer discounts
for longer certificate duration.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Digicert 1 Year - EV w/ DigiCert-Provided Hardware Token: $648.00&lt;/li&gt;
  &lt;li&gt;Entrust 1 Year - EV w/ Entrust-Provided Hardware Token: $399.00&lt;/li&gt;
  &lt;li&gt;GlobalSign 1 Year - EV w/ GlobalSign-Provided Hardware Token: $410&lt;/li&gt;
  &lt;li&gt;SSL.com 1 Year - EV w/ SSL.com-Provided Yubikey: $628&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For the SSL.com, the YubiKey’s are $279 each…&lt;/p&gt;

&lt;p&gt;Please see each site for a further breakdown. Also, these prices are probably
out of date by the time you read this.&lt;/p&gt;

&lt;h2 id=&quot;some-links-to-more-info-on-ev&quot;&gt;Some Links to More Info on EV:&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.ssl.com/certificates/ev-code-signing/&quot;&gt;SSL What is EV Code Signing?&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.ssl.com/faqs/what-are-the-requirements-for-ssl-com-ev-certificates/&quot;&gt;SSL.com’s Requirement for an EV Certificate&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Extended_Validation_Certificate&quot;&gt;Extended Validation Certificate Wikipedia Article&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;organization-validation-ov-and-individual-validation-iv-certificates&quot;&gt;Organization Validation (OV) and Individual Validation (IV) certificates&lt;/h2&gt;

&lt;p&gt;OV and IV certificates are similar to EV, but are not as rigours in their
validation. They are also similar to a Domain Validation (DV) certificate, but
require more validation.&lt;/p&gt;

&lt;p&gt;OV certificates are issued to organizations, while IV certificates are
issued to individuals&lt;/p&gt;

&lt;p&gt;It appears that, OV and IV certificates offer the same amount of trust to the
user, but they just&lt;/p&gt;

&lt;p&gt;When compared to EV certificates, OV and IV offer the same amount of trust, and
have similar needs for validation, the only difference is varying a business
vs an individual.&lt;/p&gt;

&lt;p&gt;These certificates are cheaper since they require less validation then EV;
however, they do not offer the same trust as EV certificates and thus,
unfortunately, do not grant immediate Window’s Defender SmartScreen acceptance.&lt;/p&gt;

&lt;p&gt;However, they allow the ability to use a certificate to help your applications
gain some reputation, but SmartScreen reputation still has to be obtained
organically, by the number of downloads.&lt;/p&gt;

&lt;p&gt;It seems that over time, as your application becomes reputable, so to will the
certificate become reputable. Thus, new applications signed with your
certificate will gain &lt;em&gt;some&lt;/em&gt; reputation just from being signed from a ‘trusted’
certificate.&lt;/p&gt;

&lt;p&gt;As quoted from this &lt;a href=&quot;https://learn.microsoft.com/en-us/archive/blogs/ie/smartscreen-application-reputation-building-reputation&quot;&gt;Microsoft Article&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Reputation is also generated for digitally signed downloads based on the
digital certificate used to sign the file. Digital certificates allow 
reputation to be assigned to a single identity (digital certificate) across 
multiple files. If you are not signing your programs, reputation will be built 
independently for each file you distribute. In contrast, signed programs may 
inherit the reputation of your digital certificate.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;For some real good information on the difference between all three
certifications see &lt;a href=&quot;https://www.ssl.com/faqs/which-code-signing-certificate-do-i-need-ev-ov/&quot;&gt;this ssl.com article&lt;/a&gt;.&lt;/p&gt;

&lt;h3 id=&quot;requirements-for-ov-and-iv-certificates-validations&quot;&gt;Requirements for OV and IV Certificates Validations&lt;/h3&gt;

&lt;p&gt;Requirements for both (I’m only listing some here for brevity):&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Identifiable information&lt;/li&gt;
  &lt;li&gt;Physical Address&lt;/li&gt;
  &lt;li&gt;Phone Numbers&lt;/li&gt;
  &lt;li&gt;etc.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Requirements for Individuals:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;A Scan copy of a government-issued photo ID&lt;/li&gt;
  &lt;li&gt;Photo of yourself with your ID&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Requirements for Organizations:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;DUNS number&lt;/li&gt;
  &lt;li&gt;Other records of Organization existence&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;renewing-oviv-certificates&quot;&gt;Renewing OV/IV Certificates&lt;/h3&gt;

&lt;p&gt;New OV/IV certificates will lack reputation, essentially they start over. To
give new certifications reputation you can sign your applications with both the
new certificate and the old one. (Taken from this &lt;a href=&quot;https://stackoverflow.com/a/66582477&quot;&gt;stack over flow answer&lt;/a&gt;).&lt;/p&gt;

&lt;h3 id=&quot;oviv-cost&quot;&gt;OV/IV Cost:&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;Digicert 1 Year - OV w/ DigiCert-Provided Hardware Token: $648.00&lt;/li&gt;
  &lt;li&gt;Entrust 1 Year - OV w/ Entrust-Provided Hardware Token: $299.00&lt;/li&gt;
  &lt;li&gt;GlobalSign 1 Year - OV w/ GlobalSign-Provided Hardware Token: $289&lt;/li&gt;
  &lt;li&gt;SSL.com 1 Year - OV w/ SSL.com-Provided Yubikey: $408&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Again, this is just from a quick glance of the above website. Please see their
sites for real and current pricing.&lt;/p&gt;

&lt;h1 id=&quot;is-there-any-easy-way-like-through-lets-encrypt&quot;&gt;Is there any easy way, like through Let’s Encrypt?&lt;/h1&gt;

&lt;p&gt;&lt;a href=&quot;https://letsencrypt.org/&quot;&gt;Let’s Encrypt&lt;/a&gt; is a non-profit Certificate Authority that allows individuals and
organization to obtain free SSL/TLS certificates. For those not familiar with
Web Development, it’s the easiest way to obtain an SSL/TLS certificates to
enable secure communication over HTTPS. Fun fact, this website is using a
Let’s Encrypt verified SSL certificate!&lt;/p&gt;

&lt;p&gt;However, to quickly answer the header of this section, no, &lt;a href=&quot;https://letsencrypt.org/docs/faq/#will-let-s-encrypt-issue-organization-validation-ov-or-extended-validation-ev-certificates&quot;&gt;Let’s Encrypt does
not provide, or plans to provide, EV certificates&lt;/a&gt;.&lt;/p&gt;

&lt;h1 id=&quot;other-things-ive-found&quot;&gt;Other things I’ve found…&lt;/h1&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://learn.microsoft.com/en-us/dotnet/framework/wcf/feature-details/how-to-create-temporary-certificates-for-use-during-development&quot;&gt;Creating Temporary Certificates for use during development&lt;/a&gt; - Apparently
you can use development certifications, but I think this is mostly for testing,
and for distributing your code as you develop it through an intranet. Those who
use your application during development can probably add the certificate to
a trust store.&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://learn.microsoft.com/en-us/windows/win32/win_cert/windows-certification-portal&quot;&gt;Windows Win32 Certification&lt;/a&gt; - There apparently &lt;em&gt;used&lt;/em&gt; to be a Windows
Certification program, but it now appears deprecated.&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://learn.microsoft.com/en-us/windows/win32/seccrypto/signtool&quot;&gt;Window’s Sign Tools&lt;/a&gt; - I have not included any information on how to
sign an application, but it should be pretty trivial if you have interest in
this page. But it appears on windows you can use the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;SignTool&lt;/code&gt; command
line-tool to do so.&lt;/li&gt;
&lt;/ul&gt;</content><author><name></name></author><category term="Python" /><category term="Arcade" /><category term="Windows" /><category term="SmartScreen" /><category term="Windows Defender" /><summary type="html">Recently, I started writing a small video game usying Python Arcade. In order to distribute it to my friends I started compiling it into a single .DLL using Nuitka. In fact, you can download an early version here.</summary></entry><entry><title type="html">Repost from 2015</title><link href="/Repost-From-2015/" rel="alternate" type="text/html" title="Repost from 2015" /><published>2024-03-23T19:00:00+00:00</published><updated>2024-03-23T19:00:00+00:00</updated><id>/Repost-From-2015</id><content type="html" xml:base="/Repost-From-2015/">&lt;p&gt;This is a post I made on Facebook clear back in 2015. I wrote it a little over 
a year after I had returned to College after dropping out to take a year off of 
school to seek mental health treatment.&lt;/p&gt;

&lt;p&gt;I re-read it recently after perusing through my Facebook photos and wanted to
share it here. I was struck by how well it was written, and, how well it
articulated my feelings at that time.&lt;/p&gt;

&lt;p&gt;The image I posted it with below also sums up how I felt. The panting is Joel Rea’s 
Resolution. A businessman, dressed in proper business attire, suitcase in hand, 
presenting a piece of paper, to a giant wave, crashing on the beach.&lt;/p&gt;

&lt;p&gt;In the past, I’d sometimes have dreams like this. Where the water represented
my emotion This image, and this post, completely encapsulated what I was
feeling at the time. On the outside, I was I appeared as a normal student, but
on the inside I was nervous, anxious, panicky, depressed and had thoughts of
suicide and self harm.&lt;/p&gt;

&lt;p&gt;I’m clear on the other side now, my anxiety and depression are non-existent. I
still have those emotions for sure, but they don’t hold more space than the
other emotions. They play their evolutionary role and that’s it. Anxiety
prompts me to come up with a plan for things I’m worried about and that I can 
control or to identify the things that I can’t control and let go of them.
Depression, not often felt, prompts me to make changes.&lt;/p&gt;

&lt;p&gt;To anyone who is reading this who has had anxiety, depression or any other
mental health struggle, know that there is a path through it and you wont be
fighting it forever. Seek therapeutic help with a therapist you like and trust,
read self-help books, meditate, move away from toxic people, journal, and
exercise and exercise and exercise. It’ll take time, but you’ll chip away at
it slowly, but surely.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Do you ever struggle to find the right words to say? Or are you ever not sure
how to act or respond in a certain situation? Does it ever seem like things pass
you by and you don’t even notice it? Imagine feeling so alienated and alone that
you ignore everything around you. Participating in the things around you, but
somehow your just not there. Your mind is elsewhere, not in some off in some
fairytale of some fantasy, but it’s just not here. It’s not preoccupied, the
present moment is just too much for it to take, so it rests its self elsewhere.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;blockquote&gt;
  &lt;p&gt;That’s how the last few years have been for me. I haven’t been here. I just want
to disappear. I’ve been happy with the things I’ve done, the person I am, where
I’m going and the things I’m doing, but my body and mind feel like they are
elsewhere.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;blockquote&gt;
  &lt;p&gt;It’s funny when you feel some way, or struggle with something like depression or
anxiety and you tell a friend, and they let you know they had no idea that was
happening with you. And I’m not saying that is funny that they weren’t paying
attention, it’s funny that I thought it was a trait everyone could see in me.
It’s funny how something I struggle with every waking day, but is something that
I don’t express outwardly.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;blockquote&gt;
  &lt;p&gt;To all my friends, I wanted to say how sorry I am for not being the best I can
to you over these last few years. Life can throw some nasty curveballs that hit
you right in the gut sometimes. But I wanted to say how much joy each and every
one of you bring to my life just by seeing your face or being in your company
and how much it pains me to be away from anyone of you at any given moment.
Thanksgiving is tomorrow, so I’d figure I’d mention how thankful I am for all of
you.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;img src=&quot;/assets/wallofwater.jpg&quot; alt=&quot;Resolution by Joel Rea&quot; /&gt;&lt;/p&gt;</content><author><name></name></author><category term="Anxiety" /><category term="Depression" /><summary type="html">This is a post I made on Facebook clear back in 2015. I wrote it a little over a year after I had returned to College after dropping out to take a year off of school to seek mental health treatment.</summary></entry><entry><title type="html">Vegan Mac N’ Cheese Recipe</title><link href="/Vegan-Mac-N-Cheese/" rel="alternate" type="text/html" title="Vegan Mac N’ Cheese Recipe" /><published>2024-02-04T19:00:00+00:00</published><updated>2024-02-04T19:00:00+00:00</updated><id>/Vegan-Mac-N-Cheese</id><content type="html" xml:base="/Vegan-Mac-N-Cheese/">&lt;p&gt;This recipe is adapted from &lt;a href=&quot;https://www.ngihca.edu/the-complete-vegan-cookbook&quot;&gt;The Complete Vegan cookbook by the Natural Gourmet
Institute&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The vegan-cheese sauce for this can be used for any number of recipes. Here, I
am using almond milk, you can also make your own oatmilk (which is
significantly faster and easier to make), or you can also probably use any
store bought nut milk.&lt;/p&gt;

&lt;p&gt;If you use almonds you will need to soak them 12-24 hours in advance.&lt;/p&gt;

&lt;h1 id=&quot;ingredients&quot;&gt;Ingredients&lt;/h1&gt;

&lt;ul&gt;
  &lt;li&gt;6 cups almond milk (or make your own, see &lt;em&gt;Prepare the Almond Milk&lt;/em&gt;)&lt;/li&gt;
  &lt;li&gt;1 lbs pasta (Macaroni, bowtie, elbow)&lt;/li&gt;
  &lt;li&gt;1 teaspoon salt&lt;/li&gt;
  &lt;li&gt;1/4 cup and 2 tablespoons of oil - vegtable/canolia, but olive oil works fine too&lt;/li&gt;
  &lt;li&gt;1/4 cup all purpose flour&lt;/li&gt;
  &lt;li&gt;1/4 cup nutritional yeast - add more to taste&lt;/li&gt;
  &lt;li&gt;1/2 teaspoon paprika&lt;/li&gt;
  &lt;li&gt;Ground nutmeg (optional)&lt;/li&gt;
  &lt;li&gt;1 teaspoon garlic powder - add more to taste&lt;/li&gt;
  &lt;li&gt;1/3 cup panko bread crumbs&lt;/li&gt;
&lt;/ul&gt;

&lt;h1 id=&quot;recipe&quot;&gt;Recipe&lt;/h1&gt;

&lt;h2 id=&quot;prepare-the-almond-milk&quot;&gt;Prepare the Almond milk&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;2 Cups Almonds (Optional, see “Prepare the Almond Milk”)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For the homemade almond milk, the almonds will need to be soaked &lt;em&gt;skinless&lt;/em&gt;;
thankfully, removing the skin on the almonds is quite easy.&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;
    &lt;p&gt;Blanch the almonds in a medium pot of water. Bring a medium pot of water to
a rolling boil. Add the almonds and blanch them for no more than 60 seconds.
After 60 seconds, drain the almonds in a colander and wash with cool water.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Once the almonds are cool to the touch, take an almond one at a time, and
pinch the skin between your pointer finger and thumb, doing so will cause the
almond to shoot out of it’s skin. The almonds come out with a lot of force so
you’ll want to aim down into a bowl.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Once all the almonds are skinless, set them in a bowl or Tupperware and
cover with water for 12-24 hours, adding more water if necessary.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;After soaking for 12-24 hours, place the almonds in a blender with 6 cups
of water (you may need to blend in batches). Blend well.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Once blended, strain the almond milk through a nut milk bag and/or a fine
mesh strainer.&lt;/p&gt;
  &lt;/li&gt;
&lt;/ol&gt;

&lt;h2 id=&quot;for-the-vegan-mac-ncheese&quot;&gt;For the Vegan Mac n’Cheese&lt;/h2&gt;

&lt;p&gt;For the vegan cheese sauce, we’ll make a roux with the nut milk and combine
nutritional yeast and garlic powder to get that cheesy taste.&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;
    &lt;p&gt;In a sauce pot, heat up the on low to medium heat add the flour and combine,
keeping the heat low so you don’t burn the roux. Stir the roux until it is a
light blond color.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Then add portions of the almond milk into the roux stirring to incorporate
after each addition of milk. Once all the milk is added continue on low heat
and stir until sauce has thickened enough so that it coats the back of a wooden
spoon.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Once thickened add the salt, pepper, nutritional yeast, paprika and garlic
powder. Add addtional gralic powder, nutritional yeast and salt until you get
your desired ‘cheese’ flavor.  The garlic powder and nutritional yeast really
add to ‘cheese’ flavor.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Preheat the oven to 350º. Cook the pasta in boiling water until al-dente.
Drain and return to pot and remove from heat. Then, combine the cheese sauce
with the pasta and stir to combine and then pour in an oil greeased 9-12 glass
baking dish.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;In another bowl, combine the panko with 2 tablespoons of
oil. Using your hands, mix the oil with the panko. Season the panko with salt
and pepper to your liking.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Sprinkle the panko mixture on top of the mac-n-cheese and then cook in the
over until the cheese is bubble and the panko is golden brown - about 20 to 25
minutes. (You can use the broiler to get the make the panko golden brown if
you’d like, but keep an eye on it as it will burn quick).&lt;/p&gt;
  &lt;/li&gt;
&lt;/ol&gt;</content><author><name></name></author><category term="Food" /><category term="Recipe" /><summary type="html">This recipe is adapted from The Complete Vegan cookbook by the Natural Gourmet Institute.</summary></entry><entry><title type="html">Vegan Carrot and Parsnip Casserole Recipie</title><link href="/Vegan-Root-Casserole/" rel="alternate" type="text/html" title="Vegan Carrot and Parsnip Casserole Recipie" /><published>2024-02-04T19:00:00+00:00</published><updated>2024-02-04T19:00:00+00:00</updated><id>/Vegan-Root-Casserole</id><content type="html" xml:base="/Vegan-Root-Casserole/">&lt;p&gt;This recipe is adapted from &lt;a href=&quot;https://www.ngihca.edu/the-complete-vegan-cookbook&quot;&gt;The Complete Vegan cookbook by the Natural Gourmet
Institute&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Wonderful recipe. The rosemary really brings the dish together, so it’s best
to get fresh rosemary. You can over do it with the rosemary, so just keep it
under 1 Tablespoon.&lt;/p&gt;

&lt;h1 id=&quot;ingredients&quot;&gt;Ingredients&lt;/h1&gt;

&lt;ul&gt;
  &lt;li&gt;2-3 large carrots - Diced small&lt;/li&gt;
  &lt;li&gt;1-2 large parsnips - Diced small&lt;/li&gt;
  &lt;li&gt;Olive oil&lt;/li&gt;
  &lt;li&gt;1 Large yellow onion - Diced well&lt;/li&gt;
  &lt;li&gt;3-5 cloves garlic (depending on your preference)&lt;/li&gt;
  &lt;li&gt;4 roma tomatoes (or can of diced tomatoes) - Diced small&lt;/li&gt;
  &lt;li&gt;1.5 cups vegetable stock&lt;/li&gt;
  &lt;li&gt;1/2 tablespoon or so fresh rosemary - minced&lt;/li&gt;
  &lt;li&gt;1 15 oz can of great northern beans&lt;/li&gt;
  &lt;li&gt;3/4 cup panko bread crumbs&lt;/li&gt;
  &lt;li&gt;Fresh thyme and fresh parsley - diced (optional)&lt;/li&gt;
&lt;/ul&gt;

&lt;h1 id=&quot;recipe&quot;&gt;Recipe&lt;/h1&gt;

&lt;ol&gt;
  &lt;li&gt;
    &lt;p&gt;Toss the carrots and parsnips in oil, salt and pepper. Then bake the carrots
and parsnips at 400ºF for 15-20 minutes until lightly browned.
Stirring/flipping the diced root veggies once.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Once the roots are done, set the oven to 375º.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;While the root veggies cook, heat 1 tablespoon of olive oil in a large deep
pan (Cast iron pan works great). Add the onion and saute until translucence and
just about to brown. Add the garlic and cook until fragrant, about 30 seconds.
Then add the tomatoes, stock, and rosemary. Bring to a boil and reduce heat to
low and simmer uncovered for 10 minutes.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Stir in beans and simmer uncovered for another 5 minutes. If you have a lot
of liquid you can simmer or boil for longer, but leave some liquid in, it will
evaporate off in the oven.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;In a another small bowl, combine the panko, parsley, thyme, and 2
tablespoons of olive oil. Additionally add a pinch of salt and pepper. Using
your fingertips, combine the breadcrumb mixture (rubbing your fingertips
together).&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;In a 8x8-inch baking dish, combine the root veggies and onion mixture and
sprinkle the panko mixture on top. Cook at 375ºF until the bread crumbs are
golden-brown, about 25 minutes. You can also use the boiler to brown the bread
crumbs, but they can burn quickly so keep an eye on them.&lt;/p&gt;
  &lt;/li&gt;
&lt;/ol&gt;</content><author><name></name></author><category term="Food" /><category term="Recipe" /><summary type="html">This recipe is adapted from The Complete Vegan cookbook by the Natural Gourmet Institute.</summary></entry><entry><title type="html">Green Lentil Soup</title><link href="/Green-Lentil-Soup/" rel="alternate" type="text/html" title="Green Lentil Soup" /><published>2024-01-01T19:00:00+00:00</published><updated>2024-01-01T19:00:00+00:00</updated><id>/Green-Lentil-Soup</id><content type="html" xml:base="/Green-Lentil-Soup/">&lt;p&gt;Here is my recipe for Green Lentil Soup. I just eyeball it so I’ve left some
amounts off. As you make the soup, just taste the soup liquid as you go and add
salt, black pepper, or stock to adjust the taste (Add plain water to if you
have over salted).&lt;/p&gt;

&lt;p&gt;This recipe would also be good with some Great Northern Beans. Likewise, you
can add whatever extra vegetables in place of carrots and potatoes as you see
fit. It also might benefit with some fresh thyme and/or fresh sage.&lt;/p&gt;

&lt;h1 id=&quot;ingredients&quot;&gt;Ingredients&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;For the Mirapoix&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;2 Carrots - Diced small&lt;/li&gt;
  &lt;li&gt;4-5 Celery Stocks - Diced Small&lt;/li&gt;
  &lt;li&gt;1 White Onions - Diced Small&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For the mirapoix I aim for equal parts carrot, celery and onion, but it really
doesn’t matter to much.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;For the Lentil Soup&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;2-3 Carrots - Cut into bit size pieces - 1/2 inch&lt;/li&gt;
  &lt;li&gt;2-3 Golden/Yellow Potatoes - Cut into quarters or 1/2 inch pieces&lt;/li&gt;
  &lt;li&gt;1-2 Cups - Green Lentils - Washed thoroughly with water until water runs clear&lt;/li&gt;
  &lt;li&gt;Vegetable or Chicken Stock&lt;/li&gt;
  &lt;li&gt;1-2 cans of Crushed Tomatoes or Tomato Paste/Diced Tomatoes&lt;/li&gt;
  &lt;li&gt;Splash White Wine Vinegar&lt;/li&gt;
  &lt;li&gt;Fresh Parsley to taste&lt;/li&gt;
  &lt;li&gt;1 Bay Leaf&lt;/li&gt;
&lt;/ul&gt;

&lt;h1 id=&quot;recipe&quot;&gt;Recipe&lt;/h1&gt;

&lt;h2 id=&quot;for-the-mirapoix&quot;&gt;For the Mirapoix&lt;/h2&gt;

&lt;ol&gt;
  &lt;li&gt;
    &lt;p&gt;In a soup pot heat up ~1 Tbsp of Olive Oil until warm on medium heat. Add the
carrots, celery and onion and sauté on medium. Add a pinch of salt to the
mirapoix to help the vegetables release their water. Sautue until onion and
celery is translucent and the all vegetables are soft.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;(Optional if preparing the Mirapoix ahead of time) Once the onion and celery
are translucent and all the carrots are soft transfer the mirapoix into an
airtight container and store in the refrigerator for 3-4 days or in the
freezer.&lt;/p&gt;
  &lt;/li&gt;
&lt;/ol&gt;

&lt;h2 id=&quot;for-the-soup&quot;&gt;For the Soup&lt;/h2&gt;

&lt;ol&gt;
  &lt;li&gt;
    &lt;p&gt;With the mirapoix in the soup pot and the heat off add the washed lentils,
carrots, potatoes and bay leaf. Then, add enough stock to cover the lentils and
vegetables (About a half-inch to an inch above the vegtables). If using
bouillon cubes or bouillon concentrate, add water and then add the bouillon
until the water is salty and taste like good soup. Add the bay leaf and pepper
to taste.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Turn heat on high and bring to a boil. Once at a boil, reduce the heat to
a simmer and simmer until the lentils and the vegetables are the desired
texture about 30-45 minutes, stirring occasionally. While simmering add
additional stock/water if the level drops too low.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Once the lentils and the vegetables are at the desired texture, add the
crushed tomato/tomato paste/diced tomatoes and a splash of white wine vinegar.
Doing so will prevent the lentils from cooking down further as the acid
strengthens the pectin in the lentil’s cell wall slowing their water
absorption.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;With the tomatoes and vinegar with the lentils, simmer for an additional 5-10
mins to ensure the flavors are well mixed.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Optional - To provide a little bit more texture in the dish blend 1/4-1/2 of
the lentils (and some vegetables if you want) in a blender and pour back into
the dish.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Finally, add the fresh chopped parsley to taste, stir and serve!&lt;/p&gt;
  &lt;/li&gt;
&lt;/ol&gt;</content><author><name></name></author><summary type="html">Here is my recipe for Green Lentil Soup. I just eyeball it so I’ve left some amounts off. As you make the soup, just taste the soup liquid as you go and add salt, black pepper, or stock to adjust the taste (Add plain water to if you have over salted).</summary></entry><entry><title type="html">Pacific North West Recommendations</title><link href="/PNW-Recs/" rel="alternate" type="text/html" title="Pacific North West Recommendations" /><published>2023-07-30T23:23:00+00:00</published><updated>2023-07-30T23:23:00+00:00</updated><id>/PNW-Recs</id><content type="html" xml:base="/PNW-Recs/">&lt;ul id=&quot;markdown-toc&quot;&gt;
  &lt;li&gt;&lt;a href=&quot;#portland-and-surrounding-areas&quot; id=&quot;markdown-toc-portland-and-surrounding-areas&quot;&gt;Portland and Surrounding Areas&lt;/a&gt;    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;#portland-proper&quot; id=&quot;markdown-toc-portland-proper&quot;&gt;Portland Proper&lt;/a&gt;        &lt;ul&gt;
          &lt;li&gt;&lt;a href=&quot;#downtown--west-of-the-river&quot; id=&quot;markdown-toc-downtown--west-of-the-river&quot;&gt;Downtown / West of the river&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href=&quot;#east-side-of-the-river&quot; id=&quot;markdown-toc-east-side-of-the-river&quot;&gt;East Side of the River&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#surrounding-areas&quot; id=&quot;markdown-toc-surrounding-areas&quot;&gt;Surrounding Areas&lt;/a&gt;        &lt;ul&gt;
          &lt;li&gt;&lt;a href=&quot;#the-gorge--multanoma-falls&quot; id=&quot;markdown-toc-the-gorge--multanoma-falls&quot;&gt;The Gorge &amp;amp; Multanoma Falls&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href=&quot;#mount-hood-area&quot; id=&quot;markdown-toc-mount-hood-area&quot;&gt;Mount Hood Area&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href=&quot;#the-coast&quot; id=&quot;markdown-toc-the-coast&quot;&gt;The Coast&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#oregon-wine-county---sw-of-portland&quot; id=&quot;markdown-toc-oregon-wine-county---sw-of-portland&quot;&gt;Oregon Wine County - SW of Portland&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;h1 id=&quot;portland-and-surrounding-areas&quot;&gt;Portland and Surrounding Areas&lt;/h1&gt;

&lt;h2 id=&quot;portland-proper&quot;&gt;Portland Proper&lt;/h2&gt;

&lt;h3 id=&quot;downtown--west-of-the-river&quot;&gt;Downtown / West of the river&lt;/h3&gt;

&lt;p&gt;Downtown has changed since the Pandemic. It’s not as active as it once was, but
it’s still worth a visit.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://maps.app.goo.gl/ZRcfaRPr5TniHG7X8&quot;&gt;Forrest Park&lt;/a&gt; - Huge, beautiful park near the city.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Lots of great walking and running trails all under beautiful huge Oregon trees.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://maps.app.goo.gl/LmgXs3r5KvPvSGHB7&quot;&gt;Powell’s City of Books&lt;/a&gt; - Giant Book Store Downtown&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Books! Lots and lots of Books!! They’ve got like 10 huge rooms of books. Pretty
much mandatory that you go! How could you not?&lt;/p&gt;

&lt;p&gt;I recommend getting coffee at &lt;a href=&quot;https://goo.gl/maps/wafF514zCN1ZrJVw5&quot;&gt;Courier Coffee&lt;/a&gt; and then heading
into Powell’s.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://goo.gl/maps/wafF514zCN1ZrJVw5&quot;&gt;Courier Coffee&lt;/a&gt; - Quaint Coffee Shop Near Powell’s&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;My favorite coffee shop ever and right next to Powell’s. Cool staff and just a
cool vibe, though there isn’t much seating space. Go here first then into
&lt;a href=&quot;https://maps.app.goo.gl/LmgXs3r5KvPvSGHB7&quot;&gt;Powell’s&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;2025 UPDATE:&lt;/em&gt; They now sell Japanese food! Really, wonderful Miso soup and
hand rolls!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://goo.gl/maps/azDtsM5xzioLuQaD9&quot;&gt;Food Trucks at Washington and 3rd&lt;/a&gt; - Great variety of food trucks!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://maps.app.goo.gl/7mAdc3Hpc85z2ot68&quot;&gt;Washington Park&lt;/a&gt; - Nice little park&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Great place for a run, by the west side of the city. Great views, big trees,
lots of trails for easy hiking. Also check out the [rose garden][Rose Garden],
&lt;a href=&quot;https://maps.app.goo.gl/Q9kqUbk73aJzdcBE7&quot;&gt;Japanese Garden&lt;/a&gt; and &lt;a href=&quot;https://maps.app.goo.gl/EHJcorBikCnuFBbF8&quot;&gt;Oregon Zoo&lt;/a&gt; here too.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[Rose Garden] - See Washington Park&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://maps.app.goo.gl/Q9kqUbk73aJzdcBE7&quot;&gt;Japanese Garden&lt;/a&gt; - “Most beautiful and authentic Japanese
  Garden outside of Japan”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Beautiful Japanese garden. Really worth a visit. You can get tea too, but you
have to get a reservation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://maps.app.goo.gl/EHJcorBikCnuFBbF8&quot;&gt;Oregon Zoo&lt;/a&gt; - Can’t beat the Zoo!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;McMenamins (any of them) - Oregon/Washington Retaurant/Brewery Chain&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;McMenamins are all around the Pacific Northwest with 56 locations of pubs,
restaurants hotels and breweries. The food is reliably good and the beer is
pretty unique.&lt;/p&gt;

&lt;p&gt;They have some quirky places that they have turned into restaurants. I
recommend going to the Kennedy School as it’s probably the most unique in
Portland (see [East Side of the River][#east-side-of-the-river]).&lt;/p&gt;

&lt;p&gt;They often brew beers that have the same gravity (alcohol %) so you can mix
beers together!&lt;/p&gt;

&lt;p&gt;My Favorite Beers:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;The Ruby - Unique fruity beer&lt;/li&gt;
  &lt;li&gt;The Terminator Stout - Solid Stout&lt;/li&gt;
  &lt;li&gt;The Rubynator - Half Ruby, Half Terminator Stout&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There is always one somewhere nearby, just take a look at all their locations
in the Portland area: https://maps.app.goo.gl/hUHBFKDHJrvSTKZp9.&lt;/p&gt;

&lt;h3 id=&quot;east-side-of-the-river&quot;&gt;East Side of the River&lt;/h3&gt;

&lt;p&gt;The East Side of Portland has perhaps a bit more life then downtown. My
favorite part about Downtown is that there are all these different
neighborhoods with a life of their own. No matter where you are in Portland,
there is normally bars and restaurant near you.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://goo.gl/maps/55SV1uZm3rX1Ec2g8&quot;&gt;Mt Tabor&lt;/a&gt; - Popular Butte to watch the sunset&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Easy to ‘hike’ butte on the east side with beautiful views of Mount Hood and
Portland. Popular spot to watch the sunset in the summer.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://goo.gl/maps/c5tcpFssNvhb6sLb9&quot;&gt;McMenamins Kennedy School&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Literally a school that they turned into a bar.  Walk around the lockers,
into the boiler room and grab a beer!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://maps.app.goo.gl/C1bw4mHjvWEkQxq2A&quot;&gt;Mississippi Ave&lt;/a&gt; - Nice, fun Neighborhood on the East Side&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Got some good Restaurants, coffee shops and bars. Watch a show at Mississippi
Studios.&lt;/p&gt;

&lt;h2 id=&quot;surrounding-areas&quot;&gt;Surrounding Areas&lt;/h2&gt;

&lt;h3 id=&quot;the-gorge--multanoma-falls&quot;&gt;The Gorge &amp;amp; Multanoma Falls&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Columbia River Gorge - East along the Columbia River&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Beautiful river and driving!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://maps.app.goo.gl/1X25KrhUnfYrC8sy7&quot;&gt;Multanoma Falls&lt;/a&gt; - Beautiful and Famous Water Fall&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Beautiful Waterfall in the Gorge, you’ve probably seen photos. Nice hiking!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://maps.app.goo.gl/oCR7or4pbKz6vWWj7&quot;&gt;Vista House&lt;/a&gt; - Viewpoint in the Gorge&lt;/strong&gt;&lt;/p&gt;

&lt;h3 id=&quot;mount-hood-area&quot;&gt;Mount Hood Area&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://maps.app.goo.gl/FeWsAWvDDYZ3fW2y9&quot;&gt;Timberline Lodge&lt;/a&gt; - Famous Lodge on Mt Hood&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Great place to go Ski, of course, but if you’re in the area it can be fun to go
visit. They do have skiing all year round due to the glacier.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://maps.app.goo.gl/7Mo3CVTj9MRHM9Vs9&quot;&gt;Government Camp&lt;/a&gt; - Mountain Town with
Bars/Restaurants/Breweries&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you’re in the area this is a great place to get lunch or a beer!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://maps.app.goo.gl/9vE8EJ8jASTY73eSA&quot;&gt;Mt Hood Ski Bowl&lt;/a&gt; - Ski Resort in Winter - Biking/activities in Summer&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Fun little ski area with great night skiing. In the summer they have downhill
mountain biking and loads of fun activities: Go Karts, Disc Golf, Mini Golf,
and one of those Alpine Slides.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://skibowl.com/&quot;&gt;Ski Bowl’s Website&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://goo.gl/maps/xpmdbuui6V8VyUvW8&quot;&gt;Old Salmon River Trail&lt;/a&gt; - Beautiful and easy Hike near Mt Hood
  Village.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://goo.gl/maps/iXia5RraDHQh99YWA&quot;&gt;Trillium Lake&lt;/a&gt; - Beatiful Warm Mountain Lake&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Pretty busy, but a beautiful, warm mountain lake with amazing views of Mount
Hood. I heard they started to charge for parking…&lt;/p&gt;

&lt;h3 id=&quot;the-coast&quot;&gt;The Coast&lt;/h3&gt;

&lt;p&gt;I haven’t been to the coast much around Portland in a long time, but anywhere
on the Oregon Coast is beautiful. In my opinion the coast is the prettiest part
of Oregon, and often forgotten.&lt;/p&gt;

&lt;p&gt;If I had to choose where to go out of these places I’d choose Astoria, it
really has some wonderful charm and I’d like to explore it more.&lt;/p&gt;

&lt;p&gt;There are also plenty of places on the coast that have tidal pools. Lots of fun
to go explore when the tide goes out (but I’m not sure of any specific parts,
google or locals might have some good intel).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://maps.app.goo.gl/NfNK3L5NYaBXHZZ57&quot;&gt;Astoria&lt;/a&gt; - Where they filmed the Goonies&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Astoria has a really unique charm that I really love. Perhaps this charm comes
from the Goonies, but I love how the houses look and the town feels.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://maps.app.goo.gl/doznffk9HohhT5xY7&quot;&gt;Seaside&lt;/a&gt; - Popular Coastal Resort Town&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A popular resort town. Loads of little tourist traps to do downtown (including
an arcade). The beach is nice and there are some fun things to do.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://maps.app.goo.gl/PvaAHRfBQ7z4T7TX8&quot;&gt;Cannon Beach&lt;/a&gt; - Where Haystack Rock is&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You’ve probably seen photos of Haystack Rock. I haven’t been here in ages, so I
don’t remember much, but it’s worth noting!&lt;/p&gt;

&lt;h2 id=&quot;oregon-wine-county---sw-of-portland&quot;&gt;&lt;a href=&quot;https://maps.app.goo.gl/dk3DVA95tdtQWkvaA&quot;&gt;Oregon Wine County&lt;/a&gt; - SW of Portland&lt;/h2&gt;

&lt;p&gt;Fan of wine? Well, Oregon has some of the best wine in the World, in my
opinion. There are tons of wonderful wineries in near Dundee.&lt;/p&gt;

&lt;p&gt;Try the Pinot Noir, I have been told that the Willamette Valley Soil is perfect
for growing Pinot Noir wines.&lt;/p&gt;</content><author><name></name></author><category term="PNW" /><category term="Portland" /><category term="Oregon" /></entry><entry><title type="html">Stuck</title><link href="/Stuck/" rel="alternate" type="text/html" title="Stuck" /><published>2023-07-18T23:23:00+00:00</published><updated>2023-07-18T23:23:00+00:00</updated><id>/Stuck</id><content type="html" xml:base="/Stuck/">&lt;p&gt;“We live in a world illuminated by the sun and the moon; if you poke your head
down a well, don’t complain that you’re in the dark.” - Rumi&lt;/p&gt;

&lt;p&gt;I wrote it over ten years ago, and when I first re-read it I knew it was a lie.&lt;/p&gt;

&lt;p&gt;When I wrote it at the time, I didn’t actually &lt;em&gt;know&lt;/em&gt; that it was a lie, but I
could feel &lt;em&gt;it&lt;/em&gt;. I was too young, too dependent on my parents, too naive to
comprehend the extent of the &lt;em&gt;it&lt;/em&gt;, the lie, but deep down my body knew.&lt;/p&gt;

&lt;p&gt;I wrote it as a journal entry on a summer bike tour when I was seventeen.
Starting in St. Louis Missouri and ending in Seaside Oregon I joined a teacher
and three other students on some 3,500 miles and roughly 50 days following
roughly the same route as the Lewis and Clark expedition.&lt;/p&gt;

&lt;p&gt;Following a map produced by Adventure Cycling (Non-profit tour cycling map
creator) the trail follows mostly on unpaved, less-traffic routes that mostly
follow the path of Lewis and Clark, with a few unpaved sections to make things
interesting.&lt;/p&gt;

&lt;p&gt;The trail was wonderful and beautiful, from Saint Louis, the trail cuts west to
Kansas City and then follows the Missouri river north into states such as
Kansas, Nebraska, Iowa, South Dakota and North Dakota, and then cuts west over
Montana. After crossing Montana and the Continental Divide, the trail follows
various rivers until it reaches the Oregon Coast.&lt;/p&gt;

&lt;p&gt;We got to experience the country in few ways people do. Slow and steady.
Watching the scenery change from rolling hills of corn, to great expansive
grass planes, to the continental divide to our forested home in Oregon.&lt;/p&gt;

&lt;p&gt;We learned about Lewis and Clark almost the whole way, but the trip was mostly
for the experience. The greatest pieces of learning came from the graciousness
of strangers, and realizing how simple life could be.&lt;/p&gt;

&lt;p&gt;We were at least thirty days into the trip when I wrote that particularly
entry. My family, my grandparents, my mother, and my mom’s partner joined us.
As avid bike riders, my mom and partner, Robert, joined us for a few days of
riding.&lt;/p&gt;

&lt;p&gt;For everyday of the trip, we posted a blog entry to a popular bike tour blog
site to keep our parents (and a lot of other interested teachers, students,
family and friends) involved. Depending on the day, we rotated who wrote the
entry, favoring some people if they had experienced something that day that was
worth sharing.&lt;/p&gt;

&lt;p&gt;For both the days that my family joined us, it made sense for me to write the
journal entries for both days.&lt;/p&gt;

&lt;p&gt;More than ten years on, I still distinctly remember the campsite where I wrote
the entry.&lt;/p&gt;

&lt;p&gt;We had crossed over the divide at that point and we were starting to enter into
the rain part of the rain shadow. It was one of the first campsites that
reminded me of the forested back home in Oregon.&lt;/p&gt;

&lt;p&gt;The camp ground road curved a large egg shape circle forming a large open oval
with shaded grass field and a bathroom at one end. On the other side of the
road were the tent and RV sites. The edges were packed full of leaf filled
summer treas. So much so that little of the direct afternoon sun penetrated all
the way to the ground, instead it created that soft, green-yellow glow of
chlorophyll filtered sun light.&lt;/p&gt;

&lt;p&gt;Riding or hiking for such long stretches of time effects the body and mind tend
to let go of anxiety, tensions and worry from everyday life ‘back home’.&lt;/p&gt;

&lt;p&gt;Riding or hiking for such long stretches of time has a strange, wonderful
effect on the body and mind. Free from the stressful daily routines,
relationships, homework and out more ‘in nature’, the mind and body feels like
they reset. Life becomes simple. Wake up with the sun, go to bed with it. Eat
food, ride bike, take shit, take shower (if you can find one). Filled on the
endorphins of constant moving, the body and mind feel light and free.&lt;/p&gt;

&lt;p&gt;By day four I had felt such a change. My mind and body felt light and the
anxieties and depression I had had been replaced by the serene feeling of
freedom and contentment. Life was simple and filled with wonderful, fun
surprises.&lt;/p&gt;

&lt;p&gt;As avid bike riders, my mother and Robert joined us for those two days and
consequently, my feelings started to change. Riding with my mother. I
immediately sensed the change. My body felt tight and constricted and my voice
felt like it was hidden in the bottom of my stomach; I become quiet.  She
wasn’t outwardly mean, or rude, but her prescience extinguished my feelings of
freedom. I was back at home, and it was back, but I didn’t know what.&lt;/p&gt;

&lt;p&gt;That night I wrote that I was happy my family was joining with me and that I
had missed them. But this wasn’t true. Apart of me dreaded her presences and
the constricted feeling I was having. A feeling that was all too familiar back
home.&lt;/p&gt;

&lt;p&gt;I have always looked back on the moment as an indicator that something about my
relationship with my mother was off. Shouldn’t I have been filled with her
presence? Shouldn’t we have talked non-stop about my encounters rather than
having our conversation be short and me being quiet? Shouldn’t I have missed
her and been excited to see her?&lt;/p&gt;

&lt;p&gt;In our relationship, for me, there was just no bond. No joyful bond at least.
Just the “I’m you’re son and your my mom” bond.&lt;/p&gt;

&lt;p&gt;It was, and is, a relationship with no intimacy, no vulnerability, and no
sharing of joy and delight with almost constant strife. My experiences,
thoughts, emotions, problems and issues did not have any space to be brought up
and discussed. My lack of progression in sports, my struggles in school, my
struggles with relationships, or anything that interested me shared no space in
our relationship. Instead, our conversations were dominated by my mother’s
anxieties and uncontrolled emotions. I had learned early that it was best to
just avoid any deep conversations, as any perceived criticisms would result in
no actions and criticisms returned onto me. I was always quiet around her.&lt;/p&gt;

&lt;p&gt;She wasn’t alone in this as my dad shared the same lack of interest in getting
to know and understand my internal world. All of my conversations with my
parents were pale, awkward and short. I was quiet and shy, but my parents never
probed. Tangents were never followed and they seemed fine with the one word
responses I gave them. They never asked why I was so quiet.&lt;/p&gt;

&lt;p&gt;Both of them could not take any sort of criticisms or responsibility for a
wrong deed towards me. Any criticism was met with either a dismissal (“Oh
that’s not true, I’m a great father.”, “Oh I do listen”) or taken as an
emotional betrayal and a personal attack (“You should be grateful you have it
so good!”). There were never any apologies and efforts to change.&lt;/p&gt;

&lt;p&gt;I felt like a young kid struggling to breath in a swimming pool all while being
told that I should be grateful for the fact that I had the opportunity to go to
the pool. I was both trapped and frustrated, but had no way to communicate it.&lt;/p&gt;

&lt;p&gt;But my parents &lt;em&gt;did&lt;/em&gt; loved me (and do) and were proud of me (and still are) and
both worked hard in their own ways to provide for me and my brother. We always
had great food and baked goods from my mother and plenty of money from my dad.&lt;/p&gt;

&lt;p&gt;I could (and can) see that they loved me, but I can never remember a time that
I &lt;em&gt;felt it&lt;/em&gt;. The only attention I received by them when I was in trouble or if my
grades were failing. I never remember them telling me that they were proud of
me despite a lot of achievement.&lt;/p&gt;

&lt;p&gt;And this was &lt;em&gt;it&lt;/em&gt;, I knew that no matter what my mother wouldn’t try and uncover
the deeper, vulnerable parts of myself that I wanted and needed to share.&lt;/p&gt;

&lt;p&gt;By the time I left high school and entered collage at 18, I felt like an ugly,
unattractive, not very inserting or unique kid. I had little hobbies and never
felt like competent at them. I was a virgin, couldn’t hold down a relationship
and struggled to even maintain friendships that I wanted and had kissed maybe
two girls. I was depressed and hated most of who I was.&lt;/p&gt;

&lt;p&gt;The worst part of it was the self blame, but even worse, was the single
thought that I was stuck. That I was an unattractive, ugly, uninteresting
failure of a kid and that I was stuck.&lt;/p&gt;</content><author><name></name></author><category term="Parents" /><category term="Mental Health" /><summary type="html">“We live in a world illuminated by the sun and the moon; if you poke your head down a well, don’t complain that you’re in the dark.” - Rumi</summary></entry><entry><title type="html">Miles’ Sourdough Starter Creation and Feeding</title><link href="/Miles-Sourdough-Starter/" rel="alternate" type="text/html" title="Miles’ Sourdough Starter Creation and Feeding" /><published>2022-04-14T14:53:00+00:00</published><updated>2022-04-14T14:53:00+00:00</updated><id>/Miles-Sourdough-Starter</id><content type="html" xml:base="/Miles-Sourdough-Starter/">&lt;h1 id=&quot;introduction&quot;&gt;Introduction&lt;/h1&gt;

&lt;p&gt;This blog post is how I create and then feed my starter.&lt;/p&gt;

&lt;h1 id=&quot;creating-a-sourdough-starter&quot;&gt;Creating a sourdough starter&lt;/h1&gt;

&lt;p&gt;Creating a sourdough starter is super easy. I’ve done it a number of times as
I’ve killed my starter a few times. So don’t be afraid!&lt;/p&gt;

&lt;p&gt;In the past, I’ve used &lt;a href=&quot;https://www.kingarthurbaking.com/recipes/sourdough-starter-recipe&quot;&gt;this King Arthur blog
post&lt;/a&gt; on how
to create my starter learned how to make my starter, but I’ll transcribe the
steps I use below.&lt;/p&gt;

&lt;p&gt;The article above says that it will take 5 days to get your starter up to
strength, but I’ve been able to get it ready in 3-4, but your results may very!&lt;/p&gt;

&lt;h2 id=&quot;recipe&quot;&gt;Recipe&lt;/h2&gt;

&lt;ol&gt;
  &lt;li&gt;
    &lt;p&gt;&lt;strong&gt;Day 1&lt;/strong&gt; - Combine equal parts water and flour, 100 g of each. The combined
mixture should weight 200 g. Place in a covered container where the starter
will have room to grow and expand and let sit for 24 hours at room temperature.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;&lt;strong&gt;Day 2&lt;/strong&gt; - After 24 hours, you may or may not see any expansion or bubbles
in your starter. Regardless, discard half of your starter (100 g). And again
add equal parts water and flour 100 g each.&lt;/p&gt;
  &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Again, place in a covered container where the starter will have room to grow
and expand and again let sit for 24 hours at room temperature.&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;&lt;strong&gt;Day 3&lt;/strong&gt; - You should start to see your sourdough start to become active.
It will have expanded and you’ll see bubbles and it might have an aroma. At
this point the aroma may smell a little alcoholic, that’s totally normal at
this point (also see &lt;strong&gt;note on aroma&lt;/strong&gt; below).&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;With the starter active, you can switch to the normal feeding schedule which is
listed below.&lt;/p&gt;

&lt;h1 id=&quot;feeding-your-starter&quot;&gt;Feeding your starter&lt;/h1&gt;

&lt;p&gt;Once you have an active starter, you’ll need to feed it. There will be two
reasons you feed your starter, the first to keep it alive and the second is to
prepare for baking with it. These feedings use the same ratios of ingredients,
but I’ve broken them up into two separate sections for simplicity.&lt;/p&gt;

&lt;h2 id=&quot;regular-feeding---keeping-your-starter-going&quot;&gt;Regular Feeding - Keeping your starter going&lt;/h2&gt;

&lt;p&gt;The frequency at which you feed your starter depends on the temperature that it
is stored at. If it is stored at room temperature, I recommend you feed it once
per day. I have been able to feed a starter once every two days, but any longer
than that is pushing it!&lt;/p&gt;

&lt;p&gt;If you’re storing the starter in the fridgerator you can feed it once per
month.&lt;/p&gt;

&lt;h3 id=&quot;ingrediants&quot;&gt;Ingrediants&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;25g sourdough starter&lt;/li&gt;
  &lt;li&gt;25g whole wheat flour&lt;/li&gt;
  &lt;li&gt;100g all purpose flour&lt;/li&gt;
  &lt;li&gt;100g water @ 85°F-90°F (29°C-32°C) - (Just ensure the water is not too cold or
not to hot.)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;recipie&quot;&gt;Recipie&lt;/h3&gt;

&lt;ol&gt;
  &lt;li&gt;
    &lt;p&gt;If your sourdough is stored in the fridgerator, take it out 30-60 mins
before you feed it and allow it to come up to room temperature. If your
sourdough has seperated, stir it before feeding.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;From your previous feeding, discard all but 25g of sourdough starter. This
may seem like a little, but it’s all you need!&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Combine the 25g of starter with 25g whole wheat, 100g all purpose flour and
100g water. Ensure you scrape all of the flour/starter on the bottom of your
container.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Cover your starter at room temperature or in the fridgerator in a container
where it will have room to expand. If you’re storing your starter at room
temperature it will be ready for another feeding at 12 hours. It should be at
least doubled its sized at that point and the aroma should smell sweet,
fregrent and sour.&lt;/p&gt;
  &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Note on aroma&lt;/strong&gt; - smelling alcohol in your starter is pretty normal. I’ve
found that starter feeding where there are higher hydrations cause a more
alcohoic smell. This feeding scheduler is ~80% hydration.&lt;/p&gt;

&lt;h2 id=&quot;preparing-for-baking-feeding&quot;&gt;Preparing For Baking Feeding&lt;/h2&gt;

&lt;p&gt;The feeding schedule above will not give you enough starter to use in recipies,
so this section has the amounts needed to give you enough.&lt;/p&gt;

&lt;p&gt;Before you bake, follow this feeding 24-12 hours before you bake. That way
you’ll have enough active and happy starter for your recipie! If your starter
has been in the fridge and hasn’t been fed in a while, I recommend feeding it
acording to the schedule above two days before to get it active before this big
feed.&lt;/p&gt;

&lt;p&gt;Again, these amounts are just is just 4x the amount of the one above, so you
can use whatever amounts you want, as long as the ratio is the same (actually
you can do other ratios, but this is what I use, see notes).&lt;/p&gt;

&lt;h3 id=&quot;ingrediants-1&quot;&gt;Ingrediants&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;100g starter&lt;/li&gt;
  &lt;li&gt;100g wholewheat&lt;/li&gt;
  &lt;li&gt;200g all purpose flour&lt;/li&gt;
  &lt;li&gt;200g water @ 85°F-90°F (29°C-32°C) - (Just ensure the water is not too cold or
not to hot.)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;recipie-1&quot;&gt;Recipie&lt;/h3&gt;

&lt;ol&gt;
  &lt;li&gt;Discard all but 100g of your active starter (If you have between 50-100g
you should be fine). Combine the 100g whole wheat, 200g all purpose flour and
200g of water, ensuring that you mix in all of the flour and starter. Let sit
for 12 hours and use for baking.&lt;/li&gt;
&lt;/ol&gt;

&lt;h1 id=&quot;other-notestips&quot;&gt;Other notes/tips&lt;/h1&gt;

&lt;ul&gt;
  &lt;li&gt;The sourdough discard can be a lot to throw away, but there are a lot of
great recipies on there where you can use it for yummy treats!&lt;/li&gt;
  &lt;li&gt;When starter hasn’t been fed in a while and is in the fridge, it can seperate
and there can have a dark liquid. If it does, its still can be good. Just stir
it feed it and see if it becomes active again.&lt;/li&gt;
  &lt;li&gt;Anything that looks like regualr mold (the mold that you see on normal&lt;/li&gt;
  &lt;li&gt;food) means your starter is gone and should you create another one. Don’t
even attempt to salvage it! Make sure you clean out your container too.&lt;/li&gt;
  &lt;li&gt;I don’t always clean my container between feedings. It can be a good way to
get some extra starter if you are low, but do clean it everyonce in a while.&lt;/li&gt;
  &lt;li&gt;There are a lot of different feeding hydrations/ratios you can use. This is
just the one I’ve used (I haven’t tried anything different). There can even do
a liquid starter, where there is more water than flour, but I haven’t tried
this!&lt;/li&gt;
  &lt;li&gt;Have fun!!&lt;/li&gt;
&lt;/ul&gt;</content><author><name></name></author><category term="Food" /><category term="Bread" /><summary type="html">Introduction</summary></entry><entry><title type="html">Weather Resources</title><link href="/Weather-Resources/" rel="alternate" type="text/html" title="Weather Resources" /><published>2021-10-08T13:30:00+00:00</published><updated>2021-10-08T13:30:00+00:00</updated><id>/Weather-Resources</id><content type="html" xml:base="/Weather-Resources/">&lt;ul&gt;
  &lt;li&gt;Weather Forecasting
    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;https://forecast.weather.gov/MapClick.php?site=BOU&amp;amp;textField1=40.0269&amp;amp;textField2=-105.251&amp;amp;e=1#.YRl0kd9MFhF&quot;&gt;NWS 7 Day Forecast&lt;/a&gt; - The best forecasts produced anywhere. The
national weather service staffs 24/7/365 and produce forecasts using the
output of almost every avaliable forecast model.  This is different than
any private forecast company, which does not nearly have as much staff.&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;https://www.spc.noaa.gov/&quot;&gt;NOAA Storm Prediction Center&lt;/a&gt; - Pretty much everything you need under
one roof especially for mesoscale convective systems (Thunderstorms,
severe thunderstorms, and tornadoes) throughout the country, but
especially in the central US. Also includes fire risks and other hazards.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;Air Quality, Smoke and Fire
    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;https://www.airnow.gov/&quot;&gt;AirNow.gov&lt;/a&gt; - Basic Government created report of air quality.&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;https://gispub.epa.gov/airnow/&quot;&gt;AirNow.gov Interactive Map&lt;/a&gt; - Current and forecasted map of air quality.
  Great resource for Ozone and PM2.5 and PM10, including contours and
  monitors.&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;https://fire.airnow.gov/3&quot;&gt;fire.AirNow.gov&lt;/a&gt; - Smoke and Fire location and air quality reports&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;https://www.airnow.gov/aqi/aqi-basics/&quot;&gt;Basics of Air Quality Index (AQI)&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;https://hwp-viz.gsd.esrl.noaa.gov/smoke/index.html&quot;&gt;NOAA HRRR Smoke Forcast&lt;/a&gt; - 2 day smoke forecast&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;Satellites
    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;https://rammb-slider.cira.colostate.edu/&quot;&gt;GEOS East and West Satellites&lt;/a&gt; - Not for mobile or slow connections.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;Hurricanes and Tropical Stroms
    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;https://www.nhc.noaa.gov/&quot;&gt;NOAA National Hurricane Center&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;Misc
    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;https://mars.nasa.gov/insight/weather/&quot;&gt;Mars Weather Insight&lt;/a&gt; - Currently offline&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;https://mars.nasa.gov/msl/weather&quot;&gt;Mars weather Curiosity&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;</content><author><name></name></author><category term="Weather" /><summary type="html">Weather Forecasting NWS 7 Day Forecast - The best forecasts produced anywhere. The national weather service staffs 24/7/365 and produce forecasts using the output of almost every avaliable forecast model. This is different than any private forecast company, which does not nearly have as much staff. NOAA Storm Prediction Center - Pretty much everything you need under one roof especially for mesoscale convective systems (Thunderstorms, severe thunderstorms, and tornadoes) throughout the country, but especially in the central US. Also includes fire risks and other hazards. Air Quality, Smoke and Fire AirNow.gov - Basic Government created report of air quality. AirNow.gov Interactive Map - Current and forecasted map of air quality. Great resource for Ozone and PM2.5 and PM10, including contours and monitors. fire.AirNow.gov - Smoke and Fire location and air quality reports Basics of Air Quality Index (AQI) NOAA HRRR Smoke Forcast - 2 day smoke forecast Satellites GEOS East and West Satellites - Not for mobile or slow connections. Hurricanes and Tropical Stroms NOAA National Hurricane Center Misc Mars Weather Insight - Currently offline Mars weather Curiosity</summary></entry><entry><title type="html">Simple-n-Easy Sourdough Potato Bread</title><link href="/Easy-n-Simple-Sourdough-Potato-Bread/" rel="alternate" type="text/html" title="Simple-n-Easy Sourdough Potato Bread" /><published>2021-09-28T12:45:00+00:00</published><updated>2021-09-28T12:45:00+00:00</updated><id>/Easy-n-Simple-Sourdough-Potato-Bread</id><content type="html" xml:base="/Easy-n-Simple-Sourdough-Potato-Bread/">&lt;h1 id=&quot;ingredients&quot;&gt;Ingredients&lt;/h1&gt;

&lt;p&gt;Makes 2 Loafs&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;430 g Room Temperature Peeled Mashed Potato at room-temperature (See Note)&lt;/li&gt;
  &lt;li&gt;740 g All-purpose white flour&lt;/li&gt;
  &lt;li&gt;(Optional) A few grams 10-30 g of Whole Wheat&lt;/li&gt;
  &lt;li&gt;530 g Water at room temperature water&lt;/li&gt;
  &lt;li&gt;135 - 150 g Starter or 3-4 g of instant yeast&lt;/li&gt;
  &lt;li&gt;22 - 30 g salt&lt;/li&gt;
  &lt;li&gt;Your choice of flavoring - Thyme, Rosemary etc.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; When cooking the mashed potatoes, ensure that the potatoes are
peeled. As well, &lt;strong&gt;do not&lt;/strong&gt; cook the mashed potatoes with salt, oil, milk or
butter.&lt;/p&gt;

&lt;h1 id=&quot;recipe&quot;&gt;Recipe&lt;/h1&gt;

&lt;ol&gt;
  &lt;li&gt;
    &lt;p&gt;Add the 740 g flour into a large mixing bowl. Next, add the 430 g of mashed
potatoes and mix well with the flour, being sure to remove any large of clumps
potatoes with your fingers or a fork. Then, add the 530 g of water and mix
well. Let sit for at least 30 minutes to autolyse the flour (allow gluten to
form).&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;After 30 minutes, add the starter/instant yeast, salt, and flavoring and mix
well in your usual manner. After mixing, the dough will may be significantly
hydrated and not have much shape, add additional whole wheat flour (or
all-purposed flour) if you desire a less hydrated mix. Let the dough rise for
4-8 hours until about doubled.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;During the bulk rise, the dough will need 3-5 folds. Use more folds (4-5) if
the dough is significantly hydrated, it will help it have more shape, and
develop additional gluten.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Once the dough has doubled, remove the dough from its bulk bowl and place
onto a well floured cutting bored. Cut the dough ball in half. Each dough ball
might still be significantly wet and shapeless, if so, knead and work the dough
until it has more shape. Form the dough into balls and place in proofing basket
in the usual way.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;Let the dough proof for 30-45 minutes (or overnight in the refrigerator).
Meanwhile, preheat an oven with a cast iron in it to 450 degrees F. Once the
dough has proofed, cook the bread with lid on for 30 minutes, then remove the
lid from the cast iron and cook until golden brown, 5-20 minutes.&lt;/p&gt;
  &lt;/li&gt;
&lt;/ol&gt;</content><author><name></name></author><category term="Food" /><category term="Bread" /><summary type="html">Ingredients</summary></entry></feed>