<?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/"
	>

<channel>
	<title>Andrew Maxwell</title>
	<atom:link href="http://andrewcmaxwell.com/feed" rel="self" type="application/rss+xml" />
	<link>http://andrewcmaxwell.com</link>
	<description>Front-end Software Engineering Manager in San Francisco, California</description>
	<lastBuildDate>Mon, 03 Nov 2025 23:27:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.8</generator>
	<item>
		<title>Note Driven Development (NDD)</title>
		<link>http://andrewcmaxwell.com/2018/03/note-driven-development-ndd</link>
		<comments>http://andrewcmaxwell.com/2018/03/note-driven-development-ndd#respond</comments>
		<pubDate>Thu, 15 Mar 2018 18:57:20 +0000</pubDate>
		<dc:creator><![CDATA[Andrew]]></dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Organization]]></category>
		<category><![CDATA[Technology and Web]]></category>

		<guid isPermaLink="false">http://andrewcmaxwell.com/?p=3264</guid>
		<description><![CDATA[Note Driven Development (NDD for short) is my take on the rubber ducky debugging technique with an added bonus. Before I begin explaining NDD let [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Note Driven Development (NDD for short) is my take on the <em>rubber ducky debugging technique</em> with an added bonus. Before I begin explaining NDD let me describe what <em>rubber ducky debugging</em> is:</p>
<p>In <a href="https://en.m.wikipedia.org/wiki/Software_engineering" target="_blank" rel="noopener">software engineering</a>, <strong>rubber duck debugging</strong> or <strong>rubber ducking</strong> is a method of <a href="https://en.m.wikipedia.org/wiki/Debugging" target="_blank" rel="noopener">debugging</a> code. The name is a reference to a story in the book <a href="https://en.m.wikipedia.org/wiki/The_Pragmatic_Programmer" target="_blank" rel="noopener"><em>The Pragmatic Programmer</em></a> in which a programmer would carry around a <a href="https://en.m.wikipedia.org/wiki/Rubber_duck" target="_blank" rel="noopener"><em>rubber duck</em></a> and debug their code by forcing themselves to explain it, line-by-line, to the duck.</p>
<p>The rubber ducky technique actually works and gets to the same outcome of explaining your problem to a co-worker or friend. But I see it as short lived and comes in only after you&#8217;ve already written code. With NDD it solves the same problem and takes it steps further by starting earlier in your process, adding documentation to your code, adding tests before you begin, and can be used for reference at a later date.</p>
<p>Instead of talking out-loud in the office to a rubber duck and looking like a crazy person, write down your task breaking it down into single sentences, similar to a check list.</p>
<p>Let&#8217;s take the following task and break it down to give you an idea of how to use NDD.</p>
<p><strong>Goal: Create a pop-up that asks the user to confirm deleting a note.</strong></p>
<p>Steps:</p>
<ol>
<li>User clicks on a delete button</li>
<li>User is presented with a pop-up</li>
<li>User clicks a button to delete their note in the pop-up</li>
<li>Note is removed</li>
</ol>
<p>Pretty simple, but this is just the first draft. Now let&#8217;s dive deeper into what&#8217;s really needed to complete this pop-up. The goal is still the same, but notice how the steps are fleshed out with specific detail, using sub-tasks.</p>
<p><strong>Goal: Create a pop-up that asks the user to confirm deleting a note.</strong></p>
<p>Steps:</p>
<ol>
<li>User clicks on a delete button</li>
<li>User is presented with a pop-up
<ol>
<li>Create a pop-up that is centered on the page</li>
<li>In the pop-up it has a header text that says: &#8220;are you sure you want to delete your note?&#8221;</li>
<li>Button 1: &#8220;cancel&#8221;
<ol>
<li>to not delete the note, which closes the pop-up</li>
</ol>
</li>
<li>Button 2: &#8220;delete&#8221;
<ol>
<li>to confirm that you want to delete the note</li>
</ol>
</li>
</ol>
</li>
<li>User clicks a button to delete their note in the pop-up
<ol>
<li>Removes your note</li>
<li>Closes the modal</li>
</ol>
</li>
<li>Note is removed</li>
</ol>
<p>We still have the same 4 steps, but now fleshed out to what is actually needed during development.</p>
<p><strong>Here are the benefits:</strong><br />
1. From here you can create a new file in your programming language of choice and paste in these steps, turning these steps into code comments. Now you instantly have documentation for what your feature is doing.</p>
<p>2. When you&#8217;re building your feature you can now focus on doing one step at a time, ensuring that each part of your code does one thing, and that one thing extremely well, while matching to your code comment.</p>
<p>3. This is a great way to kick off Test Driven Development(TDD for short). You know how the code should function and can write pseudo-code for your tests before a single line of your feature is actually written.</p>
<p>4. During any part of the development phase while coding, you can always look at your code comments and know exactly what needs to be done, or at what area you may be stuck in.</p>
<p><strong>Everything together:</strong><br />
Now when your feature is complete you will have clean documentation, tests to run your code, and if you get stuck along the way, you can look at the steps again while debugging and make sure that your code is still following and is executing how you outlined above.</p>
<p>And that&#8217;s it, the idea is very basic and I&#8217;m sure many of you are actually doing this without truly knowing. Now that you know how this technique helps you become a better developer, use it to your advantage, and help teach others so that they don&#8217;t get stuck in the black hole of debugging.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewcmaxwell.com/2018/03/note-driven-development-ndd/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maxwell Weekly 7: #52</title>
		<link>http://andrewcmaxwell.com/2017/06/maxwell-weekly-7-52</link>
		<comments>http://andrewcmaxwell.com/2017/06/maxwell-weekly-7-52#respond</comments>
		<pubDate>Tue, 06 Jun 2017 13:23:20 +0000</pubDate>
		<dc:creator><![CDATA[Andrew]]></dc:creator>
				<category><![CDATA[Weekly7]]></category>

		<guid isPermaLink="false">http://andrewcmaxwell.com/?p=3261</guid>
		<description><![CDATA[The final one, it&#8217;s here. Development (article): Chrome headless So-long Phantom.js and welcome a new standards way of using a headless browser, I hope Edge [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>The final one, it&#8217;s here.</p>
<ol>
<li><strong>Development (article): <a href="https://developers.google.com/web/updates/2017/04/headless-chrome" target="_blank">Chrome headless</a></strong>
<ul>
<li>So-long Phantom.js and welcome a new standards way of using a headless browser, I hope Edge and Firefox follow suit.</li>
</ul>
</li>
<li><strong>Games (video): <a href="https://www.youtube.com/watch?v=pUYYChF1-Bs" target="_blank">Top 10 Best Fighting Games of All Time</a></strong>
<ul>
<li>Watch the entire video and see if you agree with their top pick, I do! The top pick is the game my older sister and I use to play when we went to visit our dad for the weekend. She always loved it because she would win.</li>
</ul>
</li>
<li><strong>Development (article): <a href="https://azure.microsoft.com/en-us/blog/streamlining-kubernetes-development-with-draft/" target="_blank">Streamlining Kubernetes development with Draft</a></strong>
<ul>
<li>Microsoft stepped up their Kubernetes game when they acquired Deis (the company behind Helm)and they just release their first Kubernetes product as part of Microsoft, <strong>Draft</strong>.</li>
</ul>
</li>
<li><strong>Movies (video): <a href="https://www.youtube.com/watch?v=Mu41hu1a_8c" target="_blank">The Mountain Between Us Trailer #1</a></strong>
<ul>
<li>I hope that if I meet a stranger on an airplane and this happens that they will be just as helpful. With how the world has been lately, I highly doubt it.</li>
</ul>
</li>
<li><strong>Development (article): <a href="https://www.nginx.com/blog/introducing-cicd-with-nginx-and-nginx-plus/" target="_blank">Introducing CI/CD with NGINX and NGINX Plus</a></strong>
<ul>
<li>Continuous Integration and Continuous Delivery are a passion of mine and this tutorial show how you can set up a system of your own, using NGINX.</li>
</ul>
</li>
<li><strong>Development (article): <a href="https://medium.com/@mikeal/thank-you-good-bye-but-not-really-48edf832f5b2" target="_blank">Thank You. Good Bye. But Not Really.</a></strong>
<ul>
<li>A leader in Node.js is stepping down, but not leaving the scene.</li>
</ul>
</li>
<li><strong>Development (video): <a href="https://www.youtube.com/watch?v=pPsREQbf3PA" target="_blank">Creating Effective Images</a></strong>
<ul>
<li>Learn the steps needed to create effective docker images and streamlined layers.</li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://andrewcmaxwell.com/2017/06/maxwell-weekly-7-52/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maxwell Weekly 7: #51</title>
		<link>http://andrewcmaxwell.com/2017/05/maxwell-weekly-7-51</link>
		<comments>http://andrewcmaxwell.com/2017/05/maxwell-weekly-7-51#respond</comments>
		<pubDate>Tue, 30 May 2017 00:13:37 +0000</pubDate>
		<dc:creator><![CDATA[Andrew]]></dc:creator>
				<category><![CDATA[Weekly7]]></category>

		<guid isPermaLink="false">http://andrewcmaxwell.com/?p=3258</guid>
		<description><![CDATA[Development (article): npm v5.0.0 Just as I have my team moving to yarn NPM finally releases an update… though it still doesn’t look to solve [&#8230;]]]></description>
				<content:encoded><![CDATA[<ol>
<li><strong>Development (article): <a href="http://blog.npmjs.org/post/161081169345/v500" target="_blank">npm v5.0.0</a></strong>
<ul>
<li>Just as I have my team moving to yarn NPM finally releases an update… though it still doesn’t look to solve the major issue of uninstalling/reinstalling the same modules over and over again for a clean development environment</li>
</ul>
</li>
<li><strong>Development (article): <a href="https://cloudplatform.googleblog.com/2017/05/istio-modern-approach-to-developing-and.html" target="_blank">Istio: a modern approach to developing and managing microservices</a></strong>
<ul>
<li>A new tool built by Google, Lyft, and IBM to help you manage your microservices on Kubernetes</li>
</ul>
</li>
<li><strong>Productivity (article): <a href="http://observer.com/2017/05/the-collectors-fallacy-why-we-gather-things-we-dont-need/" target="_blank">The Collector’s Fallacy: Why We Gather Things We Don’t Need</a></strong>
<ul>
<li>Digital hoarding is a thing, and I even have a small case of it…</li>
</ul>
</li>
<li><strong>Development (article): <a href="https://arstechnica.com/information-technology/2017/05/90-of-windows-devs-now-using-git-creating-1760-windows-builds-per-day/" target="_blank">Windows switch to Git almost complete: 8,500 commits and 1,760 builds each day</a></strong>
<ul>
<li>Microsoft continues with their open source movement and are almost done porting over all Windows development to Git</li>
</ul>
</li>
<li><strong>Drones (article): <a href="https://www.theverge.com/2017/5/24/15684728/dji-announces-spark-cheapest-mini-drone" target="_blank">DJI&#8217;s $499 Spark is the company&#8217;s cheapest and tiniest drone yet</a></strong>
<ul>
<li>This little drone looks pretty sweet, and the price-tag isn’t bad either. We love going on short day trips with our son but we are stuck lugging around his diaper bag so every extra ounce is precious. Thanks to the size of this drone it is something that could easily go on trips with us.</li>
</ul>
</li>
<li><strong>Productivity (article): <a href="https://www.fastcompany.com/40422776/why-james-comeys-obsessive-note-taking-is-a-smart-strategy-for-surviving-difficult-bosses" target="_blank">Why James Comey’s Obsessive Note-Taking Is A Smart Strategy For Surviving Difficult Bosses</a></strong>
<ul>
<li>Obsessive notes come in handy, They; State the facts, get buy-in from your boss, gain clarity when priorities shift, remind others of their commitment, and provide context.</li>
</ul>
</li>
<li><strong>Development (video): <a href="https://www.youtube.com/watch?v=PjjlwAvV8Jg" target="_blank">DevTools: State of the Union 2017 (Google I/O ’17)</a></strong>
<ul>
<li>Another year, more great tools thanks to Paul Irish and team. Node debugger, screenshots, and better console output.</li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://andrewcmaxwell.com/2017/05/maxwell-weekly-7-51/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maxwell Weekly 7: #50</title>
		<link>http://andrewcmaxwell.com/2017/05/maxwell-weekly-7-50</link>
		<comments>http://andrewcmaxwell.com/2017/05/maxwell-weekly-7-50#respond</comments>
		<pubDate>Sun, 21 May 2017 18:57:53 +0000</pubDate>
		<dc:creator><![CDATA[Andrew]]></dc:creator>
				<category><![CDATA[Weekly7]]></category>

		<guid isPermaLink="false">http://andrewcmaxwell.com/?p=3256</guid>
		<description><![CDATA[Linux (article): Ubuntu Desktop Team Discuss Their Plans for GNOME in Ubuntu 17.10 Ubuntu is finally leaving behind their unity desktop and moving to Gnome, learn [&#8230;]]]></description>
				<content:encoded><![CDATA[<ol>
<li><strong>Linux (article): <a href="http://www.omgubuntu.co.uk/2017/05/ubuntu-switch-to-gnome-questions-answered" target="_blank">Ubuntu Desktop Team Discuss Their Plans for GNOME in Ubuntu 17.10</a></strong>
<ul>
<li>Ubuntu is finally leaving behind their unity desktop and moving to Gnome, learn how they plan to complete the move in the next 6 months.</li>
</ul>
</li>
<li><strong>Productivity (article): <a href="https://blog.evernote.com/blog/2017/05/02/work-effectively-productively-eisenhower-matrix" target="_blank">Work More Effectively and Productively with the Eisenhower Matrix</a></strong>
<ul>
<li>Trying to figure out what should be next on your To-Do list by stack ranking is hard, using the Eisenhower matrix to help you decide.</li>
</ul>
</li>
<li><strong>Cars (video): <a href="https://youtu.be/opsmd5yuBF0" target="_blank">Autonomous Drifting using Machine Learning</a></strong>
<ul>
<li>Drifting is fun to watch, now imagine using machine learn for &#8220;the perfect drift&#8221;</li>
</ul>
</li>
<li><strong>Productivity (article): <a href="http://www.makeuseof.com/tag/evernote-project-management/" target="_blank">How to Use Evernote as a Project Management Tool</a></strong>
<ul>
<li>Another interesting use case for Evernote. It always fascinates me how people take notes and use Evernote.</li>
</ul>
</li>
<li><strong>Development (article): <a href="https://github.com/blog/2360-git-2-13-has-been-released" target="_blank">Git 2.13 has been released</a></strong>
<ul>
<li>Many people use Git everyday but very few know that it gets updates often which actually improves day to day development and issues. This release finally has a feature that I and many others have been wanting, &#8220;Conditional configuration”.</li>
</ul>
</li>
<li><strong>Future (video): <a href="https://www.youtube.com/watch?v=zIwLWfaAg-8" target="_blank">The future we&#8217;re building &#8212; and boring | Elon Musk</a></strong>
<ul>
<li>Elon Musk is a very refined gentleman and I enjoy watching him talk about the future and what he is doing to help get us there. All of his ideas are pretty grandiose.</li>
</ul>
</li>
<li><strong>Productivity (code): <a href="https://github.com/blainesch/alfred-chrome-bookmarks" target="_blank">Fast Chrome bookmark searcher for Alfred</a></strong>
<ul>
<li>Alfred is my second most used application, right after Evernote and I’ve been improving my workflows lately and stumbled across this one which allows me to search through my Chrome bookmarks from any window</li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://andrewcmaxwell.com/2017/05/maxwell-weekly-7-50/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maxwell Weekly 7: #49</title>
		<link>http://andrewcmaxwell.com/2017/05/maxwell-weekly-7-49</link>
		<comments>http://andrewcmaxwell.com/2017/05/maxwell-weekly-7-49#respond</comments>
		<pubDate>Sat, 13 May 2017 02:52:15 +0000</pubDate>
		<dc:creator><![CDATA[Andrew]]></dc:creator>
				<category><![CDATA[Weekly7]]></category>

		<guid isPermaLink="false">http://andrewcmaxwell.com/?p=3254</guid>
		<description><![CDATA[Funny (video): Chris Pratt Plays &#8216;Speak Out’ I watched this video this morning and it made my jaw hurt and put me in tears. Productivity (article): The Best [&#8230;]]]></description>
				<content:encoded><![CDATA[<ol>
<li><strong>Funny (video): <a href="https://youtu.be/Kt6UkFtWYl8" target="_blank">Chris Pratt Plays &#8216;Speak Out’</a></strong>
<ul>
<li>I watched this video this morning and it made my jaw hurt and put me in tears.</li>
</ul>
</li>
<li><strong>Productivity (article): <a href="http://www.makeuseof.com/tag/organize-evernote-tags/" target="_blank">The Best Way to Organize Evernote: Use Tags</a></strong>
<ul>
<li>I use a decent number of tags within Evernote, one of my favorite tools, learn how you can use them too!</li>
</ul>
</li>
<li><strong>Productivity (article): <a href="https://9to5google.com/2017/05/04/google-calendar-redesign-late-2017/" target="_blank">G Suite product roadmap reveals Google Calendar web redesign, scheduled for late 2017</a></strong>
<ul>
<li>Google Calendar is FINALLY getting a makeover, check out what other features it is getting.</li>
</ul>
</li>
<li><strong>Movies (video): <a href="https://youtu.be/N6cUzYzz0vM" target="_blank">Absolutely Anything Trailer #1</a></strong>
<ul>
<li>What would you do if you had the power to do anything?</li>
</ul>
</li>
<li><strong>Development (article): <a href="https://medium.com/@samthor/es6-modules-in-chrome-canary-m60-ba588dfb8ab7" target="_blank">ES6 Modules in Chrome Canary (M60+)</a></strong>
<ul>
<li>I love ES6 modules and I can’t wait to use them in the browser without other tooling… It’s coming. I still remember using AMD’s back in the early 2000’s</li>
</ul>
</li>
<li><strong>Development (video): <a href="https://youtu.be/6TYtHJpgKK4" target="_blank">Microsoft Build 2017 keynote in 8 minutes</a></strong>
<ul>
<li>The new Microsoft just keeps getting better and better. More linux love and better use of users history.</li>
</ul>
</li>
<li><strong>Linux (video): <a href="https://youtu.be/U8Adzkyo4SM" target="_blank">Deepin 15.4 &#8211; See What&#8217;s New</a></strong>
<ul>
<li>Deepin linux has a very clean UI. This is the first time I have heard about Deepin. I hope by me sharing this article more people find out about it and try to switch over to linux for their desktop.</li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://andrewcmaxwell.com/2017/05/maxwell-weekly-7-49/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maxwell Weekly 7: #48</title>
		<link>http://andrewcmaxwell.com/2017/05/maxwell-weekly-7-48</link>
		<comments>http://andrewcmaxwell.com/2017/05/maxwell-weekly-7-48#respond</comments>
		<pubDate>Fri, 05 May 2017 15:12:12 +0000</pubDate>
		<dc:creator><![CDATA[Andrew]]></dc:creator>
				<category><![CDATA[Weekly7]]></category>

		<guid isPermaLink="false">http://andrewcmaxwell.com/?p=3252</guid>
		<description><![CDATA[Developer (article): Google Assistant SDK I’ve wanted Google Home to be on my laptop for a while, now this can finally happen! Productivity (article): Do vs. Done [&#8230;]]]></description>
				<content:encoded><![CDATA[<ol>
<li><strong>Developer (article): <a href="https://developers.google.com/assistant/sdk/" target="_blank">Google Assistant SDK</a></strong>
<ul>
<li>I’ve wanted Google Home to be on my laptop for a while, now this can finally happen!</li>
</ul>
</li>
<li><strong>Productivity (article): <a href="https://blog.evernote.com/blog/2017/04/12/do-lists-vs-done-lists-jot-down-small-wins-amplify-success/" target="_blank">Do vs. Done Lists: Jot Down Your Small Wins to Amplify Success</a></strong>
<ul>
<li>I keep all of my to-do items in a “to-do completed” notebook and I never knew how productive and motivating it would be to look back on them.</li>
</ul>
</li>
<li><strong>Movies (video): <a href="https://www.youtube.com/watch?v=vTvohqtCy_0" target="_blank">Kill Switch Teaser Trailer #1</a></strong>
<ul>
<li>This looks like a fun sci-fi action movie to watch with the family.</li>
</ul>
</li>
<li><strong>Space (article): <a href="https://www.theverge.com/2017/5/4/15539934/spacex-satellite-internet-launch-2019" target="_blank">SpaceX plans to launch first internet-providing satellites in 2019</a></strong>
<ul>
<li>I truly think that the Internet is one of the greatest inventions of all time and I bet my career on it, so hearing that more companies are working on ways to improve connectivity for everyone around the world makes me extremely happy.</li>
</ul>
</li>
<li><strong>Technology (video): <a href="https://www.youtube.com/watch?v=DFKFnkP_sLQ" target="_blank">Dope Tech: The 4K OLED Wallpaper TV!</a></strong>
<ul>
<li>Nothing to say here but DAMN!, This TV might actually be too thin.</li>
</ul>
</li>
<li><strong>Design (article): <a href="https://www.youtube.com/new" target="_blank">YouTube releases a new redesign</a></strong>
<ul>
<li>I tried out the new design the day it was introduced and it was pretty awesome but a few things didn’t work so well just yet. Comments had no separation / borders, watch later playlist was only half baked, and the Chromecast support was cluggy. I look forward to YouTubes progress.</li>
</ul>
</li>
<li><strong>Productivity (article): <a href="https://blogs.office.com/2017/04/19/introducing-microsoft-to-do-now-available-in-preview/" target="_blank">Introducing Microsoft To-Do—now available in Preview</a></strong>
<ul>
<li>Microsoft has really been stepping up their game lately when it comes to design and easy to use applications and To-Do is a prime example of their hard work!</li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://andrewcmaxwell.com/2017/05/maxwell-weekly-7-48/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maxwell Weekly 7: #47</title>
		<link>http://andrewcmaxwell.com/2017/04/maxwell-weekly-7-47</link>
		<comments>http://andrewcmaxwell.com/2017/04/maxwell-weekly-7-47#respond</comments>
		<pubDate>Sat, 29 Apr 2017 15:37:19 +0000</pubDate>
		<dc:creator><![CDATA[Andrew]]></dc:creator>
				<category><![CDATA[Weekly7]]></category>

		<guid isPermaLink="false">http://andrewcmaxwell.com/?p=3250</guid>
		<description><![CDATA[Technology (article): Google Cloud Boss Diane Greene Wants To Be Ahead Of Amazon By 2022 Google is creating and releasing new cloud technology every couple weeks [&#8230;]]]></description>
				<content:encoded><![CDATA[<ol>
<li><strong>Technology (article): <a href="https://www.forbes.com/sites/alexkonrad/2017/04/23/google-cloud-boss-aims-for-top-in-2022/#7bf393fc107e" target="_blank">Google Cloud Boss Diane Greene Wants To Be Ahead Of Amazon By 2022</a></strong>
<ul>
<li>Google is creating and releasing new cloud technology every couple weeks and I think they have a chance of dethroning Amazon as the king of cloud… like they did with Apple and the mobile OS.</li>
</ul>
</li>
<li><strong>Star Wars (article): <a href="http://io9.gizmodo.com/the-newest-little-golden-books-give-kids-a-crash-course-1794450129" target="_blank">The Newest Little Golden Books Give Kids a Crash Course in Everything Star Wars</a></strong>
<ul>
<li>My love for Star Wars should be pretty apparent to everyone and Disney has come out with Golden Books for kids so that my son can enjoy Star Wars from his childhood.</li>
</ul>
</li>
<li><strong>Technology (video): <a href="https://youtu.be/suo_aUTUpps" target="_blank">Google Earth’s Incredible 3D Imagery, Explained</a></strong>
<ul>
<li>Web Apps, Web Apps, Web Apps. I whole heartily believe that web apps will be the future of applications and Google completely rebuilt Google Earth into only a web application.</li>
</ul>
</li>
<li><strong>Photography (video): <a href="https://www.youtube.com/watch?v=DtmGMcMeEJE" target="_blank">Top 5 Smartphone Cameras: The Blind Test!</a></strong>
<ul>
<li>Whitney and I enjoyed watching this together and we both voted blindly and chose the Google Pixel.</li>
</ul>
</li>
<li><strong>Transportation (article): <a href="http://money.cnn.com/2017/04/24/technology/larry-page-flying-car/" target="_blank">Google cofounder&#8217;s &#8216;flying car&#8217; makes its debut</a></strong>
<ul>
<li>I’ve never been a big fan of the idea of flying cars as they still seem inadequate and this one doesn’t help my bias.</li>
</ul>
</li>
<li><strong>Travel (article): <a href="http://www.theverge.com/2017/4/26/15437334/google-trips-bus-train-reservation-tracking-sharing" target="_blank">Google’s Trips app is becoming an even better travel companion</a></strong>
<ul>
<li>Whitney and I have been trying to travel a lot more lately and usually we document our travel items into Evernote or a Google Doc but having a dedicated app to keep it all is great. Maybe we will use it for our next family trip.</li>
</ul>
</li>
<li><strong>Transportation (video): <a href="https://youtu.be/u5V_VzRrSBI" target="_blank">The Boring Company | Tunnels</a></strong>
<ul>
<li>Elon Musk’s tunnel project gets a visual rendering and insight into what he has been working on</li>
</ul>
</li>
</ol>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://andrewcmaxwell.com/2017/04/maxwell-weekly-7-47/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maxwell Weekly 7: #46</title>
		<link>http://andrewcmaxwell.com/2017/04/maxwell-weekly-7-46</link>
		<comments>http://andrewcmaxwell.com/2017/04/maxwell-weekly-7-46#respond</comments>
		<pubDate>Thu, 20 Apr 2017 22:14:37 +0000</pubDate>
		<dc:creator><![CDATA[Andrew]]></dc:creator>
				<category><![CDATA[Weekly7]]></category>

		<guid isPermaLink="false">http://andrewcmaxwell.com/?p=3247</guid>
		<description><![CDATA[Productivity (article): Microsoft to shut down Wunderlist in favor of its new app, To-Do Wunderlist has been around for a long time and it looks [&#8230;]]]></description>
				<content:encoded><![CDATA[<ol>
<li><strong>Productivity (article): <a href="https://techcrunch.com/2017/04/19/microsoft-to-shut-down-wunderlist-in-favor-of-its-new-app-to-do/" target="_blank">Microsoft to shut down Wunderlist in favor of its new app, To-Do</a></strong>
<ul>
<li>Wunderlist has been around for a long time and it looks like Microsoft is following Apple and Google’s footsteps and creating a powerhouse suite of tools for it’s users and closing down Wunderlist and creating a new office 365 product called To-Do.</li>
</ul>
</li>
<li><strong>Technology (article): <a href="http://www.theverge.com/circuitbreaker/2017/4/20/15364960/google-home-speaker-multi-user-new-feature" target="_blank">Google Home now supports multiple users, but still can’t separate work and personal accounts</a></strong>
<ul>
<li>I really need to set this up so that my wife doesn’t look up crazy stuff under my account  ;)</li>
</ul>
</li>
<li><strong>Environment (article): <a href="http://gizmodo.com/look-at-the-profound-difference-between-californias-dro-1794335536" target="_blank">Look at the Profound Difference Between California&#8217;s Drought and California Today</a></strong>
<ul>
<li>It’s hard to imagine just how bad the drought in California really was until you see these images.</li>
</ul>
</li>
<li><strong>Productivity (article): <a href="https://itsfoss.com/boostnote-linux-review/" target="_blank">Boostnote: Open Source Note Taking App For Programmers</a></strong>
<ul>
<li>Learning about new productivity tools is always a treat, finding one which is tailored to programmers is even better. I checked it out, but I need a bit more features because of GTD.</li>
</ul>
</li>
<li><strong>Star Wars (video): <a href="https://youtu.be/Kae-JjbLsgA" target="_blank">Star Wars Battlefront II: Full Length Reveal Trailer</a></strong>
<ul>
<li>Amazing game, almost makes me want to buy a next-gem game console just to play it.</li>
</ul>
</li>
<li><strong>Star Wars (video): <a href="https://www.youtube.com/watch?v=zB4I68XVPzQ" target="_blank">Star Wars: The Last Jedi Official Teaser</a></strong>
<ul>
<li>Breath! Who is the last Jedi?</li>
</ul>
</li>
<li><strong>Development (article): <a href="https://groups.google.com/d/msg/phantomjs/9aI5d-LDuNE/5Z3SMZrqAQAJ" target="_blank">[Announcement] Stepping down as maintainer of PhantomJS</a></strong>
<ul>
<li>PhantomJS has been around for years and has been a staple for frontend engineering but with headless chrome coming soon, most engineerings will switch and the creator of PhantomJS knows it. Learn more as to why he made the decision.</li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://andrewcmaxwell.com/2017/04/maxwell-weekly-7-46/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maxwell Weekly 7: #45</title>
		<link>http://andrewcmaxwell.com/2017/04/maxwell-weekly-7-45</link>
		<comments>http://andrewcmaxwell.com/2017/04/maxwell-weekly-7-45#respond</comments>
		<pubDate>Fri, 14 Apr 2017 15:40:14 +0000</pubDate>
		<dc:creator><![CDATA[Andrew]]></dc:creator>
				<category><![CDATA[Weekly7]]></category>

		<guid isPermaLink="false">http://andrewcmaxwell.com/?p=3244</guid>
		<description><![CDATA[Science (article): Evidence of Unknown Human Species Found in DNA of Melanesians For the longest time humans thought that there was only 2 species that evolved [&#8230;]]]></description>
				<content:encoded><![CDATA[<div>
<ol>
<li><b>Science (article): <a href="http://bigthink.com/paul-ratner/evidence-of-unknown-human-species-found-in-dna-of-melanesians" target="_blank">Evidence of Unknown Human Species Found in DNA of Melanesians</a></b>
<ul>
<li>For the longest time humans thought that there was only 2 species that evolved together, now it appears to be 3 different species.</li>
</ul>
</li>
<li><b>Personal (podcast): </b><a href="http://www.gistia.com/episode-29-challenging-every-day-tasks-gopro-andrew-maxwell/" target="_blank"><b>Episode 29 &#8211; Challenging every day tasks at GoPro with Andrew Maxwell</b></a>
<ul>
<li>I was interviewed for the people of tech podcast talking about how I got started in development and what I do at GoPro as a software engineering manager</li>
</ul>
</li>
<li><b>Energy (article): <a href="https://qz.com/953614/california-produced-so-much-power-from-solar-energy-this-spring-that-wholesale-electricity-prices-turned-negative/" target="_blank">California is getting so much power from solar that wholesale electricity prices are turning negative</a></b>
<ul>
<li>The united states is finally making ground on its promise to using 100% renewable energy and I hope this trend continues to spike upwards.</li>
</ul>
</li>
<li><b>Productivity (article): <a href="https://blog.evernote.com/blog/2017/04/11/5-cool-ways-use-touch-bar-evernote/" target="_blank">5 Cool Ways to Use the Touch Bar With Evernote</a></b>
<ul>
<li>Now if only I had the new Mac Book Pro with the touch bar….. Hint.. Hint.. Wife!</li>
</ul>
</li>
<li><b>Science (video): <a href="https://youtu.be/IZsn_hg15cM" target="_blank">We Can Now Grow Human Bones From Stem Cells!</a></b>
<ul>
<li>Stem Cells can do a lot these days and scientists are continuously finding new uses, now we can grow real human bones form our own DNA</li>
</ul>
</li>
<li><b>Cars (video): <a href="https://youtu.be/cKZ9RnTBdsg" target="_blank">Ford built a baby bed</a></b>
<ul>
<li>Does your baby love the car seat and only falls asleep when you drive? Ford created a baby bed which mimic the sound, vibration, and even the street lights so that your little one can sleep at home.</li>
</ul>
</li>
<li><b>Virtual Reality (video): <a href="https://youtu.be/Ji_nK6Mc1UU" target="_blank">Speak to Go: Explore the world with your voice</a></b>
<ul>
<li>Google created a new Web VR experiment for your mobile device to transport you anywhere in the world that you want to go.</li>
</ul>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://andrewcmaxwell.com/2017/04/maxwell-weekly-7-45/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maxwell Weekly 7: #44</title>
		<link>http://andrewcmaxwell.com/2017/04/maxwell-weekly-7-44</link>
		<comments>http://andrewcmaxwell.com/2017/04/maxwell-weekly-7-44#respond</comments>
		<pubDate>Sat, 08 Apr 2017 15:36:53 +0000</pubDate>
		<dc:creator><![CDATA[Andrew]]></dc:creator>
				<category><![CDATA[Weekly7]]></category>

		<guid isPermaLink="false">http://andrewcmaxwell.com/?p=3240</guid>
		<description><![CDATA[Development (video): ES2018 First Look &#8211; it changes everything Dot syntax everywhere! Software (video): New YouTube app UI with pop-up comments Google always experiments and adjusts their [&#8230;]]]></description>
				<content:encoded><![CDATA[<ol>
<li><strong>Development (video): <a href="https://www.youtube.com/watch?v=s-G_RZ4RJLU" target="_blank">ES2018 First Look &#8211; it changes everything</a></strong>
<ul>
<li>Dot syntax everywhere!</li>
</ul>
</li>
<li><strong>Software (video): <a href="https://www.youtube.com/watch?v=ooWLTU13LVU" target="_blank">New YouTube app UI with pop-up comments</a></strong>
<ul>
<li>Google always experiments and adjusts their UX to be better for users and I think this pop-up comments section does just that. It&#8217;s clean, it gives comments a better focus, and will allow for more dedicated features in the future.</li>
</ul>
</li>
<li><strong>Development (article): <a href="https://cloudplatform.googleblog.com/2017/04/Google-Container-Engine-fires-up-Kubernetes-1-6.html" target="_blank">Google Container Engine fires up Kubernetes 1.6</a></strong>
<ul>
<li>Kubernetes continues to be one of the most contributed open source projects in the world and with over 5,000 commits in Kubernetes 1.6 with dozens of major updates, these are now available on Container Engine.</li>
</ul>
</li>
<li><strong>Animals (video): <a href="https://www.youtube.com/watch?v=oS830cxjVFk" target="_blank">GIANT SCREAMING FROG!</a></strong>
<ul>
<li>This giant frog sounds like a cat meowing</li>
</ul>
</li>
<li><strong>UX (video): <a href="https://www.youtube.com/watch?v=as4pZhodG5I" target="_blank">Introducing Thumbs | Netflix</a></strong>
<ul>
<li>Netflix improves their user experience by moving away from a 5 star rating and switching to a thumbs up/down model.</li>
</ul>
</li>
<li><strong>Star Wars (video): <a href="https://www.youtube.com/watch?v=JGyOenuNmIw" target="_blank">Rogue One: A Star Wars Story &#8220;Designing the U-wing”</a></strong>
<ul>
<li>781 designs for ONE space ship on Star Wars</li>
</ul>
</li>
<li><strong>Fashion (video): <a href="https://www.youtube.com/watch?v=VmL-KDgXCNw" target="_blank">Silicon Valley&#8217;s Favorite Shoe Company Has Some New Kicks | WIRED</a></strong>
<ul>
<li>I have the Allbirds wool runner shoes and they are extremely comfortable, as soon as these new shoes became available I had to order them.</li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://andrewcmaxwell.com/2017/04/maxwell-weekly-7-44/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
