<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Technology on Shelby DeNike</title>
    <link>https://denike.io/categories/technology/</link>
    <description>Recent content in Technology on Shelby DeNike</description>
    <image>
      <title>Shelby DeNike</title>
      <url>https://assets.denike.io/images/assets/cartoon_profile_200x200px.png</url>
      <link>https://assets.denike.io/images/assets/cartoon_profile_200x200px.png</link>
    </image>
    <generator>Hugo -- 0.154.5</generator>
    <language>en-us</language>
    <lastBuildDate>Mon, 17 Mar 2025 15:37:19 -0400</lastBuildDate>
    <atom:link href="https://denike.io/categories/technology/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>🖥️ A computer I built years ago</title>
      <link>https://denike.io/a-computer-i-built-years-ago/</link>
      <pubDate>Mon, 17 Mar 2025 15:37:19 -0400</pubDate>
      <guid>https://denike.io/a-computer-i-built-years-ago/</guid>
      <description>A computer I built for a friend decades ago ended up back in my hands to work on…</description>
    </item>
    <item>
      <title>📱 iPhone 16 Pro Max Upgrade</title>
      <link>https://denike.io/iphone-16-pro-max-upgrade/</link>
      <pubDate>Mon, 23 Sep 2024 20:42:36 +0000</pubDate>
      <guid>https://denike.io/iphone-16-pro-max-upgrade/</guid>
      <description>&lt;p&gt;I decided to cave and pre-order the iPhone 16 Pro Max, mainly due to the trade-in value I was given for my iPhone 14 Pro Max. I was able to cross paths with the UPS truck before they got to my house and get the delivery sooner than expected, which was a plus, I guess it pays to track your shipments when driving home from work.&lt;/p&gt;
&lt;p&gt;The overall upgrade from my current iPhone 14 Pro Max on &lt;a href=&#34;https://denike.io/go/visible&#34;&gt;Visible&lt;/a&gt; to this one was more or less flawless. I performed a backup, and went through the restore to the new phone, which asked to upgrade to the beta. After that, it was as simple as firing up the &lt;a href=&#34;https://denike.io/go/visible&#34;&gt;Visible&lt;/a&gt; app and activating this phone with the eSim. That process took about &lt;strong&gt;5&lt;/strong&gt; minutes to complete and maybe around &lt;strong&gt;10&lt;/strong&gt; minutes for SMS to fully start working to the new phone.&lt;/p&gt;</description>
    </item>
    <item>
      <title>🐧 update-initramfs is stuck</title>
      <link>https://denike.io/update-initramfs-is-stuck/</link>
      <pubDate>Mon, 16 Sep 2024 10:53:03 +0000</pubDate>
      <guid>https://denike.io/update-initramfs-is-stuck/</guid>
      <description>&lt;p&gt;I was running into an issue on my &lt;strong&gt;Ubuntu 22.04 server&lt;/strong&gt; where the kernel was stuck on &lt;strong&gt;5.15&lt;/strong&gt;; I never really thought much about it as a long while back ( &lt;em&gt;Many upgrades ago&lt;/em&gt;), I remember freezing kernel updates due to some video card issues that I was having with &lt;a href=&#34;https://www.docker.com&#34;&gt;docker&lt;/a&gt;.&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sudo apt remove initramfs-tools
sudo apt install initramfs-tools
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;After running those commands, I completed the update to the server with the shiny new &lt;strong&gt;6.5&lt;/strong&gt; kernel.&lt;/p&gt;</description>
    </item>
    <item>
      <title>🧹 Format USB drive from macOS command line</title>
      <link>https://denike.io/format-usb-drive-from-macos-command-line/</link>
      <pubDate>Mon, 11 Mar 2024 11:39:23 +0000</pubDate>
      <guid>https://denike.io/format-usb-drive-from-macos-command-line/</guid>
      <description>&lt;p&gt;If you ever need to format a USB thumb drive on macOS from the command line, this will get you going. The first command will show you the drives so you can figure out which one is the USB. You will want to swap out &lt;strong&gt;DRIVENAME&lt;/strong&gt; for what you want to name the USB drive.&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;diskutil list
