<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
	<title>BEST Website Developer Taos - If you&#39;re looking for a website, I&#39;m your guy. I make the best websites.</title>
	<link>https://jonahmondragon.xyz/</link>
	<description>Recent content in Need a Website? on BEST Website Developer Taos - If you&#39;re looking for a website, I&#39;m your guy. I make the best websites.</description>
	<generator>Hugo -- gohugo.io</generator>
	<language>en-us</language>
	<lastBuildDate>Thu, 28 Aug 2025 08:21:22 -0600</lastBuildDate>
    
        <atom:link href="https://jonahmondragon.xyz/index.xml" rel="self" type="application/rss+xml" />
	
	
    
	<item>
		<title>Contact</title>
		<link>https://jonahmondragon.xyz/contact/</link>
		<pubDate>Thu, 18 Sep 2025 10:18:07 -0600</pubDate>
		
		<guid>https://jonahmondragon.xyz/contact/</guid>
		<description>&lt;p&gt;Please select a date and time in the calendar below to schedule a phone call
with me.&lt;/p&gt;
&lt;p&gt;If you choose to talk over Google Meets, just join the call at your specified time.&lt;/p&gt;
&lt;p&gt;You&amp;rsquo;ll recieve the link to join the call in your email.&lt;/p&gt;
&lt;p&gt;If you choose to provide your phone number, I will call you at your selected
time.&lt;/p&gt;
&lt;p&gt;Talk to you then.&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;















  
  &lt;link href=&#34;https://assets.calendly.com/assets/external/widget.css&#34; rel=&#34;stylesheet&#34;&gt;
  &lt;script src=&#34;https://assets.calendly.com/assets/external/widget.js&#34; type=&#34;text/javascript&#34; async&gt;&lt;/script&gt;

  
    
    &lt;div class=&#34;calendly-inline-widget&#34; data-url=&#34;https://calendly.com/mail-jonahmondragon/schedule-a-call?hide_event_type_details=1&amp;hide_gdpr_banner=1&#34; style=&#34;min-width:320px;height:700px;&#34;&gt;&lt;/div&gt;
    &lt;script type=&#34;text/javascript&#34; src=&#34;https://assets.calendly.com/assets/external/widget.js&#34; async&gt;&lt;/script&gt;
    
  


</description>
	</item>
	
	
    
	
    
	
    
	
    
	
    
	<item>
		<title>How to Set Up Geany with Git on Windows 11</title>
		<link>https://jonahmondragon.xyz/geany/</link>
		<pubDate>Wed, 03 Sep 2025 07:12:26 -0600</pubDate>
		
		<guid>https://jonahmondragon.xyz/geany/</guid>
		<description>&lt;p&gt;In this guide I will walk you through installing
