<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator><link href="/feed.xml" rel="self" type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" /><updated>2026-06-18T03:24:16+00:00</updated><id>/feed.xml</id><title type="html">Your awesome title</title><subtitle>Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description.</subtitle><entry><title type="html">Keybase.io</title><link href="/development/2018/06/18/keybase-io.html" rel="alternate" type="text/html" title="Keybase.io" /><published>2018-06-18T00:00:00+00:00</published><updated>2018-06-18T00:00:00+00:00</updated><id>/development/2018/06/18/keybase-io</id><content type="html" xml:base="/development/2018/06/18/keybase-io.html"><![CDATA[<p>I have recently found a new site called <a href="https://keybase.io/jfreier">Keybase.io</a>.  This site dedicated to sharing your public PGP key.  It also has some cool features like verifying your Facebook, Twitter, and other accounts by posting singings with your key.  I would highly recommend everyone sign up, and start signing your items.</p>

<p>Check mine out. <a href="https://keybase.io/jfreier">https://keybase.io/jfreier</a></p>

<p>Also if you need some help setting up your GPG key, checkout my wiki page to help. <a href="http://wiki.johnfreier.com/index.php/Linux_gpg">http://wiki.johnfreier.com/index.php/Linux_gpg</a></p>

<p>Here is a link to my public key <a href="https://keybase.io/jfreier/pgp_keys.asc?fingerprint=4fcd025926ef18a6348f471fc9f91f8894f9c761">Click Here</a></p>]]></content><author><name></name></author><category term="development" /><summary type="html"><![CDATA[I have recently found a new site called Keybase.io.  This site dedicated to sharing your public PGP key.  It also has some cool features like verifying your Facebook, Twitter, and other accounts by posting singings with your key.  I would highly recommend everyone sign up, and start signing your items.]]></summary></entry><entry><title type="html">A few new tools.</title><link href="/development/2018/05/01/a-few-new-tools.html" rel="alternate" type="text/html" title="A few new tools." /><published>2018-05-01T00:00:00+00:00</published><updated>2018-05-01T00:00:00+00:00</updated><id>/development/2018/05/01/a-few-new-tools</id><content type="html" xml:base="/development/2018/05/01/a-few-new-tools.html"><![CDATA[<p>Here a few new tools.</p>

<p><a href="https://keep.google.com/">Google Keep</a></p>

<p>This tool is google’s latest note tool.  It is very similar to Apple Notes or a simplified Evernote, except Free :) I’m just starting to use it for note taking.  It does have an iOS and Android app.  It is a rich text editor, which makes things a little messing for pasting in code, and almost a complete turn off.  It also does not support markdown without installing a chrome plugin.</p>

<p><a href="https://www.passwordstore.org/">Pass</a></p>

<p>A neat little password manage that looks to encrypt a text file that is essentially a password.  It then uses the standard folder structure to help with navigation.  It is written is shell, and seems easy to install.  Then encryption is done through <a href="https://www.gnupg.org/">GPG</a>.  It looks kinds of neat a small, but it does have a lot of  dependencies. Hmmm…I wonder if it could be modified to use open ssh which comes with most machines.</p>

<p><a href="https://fishshell.com/">Fish Shell</a></p>

<p>Fish shell, is a simplified shell that seems to have a some tools, man autocomplete, a browser based color settings??, lots of colors!  To be honest not my choice of shells, might be good for someone just starting out using shell.  I prefer <a href="https://github.com/robbyrussell/oh-my-zsh">oh-my-zsh</a>.</p>

<p><a href="https://github.com/robbyrussell/oh-my-zsh">Oh-My-ZSH</a></p>

<p>This is my preferred shell, it is simply zsh with a LOT of really useful tools.  It’s really easy to install and get started.  I would highly recommend it.</p>]]></content><author><name></name></author><category term="development" /><summary type="html"><![CDATA[Here a few new tools.]]></summary></entry><entry><title type="html">Windows Icon Issue</title><link href="/os/2016/10/04/windows-icon-issue.html" rel="alternate" type="text/html" title="Windows Icon Issue" /><published>2016-10-04T00:00:00+00:00</published><updated>2016-10-04T00:00:00+00:00</updated><id>/os/2016/10/04/windows-icon-issue</id><content type="html" xml:base="/os/2016/10/04/windows-icon-issue.html"><![CDATA[<p>Had an issue with Icons showing up on my desktop correctly.</p>

<p>Here is some quick steps to restore icons correctly.</p>

<p>http://wiki.johnfreier.com/index.php/Windows_icon_error</p>]]></content><author><name></name></author><category term="os" /><summary type="html"><![CDATA[Had an issue with Icons showing up on my desktop correctly.]]></summary></entry><entry><title type="html">Bash Delete Method</title><link href="/development/2016/08/09/bash-delete-method.html" rel="alternate" type="text/html" title="Bash Delete Method" /><published>2016-08-09T00:00:00+00:00</published><updated>2016-08-09T00:00:00+00:00</updated><id>/development/2016/08/09/bash-delete-method</id><content type="html" xml:base="/development/2016/08/09/bash-delete-method.html"><![CDATA[<p>I recently permanently delete some files because of habit using, <code class="language-plaintext highlighter-rouge">rm -fr ./file.txt</code>, ops.  So I looked into creating a bash function to delete files and just move them into a system temporary folder for auto delayed deletion.</p>

<p>There are multiply system temporary location on a mac,</p>

<p>/tmp - Used for short temp files.  This directory is available on system startup.  Some system are setup to use this directory in memory storage only.</p>

<p>/var/temp - Used for bigger files.  Because this is in the VAR directory it needs to be mounted and thus not available until then(after startup).</p>

<p>$TMPDIR - Is a temp directory variable, this is the recommended location to store temp files on OSX.</p>

<p>These directories are cleaned up differently on different systems.</p>

<p>Below is the line I added to my ~/.bash_profile <code class="language-plaintext highlighter-rouge">del() { mv $1 $TMPDIR; };</code></p>

<p>This will add a function called del that will move a file into the $TMPDIR.  This will allow the file to be queried for deletion, but also allows for a short recovery time.</p>

<p>View my sample .bash_profile:</p>

<p><a href="https://github.com/johnfreier/scripts/blob/master/linux/.bash_profile">https://github.com/johnfreier/scripts/blob/master/linux/.bash_profile</a></p>]]></content><author><name></name></author><category term="development" /><category term="bash" /><summary type="html"><![CDATA[I recently permanently delete some files because of habit using, rm -fr ./file.txt, ops.  So I looked into creating a bash function to delete files and just move them into a system temporary folder for auto delayed deletion.]]></summary></entry><entry><title type="html">Twins Game</title><link href="/instagram/2016/07/11/291.html" rel="alternate" type="text/html" title="Twins Game" /><published>2016-07-11T00:00:00+00:00</published><updated>2016-07-11T00:00:00+00:00</updated><id>/instagram/2016/07/11/291</id><content type="html" xml:base="/instagram/2016/07/11/291.html"><![CDATA[<p><img src="http://ift.tt/29qv21M" alt="" /> via Instagram http://ift.tt/29rHFpl</p>]]></content><author><name></name></author><category term="instagram" /><category term="instagram" /><summary type="html"><![CDATA[via Instagram http://ift.tt/29rHFpl]]></summary></entry><entry><title type="html">Summer Time</title><link href="/instagram/2015/08/16/summer-time.html" rel="alternate" type="text/html" title="Summer Time" /><published>2015-08-16T00:00:00+00:00</published><updated>2015-08-16T00:00:00+00:00</updated><id>/instagram/2015/08/16/summer-time</id><content type="html" xml:base="/instagram/2015/08/16/summer-time.html"><![CDATA[<p><img src="http://ift.tt/1HQcexg" alt="" /><br />
via Instagram http://ift.tt/1Mw59da</p>]]></content><author><name></name></author><category term="instagram" /><category term="instagram" /><summary type="html"><![CDATA[via Instagram http://ift.tt/1Mw59da]]></summary></entry><entry><title type="html">MCrypt</title><link href="/development/2015/08/03/mcrypt.html" rel="alternate" type="text/html" title="MCrypt" /><published>2015-08-03T00:00:00+00:00</published><updated>2015-08-03T00:00:00+00:00</updated><id>/development/2015/08/03/mcrypt</id><content type="html" xml:base="/development/2015/08/03/mcrypt.html"><![CDATA[<p>MCrypt is a library for C that contains a bunch of helpers for encryption and decryption.</p>

<p>Here is a sample project, <a href="https://github.com/johnfreier/mcrypt">https://github.com/johnfreier/mcrypt</a></p>]]></content><author><name></name></author><category term="development" /><category term="c" /><category term="crypt" /><summary type="html"><![CDATA[MCrypt is a library for C that contains a bunch of helpers for encryption and decryption.]]></summary></entry><entry><title type="html">The Alchemist’s Letter from Carlos Stevens on Vimeo.</title><link href="/tumblr/2015/04/28/the-alchemists-letter-from-carlos-stevens-on-vimeo.html" rel="alternate" type="text/html" title="The Alchemist’s Letter from Carlos Stevens on Vimeo." /><published>2015-04-28T00:00:00+00:00</published><updated>2015-04-28T00:00:00+00:00</updated><id>/tumblr/2015/04/28/the-alchemists-letter-from-carlos-stevens-on-vimeo</id><content type="html" xml:base="/tumblr/2015/04/28/the-alchemists-letter-from-carlos-stevens-on-vimeo.html"><![CDATA[<iframe src="https://player.vimeo.com/video/125527643?title=0&amp;byline=0&amp;portrait=0" width="400" height="225" frameborder="0" title="The Alchemist's Letter" webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen=""></iframe>

<p><a href="http://ift.tt/1PoVF27">The Alchemist’s Letter</a> from <a href="http://ift.tt/1HxEIzM">Carlos Stevens</a> on <a href="https://vimeo.com">Vimeo</a>.</p>

<p>via Tumblr http://ift.tt/1DHcXA0</p>]]></content><author><name></name></author><category term="tumblr" /><category term="tumblr" /><summary type="html"><![CDATA[]]></summary></entry><entry><title type="html">Catching snowflakes</title><link href="/instagram/2015/04/10/catching-snowflakes.html" rel="alternate" type="text/html" title="Catching snowflakes" /><published>2015-04-10T00:00:00+00:00</published><updated>2015-04-10T00:00:00+00:00</updated><id>/instagram/2015/04/10/catching-snowflakes</id><content type="html" xml:base="/instagram/2015/04/10/catching-snowflakes.html"><![CDATA[<p><img src="http://ift.tt/1D3coCD" alt="" /><br />
via Instagram http://ift.tt/1DQ1ymQ</p>]]></content><author><name></name></author><category term="instagram" /><category term="instagram" /><summary type="html"><![CDATA[via Instagram http://ift.tt/1DQ1ymQ]]></summary></entry><entry><title type="html">Homemade Apple Cider From Juicer</title><link href="/food/2014/10/15/homemade-apple-cider-from-juicer.html" rel="alternate" type="text/html" title="Homemade Apple Cider From Juicer" /><published>2014-10-15T00:00:00+00:00</published><updated>2014-10-15T00:00:00+00:00</updated><id>/food/2014/10/15/homemade-apple-cider-from-juicer</id><content type="html" xml:base="/food/2014/10/15/homemade-apple-cider-from-juicer.html"><![CDATA[<p>Step 1. - Juice a bunch of apples.</p>

<p>Step 2. - Remove foam from top of juice.</p>

<p>Step 3. - Pour into pot.</p>

<p>Step 4. - Add 3 tbsp sugar.</p>

<p>Step 5. - Add 4 cinnamon sticks.</p>

<p>Step 6. - Add 1 cup of water.</p>

<p>Step 6. - Bring to a boil and let boil for 10 minutes.</p>]]></content><author><name></name></author><category term="food" /><summary type="html"><![CDATA[Step 1. - Juice a bunch of apples.]]></summary></entry></feed>