diskutil unmountDisk /dev/disk2
diskutil eraseDisk FAT32 DRIVENAME /dev/disk2
&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>💻 Mounting Samba share on Ubuntu</title>
      <link>https://denike.io/mounting-samba-share-on-ubuntu/</link>
      <pubDate>Tue, 13 Feb 2024 15:41:12 +0000</pubDate>
      <guid>https://denike.io/mounting-samba-share-on-ubuntu/</guid>
      <description>&lt;p&gt;I&amp;rsquo;m mainly noting this here for myself, but perhaps someone else will find this information handy.&lt;/p&gt;
&lt;p&gt;Install package &lt;strong&gt;cifs-utils&lt;/strong&gt;&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sudo apt-get install cifs-utils
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Create a folder to mount the share into&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sudo mkdir /media/Share
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Create a file with user credentials in your home directory.&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;touch ~/.smbcredentials
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Edit the &lt;strong&gt;smbcredentials&lt;/strong&gt; file&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;username=smb_username
password=smb_password
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Edit &lt;strong&gt;/etc/fstab&lt;/strong&gt;&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sudo nano /etc/fstab
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Add the following line ( &lt;em&gt;edit where necessary&lt;/em&gt;)&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;//NASIP/shares/ /mnt/nas cifs iocharset=utf8,credentials=/home/USER/.smbcredentials,vers=3.0,iocharset=utf8,rw,sec=ntlmssp,file_mode=0644,dir_mode=0755,uid=1000,gid=1000 0 0
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;You can now mount the samba share with the command below&lt;/p&gt;</description>
    </item>
    <item>
      <title>🗄️ Uncompressing multiple nested folders</title>
      <link>https://denike.io/%EF%B8%8F-uncompressing-multiple-nested-folders/</link>
      <pubDate>Tue, 13 Feb 2024 14:01:15 +0000</pubDate>
      <guid>https://denike.io/%EF%B8%8F-uncompressing-multiple-nested-folders/</guid>
      <description>&lt;p&gt;I tend to download many files, most of which are all placed into their own folder within my downloads directory. Instead of going into each folder to uncompress the contents, I wanted to run a single command to achieve this in a timely manner.&lt;/p&gt;
&lt;p&gt;Using the simple find command below, you can uncompress multiple folders sequentially, one after another.&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;find downloads/ -name &amp;#39;*.rar&amp;#39; -execdir unrar e {} \;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Of course, you will need to change the directory, and if you want to use this on zip, tar, etc, you will need to adjust the &lt;strong&gt;unrar e&lt;/strong&gt; aspect to fit the proper command for the file type.&lt;/p&gt;</description>
    </item>
    <item>
      <title>💻 Mullvad error on ohmyzsh update</title>
      <link>https://denike.io/mullvad-error-on-ohmyzsh-update/</link>
      <pubDate>Fri, 02 Feb 2024 20:19:00 +0000</pubDate>
      <guid>https://denike.io/mullvad-error-on-ohmyzsh-update/</guid>
      <description>&lt;p&gt;When I was running updates on my system, I kept getting this error about &lt;a href=&#34;https://mullvad.net/en&#34;&gt;Mullvad&lt;/a&gt;&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;compinit:527: no such file or directory: /usr/local/share/zsh/site-functions/_mullvad
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;It looked as though when &lt;a href=&#34;https://mullvad.net/en&#34;&gt;Mullvad&lt;/a&gt; was removed, it never fully removed itself from my system. Thankfully, the fix was as easy as grabbing the &lt;a href=&#34;https://mullvad.net/en&#34;&gt;Mullvad&lt;/a&gt; macOS uninstall script from &lt;a href=&#34;https://github.com/sdenike&#34;&gt;GitHub&lt;/a&gt; and running it, which properly removed all of the symlinks and leftover files.&lt;/p&gt;
&lt;p&gt;You can grab the script and run it from the CLI by doing the following.&lt;/p&gt;</description>
    </item>
    <item>
      <title>📓 Switching to Joplin for notes</title>
      <link>https://denike.io/switching-to-joplin-for-notes/</link>
      <pubDate>Mon, 18 Dec 2023 16:01:28 +0000</pubDate>
      <guid>https://denike.io/switching-to-joplin-for-notes/</guid>
      <description>&lt;p&gt;I switched over to &lt;a href=&#34;https://bear.app&#34;&gt;Bear.app&lt;/a&gt; some time ago after a lengthy search for a note-taking app. At the time, &lt;a href=&#34;https://bear.app&#34;&gt;Bear.app&lt;/a&gt; made sense since I was only using macOS and iOS daily, and it worked well for that.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://assets.denike.io/images/2023/12/Joplin.png&#34; alt=&#34;Joplin&#34;  loading=&#34;lazy&#34;&gt;