&lt;a href=&#34;https://www.geany.org/&#34;&gt;Geany&lt;/a&gt; and setting it up to make git pull requests
easily.&lt;/p&gt;
&lt;p&gt;I will also show you how to make a pull request to my blog page.&lt;/p&gt;
&lt;h4 id=&#34;1-install-git&#34;&gt;1. Install Git&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Download from &lt;a href=&#34;https://git-scm.com&#34;&gt;git-scm.com&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Run installer: Select defaults, but enable &amp;ldquo;Git Bash Here&amp;rdquo; for context menus.&lt;/li&gt;
&lt;li&gt;Verify: Open Git Bash, run &lt;code&gt;git --version&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id=&#34;2-install-geany&#34;&gt;2. Install Geany&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Download from geany.org (~15MB).&lt;/li&gt;
&lt;li&gt;install&lt;/li&gt;
&lt;li&gt;Launch Geany.&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id=&#34;3-configure-ssh-for-repos&#34;&gt;3. Configure SSH for Repos&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Launch Git Bash from the start menu (Press the Windows key and then type &amp;ldquo;Git Bash&amp;rdquo; then press enter.&amp;quot;&lt;/li&gt;
&lt;li&gt;Generate key: In Git Bash, &lt;code&gt;ssh-keygen -t ed25519 -C &amp;quot;email@example.com&amp;quot;&lt;/code&gt; (use passphrase for security).&lt;/li&gt;
&lt;li&gt;Add to GitHub: Copy &lt;code&gt;~/.ssh/id_ed25519.pub&lt;/code&gt; to GitHub Settings &amp;gt; SSH keys.&lt;/li&gt;
&lt;li&gt;To test SSH, run &lt;code&gt;ssh -T git@github.com&lt;/code&gt; in Git Bash. This should show a greeting message.&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id=&#34;4-integrate-git-in-geany&#34;&gt;4. Integrate Git in Geany&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Geany uses external commands for builds/runs; adapt for Git.&lt;/li&gt;
&lt;li&gt;Edit &amp;gt; Preferences &amp;gt; Tools: Set Terminal to &lt;code&gt;C:\Program Files\Git\git-bash.exe --login -i&lt;/code&gt; (adjust path).&lt;/li&gt;
&lt;li&gt;For quick Git: Use Build menu or keybinds.
&lt;ul&gt;
&lt;li&gt;Build &amp;gt; Set Build Commands: Add custom for commit/push.
&lt;ul&gt;
&lt;li&gt;Example: Label &amp;ldquo;Git Commit&amp;rdquo;, Command &lt;code&gt;git add . &amp;amp;&amp;amp; git commit -m &amp;quot;%p&amp;quot;&lt;/code&gt;
(in project dir).&lt;/li&gt;
&lt;li&gt;Label &amp;ldquo;Git Push&amp;rdquo;, Command &lt;code&gt;git push&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Workflow: Edit files in Geany, switch to built-in terminal (Ctrl+Alt+T) for
Git commands.&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id=&#34;5-make-a-pull-request&#34;&gt;5. Make a Pull Request&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Clone: In Git Bash (from Geany terminal): run &lt;code&gt;git clone git@github.com:jonahmondragon/jonahmondragon.xyz_blog.git&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Branch: &lt;code&gt;git checkout -b feature-branch&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Edit in Geany, save.&lt;/li&gt;
&lt;li&gt;Stage/Commit: &lt;code&gt;git add file.txt; git commit -m &amp;quot;Changes&amp;quot;&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Push: &lt;code&gt;git push origin feature-branch&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;PR: Open browser to repo &amp;gt; Pull Requests &amp;gt; New &amp;gt; Select branch.&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id=&#34;6-how-to-do-make-a-pull-request-for-a-private-repo&#34;&gt;6. How to do make a Pull Request for a Private Repo&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Assume repo URL: &lt;code&gt;ssh://user@server/path/to/repo.git&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Clone: &lt;code&gt;git clone ssh://user@server/path/to/repo.git&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Same as above: Branch, edit in Geany, commit, push to branch.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Pure Git (bare repo) has no built-in PRs—it&amp;rsquo;s a hosting feature (GitHub/GitLab). Alternatives for collaboration:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;git request-pull&lt;/strong&gt;: After push to branch, run &lt;code&gt;git request-pull main ssh://user@server/path/to/repo.git feature-branch&lt;/code&gt; &amp;gt; Generates text summary. Email/Send to you (maintainer). You pull manually: &lt;code&gt;git fetch origin feature-branch; git merge feature-branch&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Self-host minimal forge&lt;/strong&gt;: If needed, install Gitea (lightweight, suckless-friendly) on server—adds web PRs without bloat. Download binary, run as service. Config: &lt;code&gt;./gitea web&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Efficient: Stick to CLI/email for minimalism; avoids web overhead unless multi-user.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Test setup: Clone a test repo, make/edit file in Geany, commit/push. Done.&lt;/p&gt;
</description>
	</item>
	
	
    
	<item>
		<title>How to upload your own blog</title>
		<link>https://jonahmondragon.xyz/how_to_upload_your_own_blog/</link>
		<pubDate>Mon, 01 Sep 2025 07:42:59 -0600</pubDate>
		
		<guid>https://jonahmondragon.xyz/how_to_upload_your_own_blog/</guid>
		<description>&lt;p&gt;This article describes how to upload a blog of your own to this website.&lt;/p&gt;
&lt;p&gt;All blogs are in the &lt;a href=&#34;https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet&#34;&gt;markdown&lt;/a&gt; file format.&lt;/p&gt;
&lt;p&gt;So the upload process is as simple as follows:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Write a text file with the contents of the blog and make sure it has the &amp;ldquo;.md&amp;rdquo; extension.&lt;/li&gt;
&lt;li&gt;Create a pull request on the &lt;a href=&#34;https://github.com/jonahmondragon/jonahmondragon.xyz_blog&#34;&gt;blog GitHub page&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Once the pull request is accepted, you&amp;rsquo;ll find your blog on the blog page.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;If you don&amp;rsquo;t know how to make a pull request, I describe how to do so in this
&lt;a href=&#34;https://jonahmondragon.xyz/geany&#34;&gt;post&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The format of the markdown file is as follows:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;+++
date = &amp;#39;2025-09-01T07:42:59-06:00&amp;#39;
title = &amp;#39;This text will appear on the blog page&amp;#39;
+++
This text is the blog contents.
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;If you want to make the blog private (meaning only people with admin access to
the site can see it), then add the draft option and set it to true:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;+++
date = &amp;#39;2025-09-01T07:42:59-06:00&amp;#39;
draft = true
title = &amp;#39;This text will appear on the blog page&amp;#39;
+++
This text is the blog contents.
&lt;/code&gt;&lt;/pre&gt;</description>
	</item>
	
	
    
	<item>
		<title>About</title>
		<link>https://jonahmondragon.xyz/about/</link>
		<pubDate>Sat, 23 Aug 2025 11:57:34 -0600</pubDate>
		
		<guid>https://jonahmondragon.xyz/about/</guid>
		<description>&lt;p&gt;My full name is Jonah Robertson Mondragon.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m from Taos, New Mexico.&lt;/p&gt;
&lt;p&gt;If you want to get into contact with me, you can do so &lt;a href=&#34;https://jonahmondragon.xyz/contact/&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I am the Vice President of the &lt;a href=&#34;https://mccormickgallery.com&#34;&gt;Michael McCormick &amp;amp; Sons Gallery&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;My main focus is entrepreneurship.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://jonahmondragon.xyz/profile_pic.png&#34; alt=&#34;Jonah Mondragon&#34;&gt;&lt;/p&gt;
</description>
	</item>
	
	
	</channel>
</rss>
