<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[The Bored Life]]></title><description><![CDATA[Knifemaking, leathercraft, woodworking and home projects.]]></description><link>https://theboredlife.com/</link><image><url>http://theboredlife.com/favicon.png</url><title>The Bored Life</title><link>https://theboredlife.com/</link></image><generator>Ghost 4.41</generator><lastBuildDate>Sat, 07 Feb 2026 18:01:01 GMT</lastBuildDate><atom:link href="https://theboredlife.com/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[Installing MicroPython on NodeMCU]]></title><description><![CDATA[Getting started with MicroPython and the NodeMCU Esp8266 board.  All the commands to get you configured and running.]]></description><link>https://theboredlife.com/installing-micropython-on-nodemcu/</link><guid isPermaLink="false">5baec3a25fff296f0df3fa19</guid><category><![CDATA[MicroPython]]></category><category><![CDATA[ESP8266]]></category><category><![CDATA[NodeMCU]]></category><category><![CDATA[Blinking LED]]></category><category><![CDATA[Hyperion]]></category><category><![CDATA[Electronics]]></category><dc:creator><![CDATA[Jared Moore]]></dc:creator><pubDate>Sun, 30 Sep 2018 01:19:15 GMT</pubDate><media:content url="http://theboredlife.com/content/images/2018/09/8n1LKlj.jpg" medium="image"/><content:encoded><![CDATA[<img src="http://theboredlife.com/content/images/2018/09/8n1LKlj.jpg" alt="Installing MicroPython on NodeMCU"><p>Source for these instructions: <a href="https://docs.micropython.org/en/latest/esp8266/esp8266/tutorial/intro.html">https://docs.micropython.org/en/latest/esp8266/esp8266/tutorial/intro.html</a></p><p>The NodeMCU line of boards represent a small embedded system with onboard wifi. &#xA0;I plan to use this board to monitor the status of my sump pump and communicate with my home automation system going forward. &#xA0;Before doing so, I wanted to stay with Python, so I chose to setup my board with MicroPython rather than an Arduino based approach. &#xA0;The following sections and commands should be all you need to get up and running with the board. &#xA0;For reference, I am using the <a href="https://www.amazon.com/gp/product/B010N1SPRK/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B010N1SPRK&amp;linkCode=as2&amp;tag=swiftfoottim-20&amp;linkId=ed4824779cccb66fe9f1c5f4977a19ea">HiLetgo 2pcs ESP8266 NodeMCU LUA CP2102 ESP-12E Internet WIFI Development Board</a></p><figure class="kg-card kg-image-card"><img src="http://ir-na.amazon-adsystem.com/e/ir?t=swiftfoottim-20&amp;l=am2&amp;o=1&amp;a=B010N1SPRK" class="kg-image" alt="Installing MicroPython on NodeMCU" loading="lazy"></figure><h3 id="flashing-micropython-firmware">Flashing MicroPython Firmware</h3><p>Begin by flashing the MicroPython firmware. &#xA0;On a Linux system I used the esptool flasher and downloaded the firmware to the board with the following commands.</p><pre><code># Flashing tool used for loading firmware
pip install esptool

# Install the current firmware
# Download from: http://micropython.org/download#esp8266
esptool.py --port /dev/ttyUSB0 erase_flash

# Flash the firmware
esptool.py --port /dev/ttyUSB0 --baud 460800 write_flash --flash_size=detect 0 esp8266-20180511-v1.9.4.bin

# Using a Linux system, connect through USB and terminal.
picocom /dev/ttyUSB0 -b115200</code></pre><h3 id="configure-wifi">Configure Wifi</h3><p>Once flashed, you&apos;ll need to setup wifi connection to your home network to fully utilize the board. &#xA0;The following commands allow you to establish a connection to your router and turn off the access point functionality. &#xA0;</p><pre><code># Connect to the board over USB and configure wifi
# Turn off ap access if needed
# Source: https://docs.micropython.org/en/latest/esp8266/esp8266/tutorial/network_basics.html

import network
sta_if = network.WLAN(network.STA_IF)
ap_if = network.WLAN(network.AP_IF)

# Activate the Wifi connection
sta_if.active(True)

# Connect to your network
sta_if.connect(&quot;&lt;your ESSID&gt;&quot;, &quot;&lt;your password&gt;&quot;)
    
# Check to see if you have a network connection.
sta_if.ifconfig()
    
# Deactivate the access point if needed.
ap_if.active(False)
</code></pre><h3 id="adding-files-to-your-esp-8266">Adding Files to your ESP 8266</h3><p>Getting started with the ESP8266 can be a bit vague. &#xA0;You will need to transfer your main.py script to the board as well as modify the boot.py to include your wifi connection information. &#xA0;By default, WebREPL is turned off. &#xA0;This caused me to stumble for a while. &#xA0;To setup WebREPL, execute the following commands.</p><pre><code>import webrepl_setup

# Follow the onscreen commands to setup WebREPL
# Select a password, 4-9 chars.

# Reboot the board.</code></pre><p>Once rebooted, I used the CLI interface from: <a href="https://github.com/micropython/webrepl">https://github.com/micropython/webrepl</a>. &#xA0;I can then get the file from remote, edit it, and put it back on the board.</p><pre><code># Command to get boot.py.
python webrepl_cli.py 192.168.0.108:boot.py boot.py

# Command to write boot.py.
python webrepl_cli.py boot.py 192.168.0.108:boot.py</code></pre><p>Now you should be all set having a running MicroPython flashed ESP 8266 to begin development. &#xA0;It will connect to your network upon boot and be available to have code pushed to it through WebREPL. &#xA0;</p><h3 id="a-simple-blinking-light-script">A Simple Blinking Light Script</h3><p>Getting an LED blinking is the &quot;Hello World&quot; of embedded systems. &#xA0;The following script will blink an LED every 2 seconds provided you hook up to GPIO Pin 2, labeled as I/O pin 4 in the script. &#xA0;</p><pre><code>&quot;&quot;&quot;
    Script to blink an LED connected to GPIO Pin 2 of the ESP 8266 board.
&quot;&quot;&quot;