&lt;/p&gt;
&lt;p&gt;After moving to a new job that required me to sit behind a Windows computer, I needed to find a replacement, and after trying out different applications and services, I ended up on Notion.&lt;/p&gt;</description>
    </item>
    <item>
      <title>🔒 Switching to Proton VPN</title>
      <link>https://denike.io/Switching-to-Proton-VPN/</link>
      <pubDate>Thu, 20 Jul 2023 15:43:10 +0000</pubDate>
      <guid>https://denike.io/Switching-to-Proton-VPN/</guid>
      <description>&lt;p&gt;&lt;img src=&#34;https://assets.denike.io/images/2023/06/Proton-VPN-Logo.png&#34; alt=&#34;Proton VPN - Logo&#34;  loading=&#34;lazy&#34;&gt;
&lt;/p&gt;
&lt;p&gt;With recent changes that Mullvad had made to service, mainly removing their port forwarding, it was time to look for a replacement. I landed on the VPN service from Proton, which I had used their &lt;em&gt;&lt;strong&gt;Free&lt;/strong&gt;&lt;/em&gt; tier on multiple occasions in the past.&lt;/p&gt;
&lt;p&gt;I had been a fan of Proton for a long time ( &lt;em&gt;Though I never could commit fully to using them, I still liked what they were doing.&lt;/em&gt;) so when it came to start looking they were on the top of my list.&lt;/p&gt;</description>
    </item>
    <item>
      <title>⌚ Apple Watch Ultra</title>
      <link>https://denike.io/apple-watch-ultra/</link>
      <pubDate>Wed, 18 Jan 2023 20:38:28 +0000</pubDate>
      <guid>https://denike.io/apple-watch-ultra/</guid>
      <description>&lt;p&gt;While I would like to say I have been a &amp;quot; &lt;em&gt;longtime&lt;/em&gt;&amp;quot; &lt;a href=&#34;https://amzn.to/3iQWVov&#34;&gt;Apple Watch&lt;/a&gt; user, it has only been a few years… well, since the &lt;strong&gt;Series 3&lt;/strong&gt;, which was my first dive into the world of &lt;a href=&#34;https://amzn.to/3iQWVov&#34;&gt;Apple Watches&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I was never much for watches, and the last thing I wanted was another accessory I had to put on in the morning, charge, care for, etc. Still, I figured back then why not, as the analytics alone were interesting to me, enough so that eating the cost of the watch seemed worth it to me.&lt;/p&gt;</description>
    </item>
    <item>
      <title>💡 A cheaper Phillips Hue LED strip</title>
      <link>https://denike.io/a-cheaper-phillips-hue-led-strip/</link>
      <pubDate>Wed, 22 Dec 2021 14:53:41 +0000</pubDate>
      <guid>https://denike.io/a-cheaper-phillips-hue-led-strip/</guid>
      <description>&lt;p&gt;While I am a huge fan of the Phillips hue lighting system, it is expensive there is no doubt about that. Whenever I visit Home Depot or any other big box store I try to look around the clearance sections as you would be surprised at how often Phillips Hue lights are sitting there selling for a fraction of the cost.&lt;/p&gt;
&lt;p&gt;After moving to our house I started to set up my office space and knew that I wanted to add in some wall accent lighting using a Phillips Hue LED strip, sadly at about &lt;a href=&#34;https://amzn.to/3DKriC8&#34;&gt;$180 for the 5m (16ft section)&lt;/a&gt; it was going to add up in order to add lighting to the selected wall as it was just about &lt;strong&gt;16ft&lt;/strong&gt; in length, and that was not including the main piece with the part that actually connects to the hub.&lt;/p&gt;</description>
    </item>
    <item>
      <title>💾 Adding more storage to my NAS</title>
      <link>https://denike.io/adding-more-storage-to-my-nas/</link>
      <pubDate>Tue, 26 May 2020 13:45:00 +0000</pubDate>
      <guid>https://denike.io/adding-more-storage-to-my-nas/</guid>
      <description>&lt;img src=&#34;https://assets.denike.io/images/2020/05/WD-Disk-drives.jpg&#34; alt=&#34;Eighter Western Digital easy store hard drives.&#34;  loading=&#34;lazy&#34;&gt;

