<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
>

<channel>
	<title>brandon martinez</title>
	<atom:link href="http://www.brandonmartinez.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brandonmartinez.com</link>
	<description>tech guru and media master</description>
	<lastBuildDate>Wed, 16 Jan 2019 17:44:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.2</generator>
<site xmlns="com-wordpress:feed-additions:1">8070200</site>	<item>
		<title>Where Have I Been?</title>
		<link>http://www.brandonmartinez.com/2018/10/15/where-have-i-been/</link>
				<comments>http://www.brandonmartinez.com/2018/10/15/where-have-i-been/#respond</comments>
				<pubDate>Mon, 15 Oct 2018 15:34:06 +0000</pubDate>
		<dc:creator><![CDATA[Brandon Martinez]]></dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.brandonmartinez.com/?p=30715</guid>
				<description><![CDATA[I know it&#8217;s been a sparse year of posting content. If you want to follow me on a more regular basis, check out my twitter and instagram accounts. If you&#8217;re looking for a more professional relationship, I&#8217;m also available on LinkedIn. I also have a couple side projects you can check out: The Average Enthusiasts: a podcast I run with a friend about… nothing? Everything? Something? Reachable Heights: a place where I make music with friends. These are in addition to the other handful of things I do with my employer, Skyline Technologies, my small side business, Martinez Media, my geek friends over at That Conference, and my church-fam at the Radiant Coast. And of course, Joy, Seth, Perry, and Poppy (our newest addition) keep me busy! Thanks for sticking around; I&#8217;ll post content when I can, but definitely check me out on all those other platforms.]]></description>
								<content:encoded><![CDATA[<p>I know it&#8217;s been a sparse year of posting content. If you want to follow me on a more regular basis, check out my <a href="http://twitter.brandonmartinez.com/" target="_blank" rel="noopener">twitter</a> and <a href="https://www.instagram.com/brandonmartinez/" target="_blank" rel="noopener">instagram</a> accounts. If you&#8217;re looking for a more professional relationship, I&#8217;m also available on <a href="http://linkedin.brandonmartinez.com/" target="_blank" rel="noopener">LinkedIn</a>.</p>
<p>I also have a couple side projects you can check out:</p>
<ul>
<li><a href="http://www.theaverageenthusiasts.com/" target="_blank" rel="noopener">The Average Enthusiasts</a>: a podcast I run with a friend about… nothing? Everything? Something?</li>
<li><a href="http://www.reachableheights.com/" target="_blank" rel="noopener">Reachable Heights</a>: a place where I make music with friends.</li>
</ul>
<p>These are in addition to the other handful of things I do with my employer, <a href="http://www.skylinetechnologies.com/" rel="noopener" target="_blank">Skyline Technologies</a>, my small side business, <a href="http://www.martinezmedia.net/" rel="noopener" target="_blank">Martinez Media</a>, my geek friends over at <a href="https://www.thatconference.com/" rel="noopener" target="_blank">That Conference</a>, and my church-fam at the <a href="http://www.radiantcoast.org/" rel="noopener" target="_blank">Radiant Coast</a>.</p>
<p>And of course, Joy, Seth, Perry, and Poppy (our newest addition) keep me busy!</p>
<p>Thanks for sticking around; I&#8217;ll post content when I can, but definitely check me out on all those other platforms.</p>
]]></content:encoded>
							<wfw:commentRss>http://www.brandonmartinez.com/2018/10/15/where-have-i-been/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">30715</post-id>	</item>
		<item>
		<title>Git Tip: Remove All Local Branches Except Master</title>
		<link>http://www.brandonmartinez.com/2018/10/15/git-tip-remove-all-local-branches-except-master/</link>
				<comments>http://www.brandonmartinez.com/2018/10/15/git-tip-remove-all-local-branches-except-master/#respond</comments>
				<pubDate>Mon, 15 Oct 2018 15:26:36 +0000</pubDate>
		<dc:creator><![CDATA[Brandon Martinez]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://www.brandonmartinez.com/?p=30713</guid>
				<description><![CDATA[Just a quick git tip I found that has been really useful in my git-management workflow. If you want to remove all local branches except master (useful when following gitflow-like conventions and you have a lot of feature branches), run this command: You can make this even easier by adding it as a git alias: To run the command, just run this: Awesome when you&#8217;re finishing up a sprint and don&#8217;t need your local copies anymore!]]></description>
								<content:encoded><![CDATA[<p>Just a quick git tip I found that has been really useful in my git-management workflow. If you want to remove all local branches except master (useful when following gitflow-like conventions and you have a lot of feature branches), run this command:</p>
<pre class="brush: bash; title: Code Example; notranslate">git branch | grep -v &quot;master&quot; | xargs git branch -D</pre>
<p>You can make this even easier by adding it as a git alias:</p>
<pre class="brush: bash; title: Code Example; notranslate">git config --global alias.gbr '!git branch | grep -v &quot;master&quot; | xargs git branch -D'</pre>
<p>To run the command, just run this:</p>
<pre class="brush: bash; title: Code Example; notranslate">git gbr</pre>
<p>Awesome when you&#8217;re finishing up a sprint and don&#8217;t need your local copies anymore!</p>
]]></content:encoded>
							<wfw:commentRss>http://www.brandonmartinez.com/2018/10/15/git-tip-remove-all-local-branches-except-master/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">30713</post-id>	</item>
		<item>
		<title>The Brandon Martinez Award for Innovation</title>
		<link>http://www.brandonmartinez.com/2018/04/26/the-brandon-martinez-award-for-innovation/</link>
				<comments>http://www.brandonmartinez.com/2018/04/26/the-brandon-martinez-award-for-innovation/#respond</comments>
				<pubDate>Thu, 26 Apr 2018 14:28:34 +0000</pubDate>
		<dc:creator><![CDATA[Brandon Martinez]]></dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Awards and Honors]]></category>
		<category><![CDATA[Ferris State Torch]]></category>

		<guid isPermaLink="false">http://www.brandonmartinez.com/?p=30394</guid>
				<description><![CDATA[I was contacted a couple weeks ago by the Ferris State Torch advisor, Steven Fox, with the news that they&#8217;d be naming one of the Ferris State Torch awards after me. They had a student, Keith, that was deserving of an award but they didn&#8217;t quite have something that fit his contributions in helping to innovate at the Torch. The award was designed to honor those that innovate and help move the School newspaper in new directions and keep up with the changing times in the world of news and journalism. I am deeply honored that they would think of me when thinking of innovation at the Torch. When I was at the Torch back in 2009/2010, which seems like forever ago, one of my top initiatives was to transition the website from a static website into something that could be fully managed by the Torch staff. The standard process to get the web edition live was to update a set of Dreamweaver templates, export the static website, and then coordinate with an FSU faculty member to get the Torch area of the Ferris State University website up-to-date. In coordination with the Editor-in-Chief and advisors, I was able to move the [&#8230;]]]></description>
								<content:encoded><![CDATA[<p>I was contacted a couple weeks ago by the Ferris State Torch advisor, Steven Fox, with the news that they&#8217;d be naming one of the <a href="https://fsutorch.com/" target="_blank" rel="noopener">Ferris State Torch</a> awards after me. They had a student, Keith, that was deserving of an award but they didn&#8217;t quite have something that fit his contributions in helping to innovate at the Torch.</p>
<p>The award was designed to honor those that innovate and help move the School newspaper in new directions and keep up with the changing times in the world of news and journalism. I am deeply honored that they would think of me when thinking of innovation at the Torch.</p>
<p><img class="aligncenter wp-image-30404 size-full" src="http://assets.brandonmartinez.com/brandonmartinez/2018/04/31253064_10156237182757381_4682527746895197123_n.jpg" alt="" width="960" height="960" /></p>
<p>When I was at the Torch back in 2009/2010, which seems like forever ago, one of my top initiatives was to transition the website from a static website into something that could be fully managed by the Torch staff.</p>
<p>The standard process to get the web edition live was to update a set of <a href="https://www.adobe.com/devnet/archive/dreamweaver/articles/dreamweaver_custom_templates.html" target="_blank" rel="noopener">Dreamweaver templates</a>, export the static website, and then coordinate with an FSU faculty member to get the Torch area of the Ferris State University website up-to-date. In coordination with the Editor-in-Chief and advisors, I was able to move the Torch from that painstaking process onto a Content Management System (WordPress).</p>
<p>This put the website fully under the Torch&#8217;s control and would be the foundation they used going forward to deliver digital news. In fact, a few years after I left FSU, The Torch was able to partner with the local Big Rapids newspaper, <a href="http://news.pioneergroup.com/bigrapidsnews/" target="_blank" rel="noopener">The Pioneer</a>, to migrate the site onto their WordPress hosting platform to reduce hosting and maintenance costs.</p>
<p>Special shout out to those that helped me join the Torch and welcome me into the family, especially two of my awesome friends James O&#8217;Gorman and Kelsey Schnell. Without James dragging me into the Torch and Kelsey being an excellent Editor-in-Chief to do that initiative with, this honor wouldn&#8217;t be possible.</p>
]]></content:encoded>
							<wfw:commentRss>http://www.brandonmartinez.com/2018/04/26/the-brandon-martinez-award-for-innovation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">30394</post-id>	</item>
		<item>
		<title>Breaking Free in Worship</title>
		<link>http://www.brandonmartinez.com/2018/04/02/breaking-free-in-worship/</link>
				<comments>http://www.brandonmartinez.com/2018/04/02/breaking-free-in-worship/#respond</comments>
				<pubDate>Mon, 02 Apr 2018 12:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Brandon Martinez]]></dc:creator>
				<category><![CDATA[Praise and Worship]]></category>
		<category><![CDATA[Christianity]]></category>
		<category><![CDATA[Church]]></category>

		<guid isPermaLink="false">http://www.brandonmartinez.com/?p=30164</guid>
				<description><![CDATA[For the past year, I have been assisting the Worship Team at my church with logistics, scheduling, and team management. In essence, I&#8217;m an interim-band director as we are currently without a dedicated Worship Leader or Worship Pastor. For most services, and most special events, we can pull a full or half band together without much issue. We always have a vocalist or two and enough instrumentalists to fill out the set (we also use tracks, so instrumentally we can always fill it out more). However, Good Friday was looking like no one would be available except for me and our primary drummer. In a bit of a panic, I personally reached out to everyone on our team to check if they really &#8220;weren&#8217;t available&#8221; or just needed a service off. I was coming up a bit short (it didn&#8217;t help that most of our team was already scheduled for Easter). Luckily, after a bit of begging, I was able to get one of our talented multi-instrumental and vocal members to join me (thank you, Kenny!!). However, he was also going to be leading most of the Easter set (two services on Sunday, two songs for him each service), and [&#8230;]]]></description>
								<content:encoded><![CDATA[<p>For the past year, I have been assisting the Worship Team at my church with logistics, scheduling, and team management. In essence, I&#8217;m an interim-band director as we are currently without a dedicated Worship Leader or Worship Pastor.</p>
<p>For most services, and most special events, we can pull a full or half band together without much issue. We always have a vocalist or two and enough instrumentalists to fill out the set (we also use tracks, so instrumentally we can always fill it out more). However, Good Friday was looking like <strong>no one</strong> would be available except for me and our primary drummer.<span id="more-30164"></span></p>
<p>In a bit of a panic, I personally reached out to everyone on our team to check if they really &#8220;weren&#8217;t available&#8221; or just needed a service off. I was coming up a bit short (it didn&#8217;t help that most of our team was already scheduled for Easter).</p>
<p>Luckily, after a bit of begging, I was able to get one of our talented multi-instrumental and vocal members to join me (thank you, Kenny!!). However, he was also going to be leading most of the Easter set (two services on Sunday, two songs for him each service), and didn&#8217;t want to over work him, either. We wanted to run Good Friday as a worship music-style set, so we compromised and split the set in half.</p>
<p>I have never, ever, sang any sort of lead vocal in front of our church congregation (and until recently, not really even in other settings); there were only two other times I had a mic to be &#8220;backup&#8221; (i.e. mixed below being audible). I mean, the usual setup for vocalists is to spend a couple months on backup before leading one or two songs and then finally getting in the usual rotation. However, I felt the push that this needed to be done; God likes to push us out of comfort zones, right?</p>
<p>So Good Friday comes around, we do our pre-service run-through, it&#8217;s the three guys on stage with our two Pastors coming in-and-out for the occasional scripture reading and to lead communion; our run-through went well.</p>
<p>Service starts, and I just let it all go. I give everything I have to God, and let the Spirit take over whenever and wherever. Was I the next breakthrough worship vocalist? Hardly. Did the Spirit move through the congregation and ignite a night of worship? Definitely and without-a-doubt.</p>
<p>There was even a moment where I asked the entire congregation to break their own comfort zones, and just lift their hands to worship our Lord and Savior. Hands went up so fast, anyone in that room could tell the Spirit was breaking barriers. (As an aside, that may have caused my adrenaline to spike and I totally could not find the melody of the final chorus of our last song :P).</p>
<p>My point on sharing this is that God can use us in ways that we might not expect, or honestly, might be fearful of without His help. Walls will be knocked down, chains will be broken, and we will have the power of God pushing us through when we are willing to put our pride, fear, or whatever else is blocking us, and carry out His will.</p>
<p>Does it always have to be on a microphone? No. That just happened to be my wall that had to be kicked down.</p>
<p>Maybe it&#8217;s something different for you.</p>
<p><iframe id="ls_embed_1522701916" src="https://livestream.com/accounts/16563711/events/8002494/videos/172568433/player?width=960&#038;height=540&#038;enableInfo=true&#038;defaultDrawer=feed&#038;autoPlay=true&#038;mute=false" width="960" height="540" frameborder="0" scrolling="no" allowfullscreen> </iframe></p>
<p><em>Note: I originally shared a version of this on a Facebook group I&#8217;m a part of. If you&#8217;re a worship leader in any capacity, I highly recommend checking it out: <a href="https://www.facebook.com/groups/245479232209868/" rel="noopener" target="_blank">Worship Leaders + on Facebook.</a></em></p>
]]></content:encoded>
							<wfw:commentRss>http://www.brandonmartinez.com/2018/04/02/breaking-free-in-worship/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">30164</post-id>	</item>
		<item>
		<title>Rollback SMB Security in macOS High Sierra</title>
		<link>http://www.brandonmartinez.com/2017/12/28/rollback-smb-security-in-macos-high-sierra/</link>
				<comments>http://www.brandonmartinez.com/2017/12/28/rollback-smb-security-in-macos-high-sierra/#respond</comments>
				<pubDate>Thu, 28 Dec 2017 17:00:02 +0000</pubDate>
		<dc:creator><![CDATA[Brandon Martinez]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[File Sharing]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[macOS]]></category>
		<category><![CDATA[Printers]]></category>
		<category><![CDATA[SMB]]></category>

		<guid isPermaLink="false">http://www.brandonmartinez.com/?p=30044</guid>
				<description><![CDATA[Just a quick tip if you&#8217;re running into issues with SMB shares in macOS High Sierra. I was running into issues with my HP All-in-One Printer/Scanner and saving files to a network share on macOS. Apparently HP does not have SMB up-to-date in their firmware, so if you have strict signing or SMB protocol v3 setup, you need to downgrade it. You can do that with the following set of shell commands: The following is in an interactive shell: Then run the following to restart the service: You may also need to have the File Sharing service restart on every boot if it doesn&#8217;t seem to take effect. You can do that by creating this Property List file: With these contents: And then setting the permissions on that file: Hope that helps! Sources: If you can use AFP but not SMB to mount a file server &#124; Apple Repair file sharing after Security Update 2017-001 for macOS High Sierra 10.13.1 &#124; Apple Turn off packet signing for SMB 2 and SMB 3 connections &#124; Apple WINS workgroup resets every time I startup my MAC]]></description>
								<content:encoded><![CDATA[<p>Just a quick tip if you&#8217;re running into issues with SMB shares in macOS High Sierra. I was running into issues with my HP All-in-One Printer/Scanner and saving files to a network share on macOS. Apparently HP does not have SMB up-to-date in their firmware, so if you have strict signing or SMB protocol v3 setup, you need to downgrade it.<span id="more-30044"></span></p>
<p>You can do that with the following set of shell commands:</p>
<pre class="brush: bash; title: Code Example; notranslate">sudo scutil --prefs com.apple.smb.server.plist</pre>
<p>The following is in an interactive shell:</p>
<pre class="brush: bash; title: Code Example; notranslate">get /

d.add ProtocolVersionMap 2

set /

commit

apply

quit</pre>
<p>Then run the following to restart the service:</p>
<pre class="brush: bash; title: Code Example; notranslate">sudo /usr/libexec/configureLocalKDC
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.smbd.plist
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.smbd.plist</pre>
<p>You may also need to have the File Sharing service restart on every boot if it doesn&#8217;t seem to take effect. You can do that by creating this Property List file</em>:</p>
<pre class="brush: bash; title: Code Example; notranslate">sudo nano /Library/LaunchDaemons/com.me.restart_smb.plist</pre>
<p>With these contents:</p>
<pre class="brush: xml; title: Code Example; notranslate">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;!DOCTYPE plist PUBLIC &quot;-//Apple//DTD PLIST 1.0//EN&quot; &quot;http://www.apple.com/DTDs/PropertyList-1.0.dtd&quot;&gt;
&lt;plist version=&quot;1.0&quot;&gt;
   &lt;dict&gt;
      &lt;key&gt;Label&lt;/key&gt;
      &lt;string&gt;com.me.restart_smb&lt;/string&gt;
      &lt;key&gt;ProgramArguments&lt;/key&gt;
      &lt;array&gt;
         &lt;string&gt;/bin/bash&lt;/string&gt;
         &lt;string&gt;-c&lt;/string&gt;
         &lt;string&gt;sleep 60;touch &quot;/Library/Preferences/SystemConfiguration/com.apple.smb.server.plist&quot;&lt;/string&gt;
      &lt;/array&gt;
      &lt;key&gt;RunAtLoad&lt;/key&gt;
      &lt;true /&gt;
   &lt;/dict&gt;
&lt;/plist&gt;</pre>
<p>And then setting the permissions on that file:</p>
<pre class="brush: bash; title: Code Example; notranslate">sudo chown root:wheel com.me.restart_smb.plist
sudo chmod 644 com.me.restart_smb.plist</pre>
<p>Hope that helps!</p>
<p>Sources:</p>
<ul>
<li><a title="If you can use AFP but not SMB to mount a file server | Apple" href="https://support.apple.com/en-us/HT204021" target="_blank" rel="noopener">If you can use AFP but not SMB to mount a file server | Apple</a></li>
<li><a title="Repair file sharing after Security Update 2017-001 for macOS High Sierra 10.13.1 | Apple" href="https://support.apple.com/en-us/HT208317" target="_blank" rel="noopener">Repair file sharing after Security Update 2017-001 for macOS High Sierra 10.13.1 | Apple</a></li>
<li><a title="Turn off packet signing for SMB 2 and SMB 3 connections | Apple" href="https://support.apple.com/en-us/HT205926" target="_blank" rel="noopener">Turn off packet signing for SMB 2 and SMB 3 connections | Apple</a></li>
<li><a title="WINS workgroup resets every time I startup my MAC" href="https://discussions.apple.com/thread/4512558" target="_blank" rel="noopener">WINS workgroup resets every time I startup my MAC</a></li>
</ul>
]]></content:encoded>
							<wfw:commentRss>http://www.brandonmartinez.com/2017/12/28/rollback-smb-security-in-macos-high-sierra/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">30044</post-id>	</item>
		<item>
		<title>Gulp, Grunt, Webpack: What&#8217;s a Dev to Choose? [Screencast]</title>
		<link>http://www.brandonmartinez.com/2017/10/20/gulp-grunt-webpack-whats-a-dev-to-choose-screencast/</link>
				<comments>http://www.brandonmartinez.com/2017/10/20/gulp-grunt-webpack-whats-a-dev-to-choose-screencast/#respond</comments>
				<pubDate>Fri, 20 Oct 2017 12:26:51 +0000</pubDate>
		<dc:creator><![CDATA[Brandon Martinez]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[#ThatConference]]></category>
		<category><![CDATA[ALM]]></category>
		<category><![CDATA[DevOps]]></category>
		<category><![CDATA[Grunt]]></category>
		<category><![CDATA[Gulp]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Webpack]]></category>

		<guid isPermaLink="false">http://www.brandonmartinez.com/?p=29174</guid>
				<description><![CDATA[This past summer I had the pleasure of presenting at That Conference 2017 with my talk titled Gulp, Grunt, Webpack: What&#8217;s a Dev to Choose?. In my session, I demonstrated two of the most popular JavaScript task runners, Grunt and Gulp, being used with two of the most popular bundling systems, webpack and browserify, and how they can fit into your JavaScript workflow. If you were able to catch my presentation, thank you for coming out to support me! If you didn&#8217;t have the opportunity, or you want a refresher on the content, then you&#8217;re in for a treat: I recorded a streamlined version of my talk as a screencast. Check it out! All of the slides and source can be found on my GitHub Repository. The slides can also be viewed on GitHub Pages.]]></description>
								<content:encoded><![CDATA[<p>This past summer I had the pleasure of presenting at <a title="That Conference | Gulp, Grunt, Webpack: What's a Dev to Choose? by Brandon Martinez" href="https://www.thatconference.com/sessions/session/11122" target="_blank" rel="noopener">That Conference 2017</a> with my talk titled <a title="That Conference | Gulp, Grunt, Webpack: What's a Dev to Choose? by Brandon Martinez" href="https://www.thatconference.com/sessions/session/11122" target="_blank" rel="noopener">Gulp, Grunt, Webpack: What&#8217;s a Dev to Choose?</a>. In my session, I demonstrated two of the most popular JavaScript task runners, <a href="https://gruntjs.com/" target="_blank" rel="noopener">Grunt</a> and <a href="https://gulpjs.com/" target="_blank" rel="noopener">Gulp</a>, being used with two of the most popular bundling systems, <a href="https://webpack.js.org/" target="_blank" rel="noopener">webpack</a> and <a href="http://browserify.org/" target="_blank" rel="noopener">browserify</a>, and how they can fit into your JavaScript workflow.</p>
<p>If you were able to catch my presentation, thank you for coming out to support me! If you didn&#8217;t have the opportunity, or you want a refresher on the content, then you&#8217;re in for a treat: I recorded a streamlined version of my talk as a screencast. Check it out!<span id="more-29174"></span></p>
<div class="embed-vimeo" style="text-align: center;"><iframe src="https://player.vimeo.com/video/239046751" width="1161" height="653" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe></div>
<p>All of the slides and source can be found on my <a href="https://github.com/brandonmartinez/mm-gulp-grunt-webpack-comparison" target="_blank" rel="noopener">GitHub Repository</a>. The <a href="https://brandonmartinez.github.io/mm-gulp-grunt-webpack-comparison/slides/#/" target="_blank" rel="noopener">slides can also be viewed on GitHub Pages</a>.</p>
]]></content:encoded>
							<wfw:commentRss>http://www.brandonmartinez.com/2017/10/20/gulp-grunt-webpack-whats-a-dev-to-choose-screencast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">29174</post-id>	</item>
		<item>
		<title>The Average Enthusiasts</title>
		<link>http://www.brandonmartinez.com/2017/09/20/the-average-enthusiasts/</link>
				<comments>http://www.brandonmartinez.com/2017/09/20/the-average-enthusiasts/#respond</comments>
				<pubDate>Wed, 20 Sep 2017 12:00:44 +0000</pubDate>
		<dc:creator><![CDATA[Brandon Martinez]]></dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[#TAE]]></category>
		<category><![CDATA[#TheAverageEnthusiasts]]></category>

		<guid isPermaLink="false">http://www.brandonmartinez.com/?p=29064</guid>
				<description><![CDATA[I&#8217;ve been pretty quiet on the blog lately. It&#8217;s not that I haven&#8217;t been doing anything blog-worthy, but I&#8217;ve been creating content in other places! With that in mind, I&#8217;d like to announce a new podcast: The Average Enthusiasts. The Average Enthusiasts are Kenny Graham and myself. The general topics of the podcast are anything from consumer tech to gaming, with potential of things like cooking, photography, family, and more. Subscribe and follow us to catch new episodes! You can find us on: iTunes Facebook Youtube Twitter Instagram]]></description>
								<content:encoded><![CDATA[<p>I&#8217;ve been pretty quiet on the blog lately. It&#8217;s not that I haven&#8217;t been doing anything blog-worthy, but I&#8217;ve been creating content in other places! With that in mind, I&#8217;d like to announce a new podcast: The Average Enthusiasts.<span id="more-29064"></span></p>
<p><a href="http://www.theaverageenthusiasts.com/" target="_blank"><img src="http://assets.brandonmartinez.com/brandonmartinez/2017/10/The-Average-Enthusiasts-Album-Cover-AvailableOniTunes-300x300.png" alt="" width="300" height="300" class="aligncenter size-thumbnail wp-image-29264" /></a></p>
<p>The Average Enthusiasts are Kenny Graham and myself. The general topics of the podcast are anything from consumer tech to gaming, with potential of things like cooking, photography, family, and more.</p>
<p>Subscribe and follow us to catch new episodes! You can find us on:</p>
<ul>
<li><a href="http://bmtn.us/2y5FLug" rel="noopener" target="_blank">iTunes</a></li>
<li><a href="http://bmtn.us/2jXUrW1" rel="noopener" target="_blank">Facebook</a></li>
<li><a href="http://bmtn.us/2k1wnBV" rel="noopener" target="_blank">Youtube</a></li>
<li><a href="http://bmtn.us/2jYGmrx" rel="noopener" target="_blank">Twitter</a></li>
<li><a href="http://bmtn.us/2jXUvVL" rel="noopener" target="_blank">Instagram</a></li>
</ul>
]]></content:encoded>
							<wfw:commentRss>http://www.brandonmartinez.com/2017/09/20/the-average-enthusiasts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">29064</post-id>	</item>
		<item>
		<title>Gulp, Grunt, Webpack: What&#8217;s a Dev to Choose?</title>
		<link>http://www.brandonmartinez.com/2017/08/08/gulp-grunt-webpack-whats-a-dev-to-choose/</link>
				<comments>http://www.brandonmartinez.com/2017/08/08/gulp-grunt-webpack-whats-a-dev-to-choose/#respond</comments>
				<pubDate>Tue, 08 Aug 2017 07:30:14 +0000</pubDate>
		<dc:creator><![CDATA[Brandon Martinez]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[#ThatConference]]></category>
		<category><![CDATA[ALM]]></category>
		<category><![CDATA[DevOps]]></category>
		<category><![CDATA[Grunt]]></category>
		<category><![CDATA[Gulp]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Webpack]]></category>

		<guid isPermaLink="false">http://www.brandonmartinez.com/?p=28634</guid>
				<description><![CDATA[Thanks to anyone that came out to watch my presentation at That Conference. If you&#8217;re looking for slides, source, or other materials, you can find all of those on GitHub. The slides can also be viewed on GitHub Pages. I would also love to see a pull request from anyone that would like to do a full pipeline of webpack (using loaders and such). My requirements are that you use the existing assets (mostly) untouched to accommodate webpack. Thanks again if you made it out to my talk; I hope you enjoyed it as well as the conference!]]></description>
								<content:encoded><![CDATA[<p>Thanks to anyone that came out to <a href="https://www.thatconference.com/sessions/session/11122" target="_blank" rel="noopener">watch my presentation at That Conference</a>. If you&#8217;re looking for slides, source, or other materials, you can find all of those on <a href="https://github.com/brandonmartinez/mm-gulp-grunt-webpack-comparison" target="_blank" rel="noopener">GitHub</a>. The <a href="https://brandonmartinez.github.io/mm-gulp-grunt-webpack-comparison/slides/#/" target="_blank" rel="noopener">slides can also be viewed on GitHub Pages</a>.<span id="more-28634"></span></p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/08/MartinezMedia-ThatConference-20170808226-2-Proof.jpg"><img class="aligncenter size-medium wp-image-28724" src="http://assets.brandonmartinez.com/brandonmartinez/2017/08/MartinezMedia-ThatConference-20170808226-2-Proof-1200x800.jpg" alt="" width="1200" height="800" /></a></p>
<p>I would also love to see a pull request from anyone that would like to do a full pipeline of webpack (using loaders and such). My requirements are that you use the existing assets (mostly) untouched to accommodate webpack.</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/08/MartinezMedia-ThatConference-20170808228-2-Proof.jpg"><img class="aligncenter size-medium wp-image-28734" src="http://assets.brandonmartinez.com/brandonmartinez/2017/08/MartinezMedia-ThatConference-20170808228-2-Proof-1200x800.jpg" alt="" width="1200" height="800" /></a></p>
<p>Thanks again if you made it out to my talk; I hope you enjoyed it as well as the conference!</p>
]]></content:encoded>
							<wfw:commentRss>http://www.brandonmartinez.com/2017/08/08/gulp-grunt-webpack-whats-a-dev-to-choose/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">28634</post-id>	</item>
		<item>
		<title>A Week in Seattle</title>
		<link>http://www.brandonmartinez.com/2017/06/09/a-week-in-seattle/</link>
				<comments>http://www.brandonmartinez.com/2017/06/09/a-week-in-seattle/#respond</comments>
				<pubDate>Fri, 09 Jun 2017 04:22:02 +0000</pubDate>
		<dc:creator><![CDATA[Brandon Martinez]]></dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.brandonmartinez.com/?p=27021</guid>
				<description><![CDATA[Last month I had the opportunity to head out to Seattle, WA for the Microsoft Build 2017 Conference. It was an amazing experience to get out to the West Coast and experience another side of the US, in addition to the amazing conference. Flying Across the US This was my first journey across the United States via plane. It was awesome to see the changing terrain! Here&#8217;s a shot flying over Colorado: A shot as I made it closer to California: And landed in Seattle: Leaving the airport: And hopping off the light rail: The Hotel I stayed at a pretty awesome hotel: The Fairmont Olympic Hotel. Inside the main lobby: A look around the inside of the hotel room: The Conference: Microsoft Build 2017 The conference was amazing! The keynotes were fantastic, the sessions were awesome, and the thousands of people were great to interact with. I already did a set of recaps of the three days of the conference. You can find them here: Day 1, Day 2, and Day 3. The Conference Party Microsoft puts on an awesome part for all the conference goers. They rent out CenturyLink Field, fill it with food and beverage vendors, have [&#8230;]]]></description>
								<content:encoded><![CDATA[<p>Last month I had the opportunity to head out to Seattle, WA for the Microsoft Build 2017 Conference. It was an amazing experience to get out to the West Coast and experience another side of the US, in addition to the amazing conference.<span id="more-27021"></span></p>
<h2>Flying Across the US</h2>
<p>This was my first journey across the United States via plane. It was awesome to see the changing terrain! Here&#8217;s a shot flying over Colorado:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509021-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-27811" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509021-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<p>A shot as I made it closer to California:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509027-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-27831" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509027-Proof-LQ-1200x900.jpg" alt="" width="1200" height="900" /></a></p>
<p>And landed in Seattle:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509088-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-27841" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509088-Proof-LQ-1200x900.jpg" alt="" width="1200" height="900" /></a></p>
<p>Leaving the airport:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509106-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-27871" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509106-Proof-LQ-1200x900.jpg" alt="" width="1200" height="900" /></a></p>
<p>And hopping off the light rail:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509116-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-27881" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509116-Proof-LQ-1200x900.jpg" alt="" width="1200" height="900" /></a></p>
<h2>The Hotel</h2>
<p>I stayed at a pretty awesome hotel: The Fairmont Olympic Hotel.</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509123-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-27901" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509123-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509125-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-27891" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509125-Proof-LQ-1200x900.jpg" alt="" width="1200" height="900" /></a></p>
<p>Inside the main lobby:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509128-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-27941" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509128-Proof-LQ-1200x900.jpg" alt="" width="1200" height="900" /></a></p>
<p>A look around the inside of the hotel room:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509133-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-27911" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509133-Proof-LQ-1200x540.jpg" alt="" width="1200" height="540" /></a></p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509139-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-27921" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509139-Proof-LQ-1200x900.jpg" alt="" width="1200" height="900" /></a></p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509140-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-27931" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170509140-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<h2>The Conference: Microsoft Build 2017</h2>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170510156-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-27961" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170510156-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<p>The conference was amazing! The keynotes were fantastic, the sessions were awesome, and the thousands of people were great to interact with.</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170510162-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-27971" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170510162-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<p>I already did a set of recaps of the three days of the conference. You can find them here: <a href="http://www.brandonmartinez.com/2017/05/11/microsoft-build-2017-day-1-recap/">Day 1</a>, <a href="http://www.brandonmartinez.com/2017/05/12/microsoft-build-2017-day-2-recap/">Day 2</a>, and <a href="http://www.brandonmartinez.com/2017/05/12/microsoft-build-2017-day-3-recap/">Day 3</a>.</p>
<h2>The Conference Party</h2>
<p>Microsoft puts on an awesome part for all the conference goers. They rent out CenturyLink Field, fill it with food and beverage vendors, have life performances and various activities.</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170511009-3-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28011" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170511009-3-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<p>Walking into the stadium we were presented with a pile of light-up bands.</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170511017-3-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28021" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170511017-3-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<p>Lots of food, activities, and people!</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170511025-3-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28031" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170511025-3-Proof-LQ-1200x900.jpg" alt="" width="1200" height="900" /></a></p>
<p>The field had some activities and areas to congregate.</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170511043-3-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28041" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170511043-3-Proof-LQ-1200x900.jpg" alt="" width="1200" height="900" /></a></p>
<p>One of the groups of Midwesterners I met up with; bunch of crazies!</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170511050-3-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28051" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170511050-3-Proof-LQ-1200x901.jpg" alt="" width="1200" height="901" /></a></p>
<h2>Exploring Seattle</h2>
<p>I had a little bit of time to explore Seattle before heading back to Michigan. Obviously since I was in the land of coffee drinkers, I had to hit up some of the shops (<a href="http://caschw.com/" target="_blank" rel="noopener">Carl</a> makes a guest appears off to the left):</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512002-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28081" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512002-Proof-LQ-1200x900.jpg" alt="" width="1200" height="900" /></a></p>
<p>I thought this menu was pretty hilarious:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512006-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28082" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512006-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<p>Some pretty awesome espresso; look at that color!</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512009-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28091" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512009-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<p>Some pillars as we were walking towards the Starbucks Roastery.</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512018-2-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28101" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512018-2-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<p>Our Lady!</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512019-2-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28111" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512019-2-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<p>Inside the Starbucks Roastery:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512025-2-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28121" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512025-2-Proof-LQ-1200x414.jpg" alt="" width="1200" height="414" /></a></p>
<p>Getting their roast on!</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512033-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28151" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512033-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<p>First time experiencing a siphon brew in-person:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512035-2-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28161" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170512035-2-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<p>Hitting up the &#8220;first&#8221; Starbucks:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170513090-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28171" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170513090-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<p>Pike&#8217;s Market:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170513103-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28181" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170513103-Proof-LQ-1200x900.jpg" alt="" width="1200" height="900" /></a></p>
<p>The Waterfront:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170513133-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28192" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170513133-Proof-LQ-1200x470.jpg" alt="" width="1200" height="470" /></a></p>
<p>I thought this wall art was pretty awesome:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170513158-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28201" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170513158-Proof-LQ-1200x900.jpg" alt="" width="1200" height="900" /></a></p>
<p>And of course, what&#8217;s a visit to Seattle without hitting up the Space Needle:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170513174-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28211" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170513174-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170513209-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28231" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170513209-Proof-LQ-1200x314.jpg" alt="" width="1200" height="314" /></a></p>
<h2>Heading Home</h2>
<p>If you have an overnight flight and can swing the expense, I highly recommend flying first class.</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170513337-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28062" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170513337-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170514363-Proof-LQ.jpg"><img class="aligncenter size-medium wp-image-28071" src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/MartinezMedia-20170514363-Proof-LQ-1200x1600.jpg" alt="" width="1200" height="1600" /></a></p>
<h2>A Visual Recap</h2>
<p><iframe src="https://www.smugmug.com/frame/slideshow?key=CW2TgH&autoStart=1&captions=0&navigation=0&playButton=&randomize=0&speed=1&transition=fade&transitionSpeed=3" width="100%" height="650" frameborder="no" scrolling="no"></iframe><br />
<a href="http://bmtn.us/2qXdeE2" target="_blank" rel="noopener noreferrer">View the full gallery on SmugMug.</a></p>
<p>I did try to take as many photos as possible. <a href="http://bmtn.us/2qXdeE2" target="_blank" rel="noopener noreferrer">I&#8217;ve uploaded them to a gallery</a> if you&#8217;d like to view more of my brief travels through Seattle.</p>
]]></content:encoded>
							<wfw:commentRss>http://www.brandonmartinez.com/2017/06/09/a-week-in-seattle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">27021</post-id>	</item>
		<item>
		<title>Doxie Go Power Requirements</title>
		<link>http://www.brandonmartinez.com/2017/06/01/doxie-go-power-requirements/</link>
				<comments>http://www.brandonmartinez.com/2017/06/01/doxie-go-power-requirements/#respond</comments>
				<pubDate>Thu, 01 Jun 2017 12:00:12 +0000</pubDate>
		<dc:creator><![CDATA[Brandon Martinez]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Doxie]]></category>
		<category><![CDATA[Doxie Go]]></category>

		<guid isPermaLink="false">http://www.brandonmartinez.com/?p=27781</guid>
				<description><![CDATA[Recently my Doxie Go&#8216;s battery has been… acting up; essentially, it won&#8217;t charge over USB anymore. I&#8217;ve had the scanner now for a few years, so it&#8217;s not terribly surprising that the internal battery may be starting to act up; however, I&#8217;ve been really pleased with the Doxie Go and didn&#8217;t want to replace it as my primary scanner. Luckily, there is a port on the side to plug-in an external power supply (it does charge over USB normally, but there&#8217;s not enough power to charge the battery and scan at the same time). Since I was in a bit of a pinch to get some documents scanned, I popped over to my local Walmart and bought one of these: However, I wasn&#8217;t quite sure what power settings I needed. After some major digging, I found an Amazon review that lists the power output of the official Doxie Worldwide Power Adapter. If you need to do something similar, you need to set your AC adapter to an output of 6V DC @ 1.5amps with a center positive polarity. Hopefully this helps someone else!]]></description>
								<content:encoded><![CDATA[<p>Recently my <a href="http://www.getdoxie.com/product/doxie-go/" target="_blank">Doxie Go</a>&#8216;s battery has been… acting up; essentially, it won&#8217;t charge over USB anymore. I&#8217;ve had the scanner now for a few years, so it&#8217;s not terribly surprising that the internal battery may be starting to act up; however, I&#8217;ve been really pleased with the Doxie Go and didn&#8217;t want to replace it as my primary scanner.<span id="more-27781"></span></p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/home-scanner.png"><img src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/home-scanner.png" alt="" width="892" height="374" class="aligncenter size-full wp-image-28291" /></a></p>
<p>Luckily, there is a port on the side to plug-in an external power supply (it does charge over USB normally, but there&#8217;s not enough power to charge the battery and scan at the same time). Since I was in a bit of a pinch to get some documents scanned, I popped over to my local Walmart and bought one of these:</p>
<p><a href="http://assets.brandonmartinez.com/brandonmartinez/2017/06/IMG_5255-e1496982398603.jpg"><img src="http://assets.brandonmartinez.com/brandonmartinez/2017/06/IMG_5255-e1496982398603-1200x1600.jpg" alt="" width="1200" height="1600" class="aligncenter size-medium wp-image-28281" /></a></p>
<p>However, I wasn&#8217;t quite sure what power settings I needed. After some major digging, I found an Amazon review that lists the power output of the official <a href="http://help.getdoxie.com/doxiego/faq/scanner/chargeandscan/" target="_blank">Doxie Worldwide Power Adapter</a>. If you need to do something similar, you need to set your AC adapter to an output of <strong>6V DC @ 1.5amps with a center positive polarity</strong>. Hopefully this helps someone else!</p>
]]></content:encoded>
							<wfw:commentRss>http://www.brandonmartinez.com/2017/06/01/doxie-go-power-requirements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">27781</post-id>	</item>
	</channel>
</rss>