###########################################################################
# Setup code goes below, this is called once at the start of the program: #
###########################################################################
import machine
import time

# Counter 
i = 1
led = machine.Pin(4, machine.Pin.OUT)

while True:
    ###################################################################
    # Loop code goes inside the loop here, this is called repeatedly: #
    ###################################################################
    i += 1
    i = i % 2
    if(i % 2 == 0):
        led.on()
    else:
        led.off()
    time.sleep(2.0)  # Delay for 2 seconds.</code></pre><figure class="kg-card kg-image-card kg-card-hascaption"><img src="http://theboredlife.com/content/images/2018/09/2oLUER3-1.jpg" class="kg-image" alt="Installing MicroPython on NodeMCU" loading="lazy"><figcaption>The LED will blink every 2 seconds.</figcaption></figure>]]></content:encoded></item><item><title><![CDATA[Monitoring a Humid Basement with the DHT22, RaspberryPi, and Flask]]></title><description><![CDATA[Humidity and basements go hand in hand.  Monitoring levels can tell you if you should be seeking a remedy like a dehumidifier.]]></description><link>https://theboredlife.com/monitoring-a-humid-basement-with-the-dht22-raspberrypi-and-flask/</link><guid isPermaLink="false">5b7f4161a7e56f44eb00cec6</guid><category><![CDATA[RaspberryPi]]></category><category><![CDATA[Python]]></category><category><![CDATA[Flask]]></category><category><![CDATA[DHT22]]></category><category><![CDATA[Hyperion]]></category><category><![CDATA[Home Monitoring]]></category><category><![CDATA[Electronics]]></category><dc:creator><![CDATA[Jared Moore]]></dc:creator><pubDate>Fri, 24 Aug 2018 02:06:03 GMT</pubDate><media:content url="http://theboredlife.com/content/images/2022/03/20180823_211924.jpg" medium="image"/><content:encoded><![CDATA[<img src="http://theboredlife.com/content/images/2022/03/20180823_211924.jpg" alt="Monitoring a Humid Basement with the DHT22, RaspberryPi, and Flask"><p>Git repository for this post: <a href="https://github.com/jaredmoore/hyperion/tree/master/temp_humidity_service">https://github.com/jaredmoore/hyperion/</a></p><p>A humid basement can be a nightmare to a new homeowner. &#xA0;When touring our new home we immediately noticed a musty smell in the basement and the air was quite heavy. &#xA0;Being a bit of a data nut and a programmer, I knew I would have to start monitoring the temperature and humidity to assess the situation. &#xA0;After looking into the various options available to me, I decided to embark on a journey of creating my own custom home monitoring solution. &#xA0;</p><p>The first step was to investigate different options for monitoring temperature and humidity. &#xA0;I had an old RaspberryPi from 2011 laying around to act as the base for the monitoring. &#xA0;My goals for this initial system were: </p><ol><li>Periodically sample temperature and humidity.</li><li>Record the data in a flat file.</li><li>Serve the data locally and plot it with D3.js or similar library.</li></ol><h3 id="periodically-sample-temperature-and-humidity">Periodically Sample Temperature and Humidity</h3><p>Searching on Amazon, I found a pair of <a href="https://www.amazon.com/gp/product/B073F472JL/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B073F472JL&amp;linkCode=as2&amp;tag=swiftfoottim-20&amp;linkId=0c1f48cadacb0a87bcb1717aa64b38ef">DHT22 Temperature Humidity Sensors</a>. &#xA0;Although there were only a few reviews, it seemed that they were preferable to the DHT11 sensors. &#xA0;I&apos;m not terribly concerned with accuracy as a ballpark range is fine for the application. &#xA0;Hooking the sensor up to the RaspberryPi was straightforward after following the tutorial found at <a href="https://tutorials-raspberrypi.com/raspberry-pi-measure-humidity-temperature-dht11-dht22/">&quot;Raspberry Pi: Measure Humidity and Temperature with DHT11/DHT22&quot;</a>. &#xA0;</p><p>On the software side, I used the <a href="https://github.com/adafruit/Adafruit_Python_DHT">Adafruit Python DHT Library</a> and built a custom script to poll the sensor every ten minutes. &#xA0;Setup for the code can be found in lines 27 to 43 of <code>monitor.py</code>. &#xA0;Code for the polling is below:</p><!--kg-card-begin: markdown--><pre><code class="language-python">print(&apos;Logging sensor measurements to {0} every {1} seconds.&apos;.format(LOGFILE, FREQUENCY_SECONDS))
print(&apos;Press Ctrl-C to quit.&apos;)
while True:
    # Attempt to get sensor reading.
    humidity, temp = Adafruit_DHT.read(DHT_TYPE, DHT_PIN)

    # Skip to the next reading if a valid measurement couldn&apos;t be taken.
    # This might happen if the CPU is under a lot of load and the sensor
    # can&apos;t be reliably read (timing is critical to read the sensor).
    if humidity is None or temp is None:
        time.sleep(2)
        continue

    print(datetime.datetime.now(tz).strftime(&apos;%Y-%m-%d %H:%M:%S&apos;))
    print(&apos;Temperature: {0:0.1f} C&apos;.format(temp))
    print(&apos;Humidity:    {0:0.1f} %&apos;.format(humidity))

    # Append the data in the spreadsheet, including a timestamp
    with open(LOGFILE,&apos;a&apos;) as f:
        f.write(datetime.datetime.now(tz).strftime(&apos;%Y-%m-%d %H:%M:%S&apos;)+&apos;,&apos;)
        f.write(str(temp)+&apos;,&apos;)
        f.write(str(humidity)+&quot;\n&quot;)

    # Wait 30 seconds before continuing
    print(&apos;Wrote a row to {0}&apos;.format(LOGFILE))
    time.sleep(FREQUENCY_SECONDS)