When I purchased my &lt;a href=&#34;https://amzn.to/2TGppl8&#34;&gt;Synology NAS&lt;/a&gt; I filled it with eight &lt;strong&gt;4TB&lt;/strong&gt; drives, and did dual redundancy leaving me with &lt;strong&gt;22TB&lt;/strong&gt; of space that I never thought I would fill…</description>
    </item>
    <item>
      <title>Apple iPhone 11 Pro Max</title>
      <link>https://denike.io/apple-iphone-11-pro-max/</link>
      <pubDate>Wed, 20 May 2020 20:40:16 +0000</pubDate>
      <guid>https://denike.io/apple-iphone-11-pro-max/</guid>
      <description>&lt;img src=&#34;https://assets.denike.io/images/2020/05/iPhone-11-Pro-Max-1024x390.png&#34; alt=&#34;Apple iPhone 11 Pro Max&#34;  loading=&#34;lazy&#34;&gt;

As I mentioned in a &lt;a href=&#34;http://denike.io/switching-to-android/&#34;&gt;previous post&lt;/a&gt; my Apple iPhone 8 Plus had a painful death. So just as any other loyal Apple fanboy would do, I went out and bought an upgrade, and went all-in with the iPhone 11 Pro Max ( &lt;em&gt;256GB model&lt;/em&gt;) in space gray.</description>
    </item>
    <item>
      <title>Switching to Android…</title>
      <link>https://denike.io/switching-to-android/</link>
      <pubDate>Mon, 18 May 2020 17:51:07 +0000</pubDate>
      <guid>https://denike.io/switching-to-android/</guid>
      <description>&lt;img src=&#34;https://assets.denike.io/images/2020/05/mark-s-89U2ScRVPSY-unsplash.jpg&#34; alt=&#34;&#34;  loading=&#34;lazy&#34;&gt;

A while back I picked up a &lt;a href=&#34;https://en.wikipedia.org/wiki/Pixel_3&#34;&gt;Google Pixel 3&lt;/a&gt; to test out, that test lasted all but a day then I put it back in my desk drawer and pitched it to all my friends and family to see if they wanted to buy it off me… clearly that never happened as it was up until this weekend sitting in my desk drawer.</description>
    </item>
    <item>
      <title>📶 Ubiquiti Home Network Upgrade</title>
      <link>https://denike.io/ubiquiti-home-network-upgrade/</link>
      <pubDate>Fri, 06 Jul 2018 16:00:40 +0000</pubDate>
      <guid>https://denike.io/ubiquiti-home-network-upgrade/</guid>
      <description>&lt;img src=&#34;https://assets.denike.iohttp://wp.denike.io/wp-content/uploads/2018/04/Ubiquiti_install.jpg&#34; alt=&#34;&#34;  loading=&#34;lazy&#34;&gt;

{{ double-space-with-newline }}For a while now I have been thinking about upgrading my network, and since moving I have been having more and more issues with my &lt;a href=&#34;https://www.apple.com/airport-time-capsule/&#34;&gt;2TB Apple Time Capsule&lt;/a&gt; where I am forced to reboot it often. Besides rebooting it I have also been experiencing a poor or often times slow signal now that I live in a much larger than when I lived in &lt;a href=&#34;https://en.wikipedia.org/wiki/Denver&#34;&gt;Denver&lt;/a&gt;.</description>
    </item>
    <item>
      <title>📷 Wyze IP Camera</title>
      <link>https://denike.io/wyze-ip-camera/</link>
      <pubDate>Wed, 11 Apr 2018 20:38:08 +0000</pubDate>
      <guid>https://denike.io/wyze-ip-camera/</guid>
      <description>It&amp;rsquo;s been a while since I had an IP camera setup, but recently came across the &lt;a href=&#34;https://www.wyzecam.com&#34;&gt;Wyze IP Camera&lt;/a&gt; which is only &lt;strong&gt;$20&lt;/strong&gt; …. The price was kind of a deterrent at first until I looked at all of the features packed into this small/affordable IP camera.
&lt;img src=&#34;https://assets.denike.iohttp://wp.denike.io/wp-content/uploads/2018/04/wyze_camera-225x300.jpg&#34; alt=&#34;Wyze Camera&#34;  loading=&#34;lazy&#34;&gt;

&lt;a href=&#34;https://www.wyzecam.com&#34;&gt;Wyze&lt;/a&gt; had just released version 2 of their camera so I picked up a pre-order, it took a few weeks longer to arrive than expected due to some issues with the production due to dust on the new CMOS sensor, but the wait was ok by me as it was more of an impulse buy rather than something I really &amp;ldquo;needed&amp;rdquo; to get by on a daily basis.
My first thought, once it arrived, was that it had an Apple feel to the packaging.  It was very minimal, clean, and simple.
The setup was also very easy and done with all via my &lt;a href=&#34;https://www.apple.com/shop/buy-iphone/iphone-8&#34;&gt;iPhone 8 plus&lt;/a&gt;.  You simply power it on, wait a few seconds then hold the setup button which gives you an audible prompt to continue the setup which is</description>
    </item>
    <item>
      <title>Raid Solution</title>
      <link>https://denike.io/raid-solution/</link>
      <pubDate>Tue, 19 Jan 2010 21:22:33 +0000</pubDate>
      <guid>https://denike.io/raid-solution/</guid>
      <description>&lt;p&gt;I am in search of a raid solution. I have been pretty interested in the &lt;a href=&#34;http://www.drobo.com/&#34;&gt;Drobo&lt;/a&gt; but due to the cost of what you get I am not sure its the best method, though the idea is cool. I am thinking instead of maybe getting a few 1tb+ drives and a cheap RAID card and tossing it all into my Linux box as it would provide a lot more than just a storage device, not to mention the cost would be much less.&lt;/p&gt;</description>
    </item>
    <item>
      <title>According to AOL</title>
      <link>https://denike.io/according-to-aol/</link>
      <pubDate>Wed, 19 Apr 2006 15:55:54 +0000</pubDate>
      <guid>https://denike.io/according-to-aol/</guid>
      <description>&lt;p&gt;&amp;ldquo;Linux is only a browser to let you view the internet&amp;rdquo;, and with their security center that runs on Windows it will keep me safe when using Linux&amp;hellip; First class support right there, I tell ya.&lt;/p&gt;</description>
    </item>
    <item>
      <title>🖥️ A couple of things.</title>
      <link>https://denike.io/%EF%B8%8F-a-couple-of-things./</link>
      <pubDate>Fri, 27 May 2005 05:55:02 +0000</pubDate>
      <guid>https://denike.io/%EF%B8%8F-a-couple-of-things./</guid>
      <description>&lt;p&gt;I thought after all these random Life posts, I would post some tech junk. I just got dual displays working on my box @ work&amp;hellip; Granted, the second display is next to worthless as its runs on a shitty &lt;a href=&#34;https://en.wikipedia.org/wiki/S3_Trio&#34;&gt;8meg S3 Trio&lt;/a&gt; card; it lets me do &lt;strong&gt;1024x768 15bit&lt;/strong&gt;. Anything higher than that will either&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Not display anything&lt;/li&gt;
&lt;li&gt;Locks up the computer to the point where I have to unplug the box.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;All in all, it sucks and is slow as shit, but hell, it&amp;rsquo;s nice having my IM&amp;rsquo;s all on one monitor. Now, to get my &lt;a href=&#34;http://www.hauppauge.com/Pages/products/data_gofm.html&#34;&gt;FM/TV Tuner&lt;/a&gt; working, I might be able to make use of the second display.&lt;/p&gt;</description>
    </item>
    <item>
      <title>🖥️ Building a system for a friend.</title>
      <link>https://denike.io/building-a-system-for-a-friend/</link>
      <pubDate>Tue, 31 Aug 2004 02:12:36 +0000</pubDate>
      <guid>https://denike.io/building-a-system-for-a-friend/</guid>
      <description>&lt;p&gt;A friend of mine is looking to get a new machine. He was going to get an all-in-one Sony Vaio, but for &lt;strong&gt;$1600&lt;/strong&gt;, I could build him a way better machine&amp;hellip;&lt;/p&gt;