</code></pre>
<!--kg-card-end: markdown--><p>Currently, the code writes to a local log file creating data for time, temperature and humidity. &#xA0;The script is launched and allowed to run in the background. &#xA0;In the future, I plan to add this to an automated launching script so that it starts upon rebooting the Pi. &#xA0;</p><h3 id="serve-the-data-locally-and-plot-it-with-d3-js">Serve the data locally and plot it with D3.js</h3><p>My next goal was to create a simple local webserver in order to plot the data collected by the Pi. &#xA0;Following the <a href="https://github.com/benalexkeen/d3-flask-blog-post.git">d3-flask-blog-post</a> repository, I went about creating my flask application.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="http://theboredlife.com/content/images/2018/08/temp_humidity.png" class="kg-image" alt="Monitoring a Humid Basement with the DHT22, RaspberryPi, and Flask" loading="lazy"><figcaption>A simple line plot showing temperature, humidity, and the critical 80% line where mold may begin to grow.</figcaption></figure><p>My flask server contains a single <code>index.html</code> page. &#xA0;It serves a line plot showing the humidity, temperature, and red line at 80% humidity. &#xA0;Styling will be updated in the future. </p><p>For now I have assigned the RaspberryPi a static IP on my local network and I can access it through any of my devices. &#xA0;</p><h3 id="conclusion">Conclusion</h3><p>So far this has been a fairly inexpensive project but it is generating the data I am interested in seeing. &#xA0;Aside from a few very hot days where we also opened the windows, humidity in the basement is staying under the critical zone, although still higher than I would like. &#xA0;After seeing this data, a dehumidifier will be purchased in the near future.</p>]]></content:encoded></item><item><title><![CDATA[2" x 72" Knife Grinder Build]]></title><description><![CDATA[Upgrading the grinding experience, 72" at a time.]]></description><link>https://theboredlife.com/2-x-72-knife-grinder-build/</link><guid isPermaLink="false">6247a151488687112aaf58ee</guid><category><![CDATA[knifemaking]]></category><category><![CDATA[build it]]></category><dc:creator><![CDATA[Jared Moore]]></dc:creator><pubDate>Sat, 12 Nov 2016 05:00:00 GMT</pubDate><media:content url="http://theboredlife.com/content/images/2022/04/20160917_101915.jpg" medium="image"/><content:encoded><![CDATA[<img src="http://theboredlife.com/content/images/2022/04/20160917_101915.jpg" alt="2&quot; x 72&quot; Knife Grinder Build"><p>After my first <a href="https://www.theboredlife.com/just-go-for-it/">chef&apos;s knife</a> I knew that I would need to upgrade to a 2&quot; x 72&quot; grinder at some point. &#xA0;Looking around on the web I came across <a href="https://dcknives.blogspot.com/p/2-x-72-belt-grinder.html">dcknive&apos;s excellent walkthrough</a> and set about on my own journey of building. &#xA0;This project was also my first foray into the world of welding, arc welding to be specific. &#xA0;Using my grandpa&apos;s old Lincoln tombstone welder was a fun experience but my welds leave something to be desired. &#xA0;</p><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/04/20160917_152853.jpg" width="2000" height="1125" loading="lazy" alt="2&quot; x 72&quot; Knife Grinder Build" srcset="http://theboredlife.com/content/images/size/w600/2022/04/20160917_152853.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/04/20160917_152853.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/04/20160917_152853.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/04/20160917_152853.jpg 2400w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/04/20160917_153859.jpg" width="2000" height="1125" loading="lazy" alt="2&quot; x 72&quot; Knife Grinder Build" srcset="http://theboredlife.com/content/images/size/w600/2022/04/20160917_153859.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/04/20160917_153859.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/04/20160917_153859.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/04/20160917_153859.jpg 2400w" sizes="(min-width: 720px) 720px"></div></div><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/04/20160918_120529.jpg" width="2000" height="1125" loading="lazy" alt="2&quot; x 72&quot; Knife Grinder Build" srcset="http://theboredlife.com/content/images/size/w600/2022/04/20160918_120529.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/04/20160918_120529.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/04/20160918_120529.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/04/20160918_120529.jpg 2400w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/04/20161002_113210.jpg" width="2000" height="3556" loading="lazy" alt="2&quot; x 72&quot; Knife Grinder Build" srcset="http://theboredlife.com/content/images/size/w600/2022/04/20161002_113210.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/04/20161002_113210.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/04/20161002_113210.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/04/20161002_113210.jpg 2400w" sizes="(min-width: 720px) 720px"></div></div></div><figcaption>It was a pretty exciting process as the different components came together.</figcaption></figure><p>As the grinder started coming together I was able to mockup the assembly and determine placing for the motor and drive wheels. &#xA0;Initially I wanted the angled slot to be the tensioner and there is a spring embedded at the bottom of that slot. &#xA0;However, it turned out the belt wasn&apos;t long enough to cover that span so I pivoted to the upright tensioning arm with a gas piston. &#xA0;Drive wheels and pillow block were purchased from <a href="https://originblademaker.com/">Origin Blade Maker</a>.</p><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/04/20161002_122314.jpg" width="2000" height="3556" loading="lazy" alt="2&quot; x 72&quot; Knife Grinder Build" srcset="http://theboredlife.com/content/images/size/w600/2022/04/20161002_122314.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/04/20161002_122314.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/04/20161002_122314.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/04/20161002_122314.jpg 2400w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/04/20161030_111202.jpg" width="2000" height="3556" loading="lazy" alt="2&quot; x 72&quot; Knife Grinder Build" srcset="http://theboredlife.com/content/images/size/w600/2022/04/20161030_111202.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/04/20161030_111202.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/04/20161030_111202.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/04/20161030_111202.jpg 2400w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/04/20161112_185520.jpg" width="2000" height="1125" loading="lazy" alt="2&quot; x 72&quot; Knife Grinder Build" srcset="http://theboredlife.com/content/images/size/w600/2022/04/20161112_185520.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/04/20161112_185520.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/04/20161112_185520.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/04/20161112_185520.jpg 2400w" sizes="(min-width: 720px) 720px"></div></div></div><figcaption>A very rewarding feeling as it came together, and even better when it made it down to the shop and running!</figcaption></figure><!--kg-card-begin: html--><blockquote class="instagram-media" data-instgrm-captioned data-instgrm-permalink="https://www.instagram.com/p/BMurYpihR6Y/?utm_source=ig_embed&amp;utm_campaign=loading" data-instgrm-version="14" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:16px;"> <a href="https://www.instagram.com/p/BMurYpihR6Y/?utm_source=ig_embed&amp;utm_campaign=loading" style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;" target="_blank"> <div style=" display: flex; flex-direction: row; align-items: center;"> <div style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;"></div> <div style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;"> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;"></div> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;"></div></div></div><div style="padding: 19% 0;"></div> <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg width="50px" height="50px" viewbox="0 0 60 60" version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-511.000000, -20.000000)" fill="#000000"><g><path d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631"/></g></g></g></svg></div><div style="padding-top: 8px;"> <div style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">View this post on Instagram</div></div><div style="padding: 12.5% 0;"></div> <div style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;"><div> <div style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);"></div> <div style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;"></div> <div style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);"></div></div><div style="margin-left: 8px;"> <div style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;"></div> <div style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)"></div></div><div style="margin-left: auto;"> <div style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);"></div> <div style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);"></div> <div style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);"></div></div></div> <div style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;"> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;"></div> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;"></div></div></a><p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;"><a href="https://www.instagram.com/p/BMurYpihR6Y/?utm_source=ig_embed&amp;utm_campaign=loading" style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;" target="_blank">A post shared by Jared (@the_bored_life_maker)</a></p></div></blockquote> <script async src="//www.instagram.com/embed.js"></script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[Just go for it.]]></title><description><![CDATA[First go at a chef's knife with a stunning zebrawood handle.]]></description><link>https://theboredlife.com/just-go-for-it/</link><guid isPermaLink="false">62479e34488687112aaf58a7</guid><category><![CDATA[knifemaking]]></category><category><![CDATA[chef knife]]></category><dc:creator><![CDATA[Jared Moore]]></dc:creator><pubDate>Sun, 04 Sep 2016 04:00:00 GMT</pubDate><media:content url="http://theboredlife.com/content/images/2022/04/20160904_213114.jpg" medium="image"/><content:encoded><![CDATA[<img src="http://theboredlife.com/content/images/2022/04/20160904_213114.jpg" alt="Just go for it."><p>After having a go with a few skinning and paring knives I wanted to scale up to something a bit bigger. &#xA0;I was using my paring knife daily, but still relying on my store bought chef&apos;s knife. &#xA0;With some O1 steel laying around I drew up a rough chef&apos;s knife template and set about making my first large knife on my 2&quot;x&quot;42&quot;. &#xA0;Somehow I managed to have a fairly adequate grind on this, although I did end up with a bit of a dig into the straight part of the edge so it doesn&apos;t quite get flush to a cutting board. &#xA0;The thin steel of this knife though keeps it as a good veggie cutter even with the deficiency.</p><p>Where this knife really shined was the zebrawood handle. &#xA0;It expands and contracts with the seasons but the patterning in the wood still gets my attention. &#xA0;This and the &quot;seeing red&quot; paring knife also started to veer towards more rounded handles as I got a sense for grinding handles with the belt sander. &#xA0;The limitations of the 2&quot;x42&quot; prevented much of a slack belt area but a light touch on the platen usually sufficed. &#xA0;</p><figure class="kg-card kg-image-card"><img src="http://theboredlife.com/content/images/2022/04/20160904_213007.jpg" class="kg-image" alt="Just go for it." loading="lazy" width="2000" height="3556" srcset="http://theboredlife.com/content/images/size/w600/2022/04/20160904_213007.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/04/20160904_213007.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/04/20160904_213007.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/04/20160904_213007.jpg 2400w" sizes="(min-width: 720px) 720px"></figure><p>After making this chef&apos;s knife, it became apparent to me though that I&apos;d likely need to build a more solid 2&quot;x72&quot; grinder to get access to a wider variety of belts and have the ability to do slack belt grinding when finishing handles.</p><!--kg-card-begin: html--><blockquote class="instagram-media" data-instgrm-captioned data-instgrm-permalink="https://www.instagram.com/p/BJ9LpI7hsYk/?utm_source=ig_embed&amp;utm_campaign=loading" data-instgrm-version="14" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:16px;"> <a href="https://www.instagram.com/p/BJ9LpI7hsYk/?utm_source=ig_embed&amp;utm_campaign=loading" style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;" target="_blank"> <div style=" display: flex; flex-direction: row; align-items: center;"> <div style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;"></div> <div style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;"> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;"></div> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;"></div></div></div><div style="padding: 19% 0;"></div> <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg width="50px" height="50px" viewbox="0 0 60 60" version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-511.000000, -20.000000)" fill="#000000"><g><path d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631"/></g></g></g></svg></div><div style="padding-top: 8px;"> <div style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">View this post on Instagram</div></div><div style="padding: 12.5% 0;"></div> <div style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;"><div> <div style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);"></div> <div style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;"></div> <div style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);"></div></div><div style="margin-left: 8px;"> <div style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;"></div> <div style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)"></div></div><div style="margin-left: auto;"> <div style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);"></div> <div style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);"></div> <div style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);"></div></div></div> <div style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;"> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;"></div> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;"></div></div></a><p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;"><a href="https://www.instagram.com/p/BJ9LpI7hsYk/?utm_source=ig_embed&amp;utm_campaign=loading" style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;" target="_blank">A post shared by Jared (@the_bored_life_maker)</a></p></div></blockquote> <script async src="//www.instagram.com/embed.js"></script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[First Skinner Gets a Sheath]]></title><description><![CDATA[A sheath befitting my first knife... cardboard just doesn't quite cut it!]]></description><link>https://theboredlife.com/first-skinner-gets-a-sheath/</link><guid isPermaLink="false">6244ffea488687112aaf5835</guid><category><![CDATA[hunting knife]]></category><category><![CDATA[leatherworking]]></category><category><![CDATA[knife sheath]]></category><dc:creator><![CDATA[Jared Moore]]></dc:creator><pubDate>Tue, 30 Aug 2016 04:00:00 GMT</pubDate><media:content url="http://theboredlife.com/content/images/2022/03/20160803_210310-copy.jpg" medium="image"/><content:encoded><![CDATA[<img src="http://theboredlife.com/content/images/2022/03/20160803_210310-copy.jpg" alt="First Skinner Gets a Sheath"><p>After my first sheath went fairly well, I quickly wanted to make a sheath for my own skinner. &#xA0;My cardboard and tape sheath simply wasn&apos;t going to cut it long-term. &#xA0;For this sheath I bought a few cheap leather stamps and had a go at making a pattern in the edge to add some visual interest. </p><!--kg-card-begin: html--><blockquote class="instagram-media" data-instgrm-captioned data-instgrm-permalink="https://www.instagram.com/p/BIquxeChvda/?utm_source=ig_embed&amp;utm_campaign=loading" data-instgrm-version="14" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:16px;"> <a href="https://www.instagram.com/p/BIquxeChvda/?utm_source=ig_embed&amp;utm_campaign=loading" style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;" target="_blank"> <div style=" display: flex; flex-direction: row; align-items: center;"> <div style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;"></div> <div style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;"> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;"></div> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;"></div></div></div><div style="padding: 19% 0;"></div> <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg width="50px" height="50px" viewbox="0 0 60 60" version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-511.000000, -20.000000)" fill="#000000"><g><path d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631"/></g></g></g></svg></div><div style="padding-top: 8px;"> <div style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">View this post on Instagram</div></div><div style="padding: 12.5% 0;"></div> <div style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;"><div> <div style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);"></div> <div style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;"></div> <div style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);"></div></div><div style="margin-left: 8px;"> <div style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;"></div> <div style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)"></div></div><div style="margin-left: auto;"> <div style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);"></div> <div style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);"></div> <div style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);"></div></div></div> <div style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;"> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;"></div> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;"></div></div></a><p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;"><a href="https://www.instagram.com/p/BIquxeChvda/?utm_source=ig_embed&amp;utm_campaign=loading" style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;" target="_blank">A post shared by Jared (@the_bored_life_maker)</a></p></div></blockquote> <script async src="//www.instagram.com/embed.js"></script><!--kg-card-end: html--><p>After dying the leather black, gluing and stitching, my knife finally had a worthy sheath. &#xA0;</p><figure class="kg-card kg-image-card"><img src="http://theboredlife.com/content/images/2022/03/20160809_202515.jpg" class="kg-image" alt="First Skinner Gets a Sheath" loading="lazy" width="2000" height="1380" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20160809_202515.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20160809_202515.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20160809_202515.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20160809_202515.jpg 2400w" sizes="(min-width: 720px) 720px"></figure>]]></content:encoded></item><item><title><![CDATA[Second Skinner, First Sheath]]></title><description><![CDATA[Second skinner with a first attempt at a sheath.]]></description><link>https://theboredlife.com/second-skinner-first-sheath/</link><guid isPermaLink="false">6244fbe3488687112aaf57e3</guid><category><![CDATA[hunting knife]]></category><category><![CDATA[knifemaking]]></category><category><![CDATA[leatherworking]]></category><category><![CDATA[knife sheath]]></category><dc:creator><![CDATA[Jared Moore]]></dc:creator><pubDate>Thu, 30 Jun 2016 04:00:00 GMT</pubDate><media:content url="http://theboredlife.com/content/images/2022/03/20160319_173800.jpg" medium="image"/><content:encoded><![CDATA[<img src="http://theboredlife.com/content/images/2022/03/20160319_173800.jpg" alt="Second Skinner, First Sheath"><p>My second skinner was made for my uncle Ed who got me into hunting and fishing. &#xA0;I made many great memories going up to his cabin in Canada and one of the ways I felt I could pay him back was to make a hunting knife for him. &#xA0;I used the same pattern as for my first skinner but this time had a belt grinder and knew to stop my grind well before going beyond a full flat grind. &#xA0;Although I had a belt grinder, I still finished the knife at 400 grit by hand to get a smooth satin finish with a scotchbrite pad. &#xA0;</p><figure class="kg-card kg-image-card"><img src="http://theboredlife.com/content/images/2022/03/20160520_194443.jpg" class="kg-image" alt="Second Skinner, First Sheath" loading="lazy" width="2000" height="3556" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20160520_194443.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20160520_194443.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20160520_194443.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20160520_194443.jpg 2400w" sizes="(min-width: 720px) 720px"></figure><p>As I was doing my grinding on the weekends at my parent&apos;s house I started working on multiple knives at once. &#xA0;Eventually I learned not to try gluing up two at once, but not at this point! </p><!--kg-card-begin: html--><blockquote class="instagram-media" data-instgrm-captioned data-instgrm-permalink="https://www.instagram.com/p/BGSRljjnWdO/?utm_source=ig_embed&amp;utm_campaign=loading" data-instgrm-version="14" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:16px;"> <a href="https://www.instagram.com/p/BGSRljjnWdO/?utm_source=ig_embed&amp;utm_campaign=loading" style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;" target="_blank"> <div style=" display: flex; flex-direction: row; align-items: center;"> <div style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;"></div> <div style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;"> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;"></div> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;"></div></div></div><div style="padding: 19% 0;"></div> <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg width="50px" height="50px" viewbox="0 0 60 60" version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-511.000000, -20.000000)" fill="#000000"><g><path d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631"/></g></g></g></svg></div><div style="padding-top: 8px;"> <div style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">View this post on Instagram</div></div><div style="padding: 12.5% 0;"></div> <div style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;"><div> <div style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);"></div> <div style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;"></div> <div style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);"></div></div><div style="margin-left: 8px;"> <div style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;"></div> <div style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)"></div></div><div style="margin-left: auto;"> <div style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);"></div> <div style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);"></div> <div style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);"></div></div></div> <div style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;"> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;"></div> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;"></div></div></a><p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;"><a href="https://www.instagram.com/p/BGSRljjnWdO/?utm_source=ig_embed&amp;utm_campaign=loading" style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;" target="_blank">A post shared by Jared (@the_bored_life_maker)</a></p></div></blockquote> <script async src="//www.instagram.com/embed.js"></script><!--kg-card-end: html--><p>I had some time before finishing this knife, but unlike my first skinner, my leatherworking skills had improved by this point. &#xA0;After finishing the knife I set about taking my first attempt at a wet-formed sheath. &#xA0;</p><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/03/20160706_204356.jpg" width="2000" height="1125" loading="lazy" alt="Second Skinner, First Sheath" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20160706_204356.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20160706_204356.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20160706_204356.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20160706_204356.jpg 2400w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/03/20160706_212731.jpg" width="2000" height="2444" loading="lazy" alt="Second Skinner, First Sheath" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20160706_212731.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20160706_212731.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20160706_212731.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20160706_212731.jpg 2400w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/03/20160711_222843.jpg" width="2000" height="2041" loading="lazy" alt="Second Skinner, First Sheath" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20160711_222843.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20160711_222843.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20160711_222843.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20160711_222843.jpg 2400w" sizes="(min-width: 720px) 720px"></div></div></div></figure><p>Hand stitching took some work and I was pretty nervous about putting a brand new carbon steel knife into a wet sheath but ultimately the process worked. &#xA0;I protected this knife with some coconut oil and then a ziplock baggie. &#xA0;I really liked the ebony handle on this one although I still felt that my shaping wasn&apos;t quite there. &#xA0;It fit well in the hand, but still had quite a blocky appearance. &#xA0;Using the belt grinder was still nerve wracking and removing too much material was a major concern of mine. &#xA0;</p><!--kg-card-begin: html--><blockquote class="instagram-media" data-instgrm-captioned data-instgrm-permalink="https://www.instagram.com/p/BIYaIUshAQw/?utm_source=ig_embed&amp;utm_campaign=loading" data-instgrm-version="14" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:16px;"> <a href="https://www.instagram.com/p/BIYaIUshAQw/?utm_source=ig_embed&amp;utm_campaign=loading" style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;" target="_blank"> <div style=" display: flex; flex-direction: row; align-items: center;"> <div style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;"></div> <div style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;"> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;"></div> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;"></div></div></div><div style="padding: 19% 0;"></div> <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg width="50px" height="50px" viewbox="0 0 60 60" version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-511.000000, -20.000000)" fill="#000000"><g><path d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631"/></g></g></g></svg></div><div style="padding-top: 8px;"> <div style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">View this post on Instagram</div></div><div style="padding: 12.5% 0;"></div> <div style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;"><div> <div style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);"></div> <div style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;"></div> <div style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);"></div></div><div style="margin-left: 8px;"> <div style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;"></div> <div style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)"></div></div><div style="margin-left: auto;"> <div style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);"></div> <div style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);"></div> <div style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);"></div></div></div> <div style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;"> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;"></div> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;"></div></div></a><p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;"><a href="https://www.instagram.com/p/BIYaIUshAQw/?utm_source=ig_embed&amp;utm_campaign=loading" style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;" target="_blank">A post shared by Jared (@the_bored_life_maker)</a></p></div></blockquote> <script async src="//www.instagram.com/embed.js"></script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[Seeing Red]]></title><description><![CDATA[Seeing red for all the editing done by my advisor as I learned to write.]]></description><link>https://theboredlife.com/seeing-red/</link><guid isPermaLink="false">62479afe488687112aaf585a</guid><category><![CDATA[knifemaking]]></category><category><![CDATA[paring knife]]></category><dc:creator><![CDATA[Jared Moore]]></dc:creator><pubDate>Fri, 17 Jun 2016 04:00:00 GMT</pubDate><media:content url="http://theboredlife.com/content/images/2022/04/20160617_164111.jpg" medium="image"/><content:encoded><![CDATA[<img src="http://theboredlife.com/content/images/2022/04/20160617_164111.jpg" alt="Seeing Red"><p>My PhD Advisor was an integral part in my development as an academic. &#xA0;There certainly were many drafts delivered back with plenty of red text to fix. &#xA0;In that spirit, I wanted to make a suitable thank you for the years of mentoring so I chose a paring knife with african blackwood handles and carbon fiber pins with a red G10 liner along the spine. &#xA0;Hopefully my later drafts were more reminiscent of this color balance. &#xA0;</p><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/04/20160617_163917.jpg" width="2000" height="2760" loading="lazy" alt="Seeing Red" srcset="http://theboredlife.com/content/images/size/w600/2022/04/20160617_163917.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/04/20160617_163917.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/04/20160617_163917.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/04/20160617_163917.jpg 2400w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/04/20160617_164119.jpg" width="1527" height="1836" loading="lazy" alt="Seeing Red" srcset="http://theboredlife.com/content/images/size/w600/2022/04/20160617_164119.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/04/20160617_164119.jpg 1000w, http://theboredlife.com/content/images/2022/04/20160617_164119.jpg 1527w" sizes="(min-width: 720px) 720px"></div></div></div></figure><!--kg-card-begin: html--><blockquote class="instagram-media" data-instgrm-captioned data-instgrm-permalink="https://www.instagram.com/p/BGxPtYoHWbu/?utm_source=ig_embed&amp;utm_campaign=loading" data-instgrm-version="14" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:16px;"> <a href="https://www.instagram.com/p/BGxPtYoHWbu/?utm_source=ig_embed&amp;utm_campaign=loading" style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;" target="_blank"> <div style=" display: flex; flex-direction: row; align-items: center;"> <div style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;"></div> <div style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;"> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;"></div> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;"></div></div></div><div style="padding: 19% 0;"></div> <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg width="50px" height="50px" viewbox="0 0 60 60" version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-511.000000, -20.000000)" fill="#000000"><g><path d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631"/></g></g></g></svg></div><div style="padding-top: 8px;"> <div style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">View this post on Instagram</div></div><div style="padding: 12.5% 0;"></div> <div style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;"><div> <div style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);"></div> <div style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;"></div> <div style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);"></div></div><div style="margin-left: 8px;"> <div style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;"></div> <div style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)"></div></div><div style="margin-left: auto;"> <div style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);"></div> <div style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);"></div> <div style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);"></div></div></div> <div style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;"> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;"></div> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;"></div></div></a><p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;"><a href="https://www.instagram.com/p/BGxPtYoHWbu/?utm_source=ig_embed&amp;utm_campaign=loading" style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;" target="_blank">A post shared by Jared (@the_bored_life_maker)</a></p></div></blockquote> <script async src="//www.instagram.com/embed.js"></script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[Almost Forgotten]]></title><description><![CDATA[A knife almost forgotten picture wise, and now lost in a move.]]></description><link>https://theboredlife.com/almost-forgotten/</link><guid isPermaLink="false">6244fa01488687112aaf57b5</guid><category><![CDATA[knifemaking]]></category><category><![CDATA[paring knife]]></category><dc:creator><![CDATA[Jared Moore]]></dc:creator><pubDate>Wed, 30 Mar 2016 04:00:00 GMT</pubDate><media:content url="http://theboredlife.com/content/images/2022/03/IMG_15121-1.jpg" medium="image"/><content:encoded><![CDATA[<img src="http://theboredlife.com/content/images/2022/03/IMG_15121-1.jpg" alt="Almost Forgotten"><p>I only have one photo of this knife, sent to me by the recipient. &#xA0;For whatever reason I didn&apos;t take pictures during the build of this knife but it followed the process and style of my first paring knife. &#xA0;Sadly the photo really doesn&apos;t do justice for the sapwood and patterning in this zircote handle. &#xA0;My shaping process was still quite rough at this point so I defaulting to blocky style handles with rounded edges. &#xA0;Still, it was pretty comfortable in the hand. &#xA0;This knife was lost somewhere in a move a few years later.</p>]]></content:encoded></item><item><title><![CDATA[Everyday Paring Knife]]></title><description><![CDATA[First true paring knife that is an everyday driver in the kitchen year after year.]]></description><link>https://theboredlife.com/everyday-paring-knife/</link><guid isPermaLink="false">6240fcc1488687112aaf5784</guid><category><![CDATA[knifemaking]]></category><category><![CDATA[paring knife]]></category><dc:creator><![CDATA[Jared Moore]]></dc:creator><pubDate>Sat, 13 Feb 2016 05:00:00 GMT</pubDate><media:content url="http://theboredlife.com/content/images/2022/03/20160213_154028-copy.jpg" medium="image"/><content:encoded><![CDATA[<img src="http://theboredlife.com/content/images/2022/03/20160213_154028-copy.jpg" alt="Everyday Paring Knife"><p>After breaking in the 2&quot; x 42&quot; grinder on the package opener, I wanted a knife I&apos;d use everyday, not just during hunting season. &#xA0;With my newfound grinder, I set about working on a number of knives in parallel with one even left over from a second hand-ground knife. One of those three eventually turned into my second paring knife. &#xA0;</p><!--kg-card-begin: html--><blockquote class="instagram-media" data-instgrm-captioned data-instgrm-permalink="https://www.instagram.com/p/BBbOns0nWc8/?utm_source=ig_embed&amp;utm_campaign=loading" data-instgrm-version="14" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:16px;"> <a href="https://www.instagram.com/p/BBbOns0nWc8/?utm_source=ig_embed&amp;utm_campaign=loading" style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;" target="_blank"> <div style=" display: flex; flex-direction: row; align-items: center;"> <div style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;"></div> <div style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;"> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;"></div> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;"></div></div></div><div style="padding: 19% 0;"></div> <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg width="50px" height="50px" viewbox="0 0 60 60" version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-511.000000, -20.000000)" fill="#000000"><g><path d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631"/></g></g></g></svg></div><div style="padding-top: 8px;"> <div style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">View this post on Instagram</div></div><div style="padding: 12.5% 0;"></div> <div style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;"><div> <div style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);"></div> <div style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;"></div> <div style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);"></div></div><div style="margin-left: 8px;"> <div style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;"></div> <div style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)"></div></div><div style="margin-left: auto;"> <div style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);"></div> <div style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);"></div> <div style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);"></div></div></div> <div style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;"> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;"></div> <div style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;"></div></div></a><p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;"><a href="https://www.instagram.com/p/BBbOns0nWc8/?utm_source=ig_embed&amp;utm_campaign=loading" style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;" target="_blank">A post shared by Jared (@the_bored_life_maker)</a></p></div></blockquote> <script async src="//www.instagram.com/embed.js"></script><!--kg-card-end: html--><p>In the meantime, I found some basic paring knife designs that were practical everyday drivers and went for it. &#xA0;Using some thinner O1 stock and ebony again for the handle I came up with what is still in 2022 my goto paring knife. &#xA0;I still didn&apos;t have my handle process down completely yet so I stuck with a rather boxy and angled front design here. &#xA0;Future iterations that show up in the blog will demonstrate the refinement process I&apos;ve gone through over time with this design. &#xA0;Still, it&apos;s comfortable in hand and very durable with the ebony handle. &#xA0;</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="http://theboredlife.com/content/images/2022/03/20160207_101447.jpg" class="kg-image" alt="Everyday Paring Knife" loading="lazy" width="2000" height="1125" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20160207_101447.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20160207_101447.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20160207_101447.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20160207_101447.jpg 2400w" sizes="(min-width: 720px) 720px"><figcaption>It&apos;s fun to make clamp dinosaurs when doing handle glue ups.</figcaption></figure>]]></content:encoded></item><item><title><![CDATA[First 2 x 42 Grinder Knife]]></title><description><![CDATA[Humble beginnings give way to the first power tool ground knife.  Still a lot to learn from this one.]]></description><link>https://theboredlife.com/first-2-x-42-grinder-knife/</link><guid isPermaLink="false">6240f5a3488687112aaf573b</guid><category><![CDATA[knifemaking]]></category><category><![CDATA[paring knife]]></category><dc:creator><![CDATA[Jared Moore]]></dc:creator><pubDate>Fri, 29 Jan 2016 05:00:00 GMT</pubDate><media:content url="http://theboredlife.com/content/images/2022/03/20160129_212801.jpg" medium="image"/><content:encoded><![CDATA[<img src="http://theboredlife.com/content/images/2022/03/20160129_212801.jpg" alt="First 2 x 42 Grinder Knife"><p>I realized pretty quickly that my knifemaking career would be pretty arduous doing the bevel grinding by hand and I managed to find a 2&quot;x42&quot; Craftsman knife grinder at Sears on sale for somewhere around $150. &#xA0;With a slight amount of knowledge hastily gathered from YouTube and plenty of belts I nervously approached the new machine. &#xA0;</p><p>The paring knife you see above was my first foray. &#xA0;Grinding the bevels was a bit terrifying as the grinder really took off the metal quickly. &#xA0;Over time, I kept grinding the bevels but bringing the edge too thin for heat treat, so I&apos;d have to grind the edge up to get more thickness which inevitably ended with me thinning the edge again as I tried to refine the bevels. &#xA0;Instead of taking the bevels higher, I decided to stop with it in the condition it already was. &#xA0;Comical for a first attempt, but I knew the grinder was the right choice.</p><figure class="kg-card kg-image-card"><img src="http://theboredlife.com/content/images/2022/03/20160123_174824.jpg" class="kg-image" alt="First 2 x 42 Grinder Knife" loading="lazy" width="2000" height="3556" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20160123_174824.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20160123_174824.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20160123_174824.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20160123_174824.jpg 2400w" sizes="(min-width: 720px) 720px"></figure><p>While the knife itself is far from pretty. &#xA0;Geometry is completely out of whack, bevel lines are wavy, the bevels themselves aren&apos;t flat... I really like the handle material here. &#xA0;Although I haven&apos;t gotten around to using mesquite again, it is a nice feeling wood once finished. &#xA0;</p><p>Is it pretty? &#xA0;Nope. &#xA0;But this knife still sits on my knife block and is our goto for opening all those packages that seem to be the reality of our lives today.</p>]]></content:encoded></item><item><title><![CDATA[First Knife]]></title><description><![CDATA[The first steps in my knifemaking journey.  Fully hand built skinner with ebony handle thanks to inspiration from Aaron Gough.]]></description><link>https://theboredlife.com/first-knife/</link><guid isPermaLink="false">6240ef09488687112aaf56b0</guid><category><![CDATA[knifemaking]]></category><category><![CDATA[hunting knife]]></category><dc:creator><![CDATA[Jared Moore]]></dc:creator><pubDate>Mon, 04 Jan 2016 05:00:00 GMT</pubDate><media:content url="http://theboredlife.com/content/images/2022/03/20151024_220332.jpg" medium="image"/><content:encoded><![CDATA[<img src="http://theboredlife.com/content/images/2022/03/20151024_220332.jpg" alt="First Knife"><p>Around 2014 I started seeing posts about people that had built their own knives but it always seemed to require a large amount of tooling to get started. &#xA0;I came across Aaron Gough&apos;s excellent beginner knifemaker series on YouTube and realized that it would be possible. &#xA0;After many hours on YouTube, reddit, and forums I started to build the jig that would be the foundation of my endeavor (<a href="https://www.youtube.com/watch?v=r9iNDRwwBQQ&amp;ab_channel=GoughCustom">https://www.youtube.com/watch?v=r9iNDRwwBQQ&amp;ab_channel=GoughCustom</a>)</p><p>Starting out with a flat piece of O1 tool stock, I began the process of shaping then hand grinding the knife. &#xA0;Working in a slightly dark basement shop I found a pair of headphones and realized how many strokes it was going to take. &#xA0;</p><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/03/20151017_195526-2.jpg" width="2000" height="3556" loading="lazy" alt="First Knife" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20151017_195526-2.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20151017_195526-2.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20151017_195526-2.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20151017_195526-2.jpg 2400w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/03/20151024_210403-1.jpg" width="2000" height="3556" loading="lazy" alt="First Knife" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20151024_210403-1.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20151024_210403-1.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20151024_210403-1.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20151024_210403-1.jpg 2400w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/03/20151030_232830.jpg" width="2000" height="3556" loading="lazy" alt="First Knife" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20151030_232830.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20151030_232830.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20151030_232830.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20151030_232830.jpg 2400w" sizes="(min-width: 720px) 720px"></div></div></div><figcaption>A flat piece of O1, a hacksaw and many files. Somewhere along the way balancing the plunges got away from me. It&apos;s not stylish, but it works.</figcaption></figure><p>After getting it roughed out with flies and draw ground, it was time to heat treat. &#xA0;A small two brick forge and a torch were enough to get this one heat treated. &#xA0;</p><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/03/20151224_182336.jpg" width="2000" height="3556" loading="lazy" alt="First Knife" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20151224_182336.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20151224_182336.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20151224_182336.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20151224_182336.jpg 2400w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/03/20151224_185543.jpg" width="2000" height="1125" loading="lazy" alt="First Knife" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20151224_185543.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20151224_185543.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20151224_185543.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20151224_185543.jpg 2400w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/03/20151225_091412.jpg" width="2000" height="3556" loading="lazy" alt="First Knife" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20151225_091412.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20151225_091412.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20151225_091412.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20151225_091412.jpg 2400w" sizes="(min-width: 720px) 720px"></div></div></div><figcaption>Two brick forge, a torch, and a toaster oven to heat treat and temper twice at 400F.</figcaption></figure><p>Handle fitted out with Ebony.</p><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/03/20151225_112652.jpg" width="2000" height="3556" loading="lazy" alt="First Knife" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20151225_112652.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20151225_112652.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20151225_112652.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20151225_112652.jpg 2400w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/03/20160101_122308.jpg" width="2000" height="3556" loading="lazy" alt="First Knife" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20160101_122308.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20160101_122308.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20160101_122308.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20160101_122308.jpg 2400w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="http://theboredlife.com/content/images/2022/03/20160101_165740.jpg" width="2000" height="3556" loading="lazy" alt="First Knife" srcset="http://theboredlife.com/content/images/size/w600/2022/03/20160101_165740.jpg 600w, http://theboredlife.com/content/images/size/w1000/2022/03/20160101_165740.jpg 1000w, http://theboredlife.com/content/images/size/w1600/2022/03/20160101_165740.jpg 1600w, http://theboredlife.com/content/images/size/w2400/2022/03/20160101_165740.jpg 2400w" sizes="(min-width: 720px) 720px"></div></div></div><figcaption>Handle shape actually went pretty well for a first time. Durable ebony with maybe a bit oversized corby bolts. Still, finished product is sharp and has skinned out quite a few deer over the years!</figcaption></figure><p></p>]]></content:encoded></item></channel></rss>