&lt;p&gt;Here is what I came up with so far, none of which I have checked for the best prices online yet.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;ATI All-In-Wonder® 9800 Pro 128MB AGP Video Card (link) - $250-400&lt;/li&gt;
&lt;li&gt;Not sure of which case I like the Antec, he likes the Lanboy.&lt;/li&gt;
&lt;li&gt;Antec PlusView 1080AMG PC Tower Case (link) - $159&lt;/li&gt;
&lt;li&gt;Super Lanboy Aluminum Super Mini Tower Case ( &lt;a href=&#34;http://web.archive.org/web/20041011041059/http://www.compusa.com/products/product_info.asp?product_code=312199&amp;amp;pfp=BROWSE&#34;&gt;link&lt;/a&gt;) - $89&lt;/li&gt;
&lt;li&gt;Athlon XP 3200 (400mhz FSB) - $111&lt;/li&gt;
&lt;li&gt;Asus A7V600 Motherboard ( &lt;a href=&#34;http://web.archive.org/web/20041011041059/http://usa.asus.com/products/mb/socketa/a7v600/overview.htm#&#34;&gt;link&lt;/a&gt;) - $55&lt;/li&gt;
&lt;li&gt;1GB PC3200 DDR - ( &lt;a href=&#34;http://web.archive.org/web/20041011041059/http://www.pricewatch.com/h/prc.aspx?i=33&amp;amp;a=5025&amp;amp;f=1&#34;&gt;link&lt;/a&gt;) - $113 or maybe 2 gig for about $348&lt;/li&gt;
&lt;li&gt;Western Digital 160GB Caviar® 7200 Hard Drive - (link) - $99&lt;/li&gt;
&lt;/ul&gt;</description>
    </item>
    <item>
      <title>I drank and drank and drank, and I finally fell asleep.</title>
      <link>https://denike.io/i-drank-and-drank-and-drank-and-i-finally-fell-asleep./</link>
      <pubDate>Thu, 04 Dec 2003 23:37:26 +0000</pubDate>
      <guid>https://denike.io/i-drank-and-drank-and-drank-and-i-finally-fell-asleep./</guid>
      <description>&lt;p&gt;and I awoke to this I got the loan.. and ordered the laptop, should be here by Dec 15th Latest.&lt;/p&gt;</description>
    </item>
    <item>
      <title>I smoke too many cigarettes, and I don&#39;t think I&#39;ve been sober for 3 years.</title>
      <link>https://denike.io/i-smoke-too-many-cigarettes-and-i-dont-think-ive-been-sober-for-3-years./</link>
      <pubDate>Wed, 29 Oct 2003 09:34:06 +0000</pubDate>
      <guid>https://denike.io/i-smoke-too-many-cigarettes-and-i-dont-think-ive-been-sober-for-3-years./</guid>
      <description>&lt;p&gt;Sorry about the lack of updates&amp;hellip; been busy. I did post some pictures from the weekend in the gallery, but nothing too exciting. I am working on a new site design to make it look well&amp;hellip; I am a little more custom instead of this damn MovableType default setup. In other news, I gained access to &lt;a href=&#34;http://web.archive.org/web/20040213143953/http://digitalpimpz.com/&#34;&gt;Digitalpimpz.com&lt;/a&gt; anyways defaced it a little bit, and now the webmaster Steve is pretty pissed and hates me and the world&amp;hellip; God I wish I could go back to the days when I cared that much about something&amp;hellip; such as my site ;)&lt;/p&gt;</description>
    </item>
    <item>
      <title>Brief Update</title>
      <link>https://denike.io/brief-update/</link>
      <pubDate>Wed, 18 Jun 2003 00:05:15 +0000</pubDate>
      <guid>https://denike.io/brief-update/</guid>
      <description>&lt;p&gt;Well, not much new in life, same boring shit day after day. I haven&amp;rsquo;t had much time to work on the site&amp;hellip; not that anyone comes here anyways. I did get the Petosky Images uploaded to the gallery.&lt;/p&gt;
&lt;p&gt;Work was pretty fun yesterday and a little bit fun today, we found that a co-worker here has made a site where we can add text to the LED marquee&amp;hellip; the joy of a job in a cubicle&amp;hellip; 😛  ok, well, I don&amp;rsquo;t feel like typing, so here is a picture.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
