<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Blog | David Kircos</title><link>https://www.davidkircos.com/blog/</link><description>All posts are my own opinion and do not represent any organization I am affiliated with.</description><atom:link href="https://www.davidkircos.com/blog/feeds/rss/" rel="self"></atom:link><language>en-us</language><category>blogging</category><category>books</category><category>developer</category><category>diversity</category><category>finance</category><category>fun</category><category>life</category><category>mental health</category><category>music</category><category>optimism</category><category>outdoors</category><category>personal tracking</category><category>politics</category><category>projects</category><category>random</category><category>running</category><category>software development process</category><category>startups</category><category>toolkit</category><category>venture capital</category><category>work</category><category>world</category><lastBuildDate>Sun, 30 Oct 2022 20:08:42 +0000</lastBuildDate><item><title>The Next Generation of Web Is Here</title><link>https://www.davidkircos.com/blog/the-next-generation-of-the-web-is-here/</link><description>&lt;p&gt;WASM and WebGL are here, and they power the generation of the web. Web Assembly enables &lt;strong&gt;native performance applications with the distribution of a website&lt;/strong&gt;. Web Assembly or WASM is a way to compile C++, C, Rust, and other programs into a format that can run in the web browser. WebGL is a graphics library that allows you to use the graphics card to have much more power and control over what is rendered on the screen than the standard web languages HTML, JS, and CSS. With WebGL, you can control how every frame and every pixel is drawn. Combining the UI and UX control of WebGL and the performance of WASM enables a new generation of web applications.&lt;/p&gt;
&lt;p&gt;Few people are talking about this today, even though WASM + WebGL applications are already disrupting big business. For example, Adobe. A native performance application is required to edit photos and create graphics. Now with WASM, you can get native performance in the browser, and with WebGL, you can get the pixel-perfect controls that users need in a graphics editing program. If you've used Figma, you have used a WASM + WebGL application! Figma is disrupting Adobe because their application is effortless to start using. You go to their website, and it loads in less than 3 seconds. That's it. Adobe Creative Cloud takes over an hour to install. With Figma, you can share and collaborate on your work with the full power of the application. Previously people exported graphics from Adobe applications to show them to coworkers, now, they can share them in the application, and anyone can make changes. Being based on the web brings the whole team into an application previously only used by designers and illustrators. This team collaboration is enabled by the application being a website, and the performance is enabled by Web Assembly.&lt;/p&gt;
&lt;p&gt;The magical part of WASM + WebGL is that there is nothing to install or configure, and the user doesn't even know it's being used. As of November 2017, WASM is supported in all major browsers, including first-class support on iPhone and Android. WASM runs everywhere. For the first time, you can build a native performance application that runs on every platform by default. This is a step forward from the Web2 world of HTML, JS, and CSS. Performance + distribution is why I argue that WASM and WebGL are the next generation of the web.&lt;/p&gt;
&lt;p&gt;Let me prove to you that WASM completely changes the game. Here is a full &lt;a href="https://copy.sh/v86/?profile=windows98" target="_blank"&gt;Windows 98 emulator&lt;/a&gt; running in the browser. Yes, that is an entire operating system running in the web browser. It can even load already booted up because WASM is a consistent build target across all browsers and systems its behavior is also consistent across all platforms. This is a huge step forward from Web2 and enables native code to run consistently on all platforms. This changes the game for both Native Applications and websites by blurring the lines and allowing developers to combine the strength of both. Performance + distribution. &lt;/p&gt;
&lt;p&gt;WASM + WebGL has already significantly disrupted graphics and photo editing, so what's next? Applications where performance and user interface are tightly tied together that are critical to the usability of the application will be disrupted by WASM. It's my prediction this will have a massive impact on the gaming industry, as well as video editing. The native performance and instant wide distribution of WASM + WebGL will also disrupt data science. Projects such as duck-db are showing great traction in this space, they have built a performant in-memory database that runs seamlessly in WASM.&lt;/p&gt;
&lt;p&gt;This is why I started a data science company rethinking spreadsheets. Our product is called &lt;a href="https://Quadratic.to"&gt;Quadratic&lt;/a&gt;. We are building the first WASM + WebGL spreadsheet application. Quadratic runs entirely in the browser and can load millions of rows of data in seconds. You can use data science languages such as Python and SQL, all directly in cells. You can freely pan and zoom to navigate large data sets (like Figma). Our grids are as easy to use as Google Sheets and are as powerful as your computer running Excel, Python, and SQL natively. Performance + distribution. It would not have been possible to build Quadratic without WASM or WebGL.&lt;/p&gt;
&lt;p&gt;PS We are hiring developers. Check out our careers page at &lt;a href="https://careers.quadratic.to" target="_blank"&gt;https://careers.quadratic.to&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Sun, 30 Oct 2022 20:08:42 +0000</pubDate><guid>https://www.davidkircos.com/blog/the-next-generation-of-the-web-is-here/</guid><category>startups</category></item><item><title>End to End Testing for Expo Apps With CircleCI &amp;amp; Detox</title><link>https://www.davidkircos.com/blog/end-to-end-testing-for-expo-apps-with-circleci-detox/</link><description>&lt;p&gt;It is becoming increasingly common for developers to begin to develop their apps with &lt;a href="https://expo.io/"&gt;Expo&lt;/a&gt; with React Native. Expo is a great developer experience for getting started. However, some more advanced workflows for publishing production applications do not come out of the box. One of the missing workflows is end-to-end testing. So we set out to develop a method to run tests on our expo app using Continous Integration. Here is the configuration we came up with to successfully use &lt;a href="https://circleci.com/"&gt;CircleCI&lt;/a&gt; to test our &lt;a href="https://expo.io/"&gt;Expo&lt;/a&gt; app using the testing framework &lt;a href="https://github.com/wix/Detox"&gt;Detox&lt;/a&gt; + &lt;a href="https://jestjs.io/"&gt;Jest&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Below is our &lt;code&gt;config.yml&lt;/code&gt; file. Our process works by performing the following steps:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Install application dependencies.&lt;/li&gt;
&lt;li&gt;Log into the ExpoCLI using env vars (you have to set these in the CircleCI UI).&lt;/li&gt;
&lt;li&gt;Instruct Expo to do an iOS build with the target simulator.&lt;/li&gt;
&lt;li&gt;Download the build from Expo and extract it.&lt;/li&gt;
&lt;li&gt;Install testing packages.&lt;/li&gt;
&lt;li&gt;Run tests using detox test.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;code&gt;config.yml&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;
&lt;script src="https://gist.github.com/davidkircos/4bf3db0400d366eb3a11481cb8aa7230.js"&gt;&lt;/script&gt;
&lt;/p&gt;
&lt;p&gt;Here is a copy of our &lt;code&gt;.detoxrc.json&lt;/code&gt; file&lt;/p&gt;
&lt;p&gt;
&lt;script src="https://gist.github.com/davidkircos/97bf46429bbabff5d3313a58eba3996a.js"&gt;&lt;/script&gt;
&lt;/p&gt;
&lt;p&gt;And here is our &lt;code&gt;testing/config.json&lt;/code&gt; file&lt;/p&gt;
&lt;p&gt;
&lt;script src="https://gist.github.com/davidkircos/b1f95ae34f2a3e947c80f501c58143c3.js"&gt;&lt;/script&gt;
&lt;/p&gt;
&lt;p&gt;Our test runner takes about 10 minutes to set up and run a set of ~10 tests. The test setup is probably partially redundant and could be sped up. However, this works for us today! We hope this is helpful for you in setting up Expo End to End Testing!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Mon, 19 Apr 2021 17:22:12 +0000</pubDate><guid>https://www.davidkircos.com/blog/end-to-end-testing-for-expo-apps-with-circleci-detox/</guid><category>developer</category></item><item><title>Django + Postgres Views</title><link>https://www.davidkircos.com/blog/django-postgres-views/</link><description>&lt;p&gt;Over the years, the Django ORM has become my go-to way to interact with a database from Python. It is an incredibly robust binding between the database and Python. As Postgres added advanced database features, the Django ORM kept up. An early example of this is Django's implementation of JSONB fields. The JSONB fields allowed you to save JSON as a field and interact with the JSON object's contents from the SQL query level. Django quickly supported this powerful feature. Awesome.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Another powerful feature added Postgres added is Views. Views are a simple database feature that allows you to create an alias for a common query. Suppose you were routinely running a SELECT statement on a table of transactions for the category outdoor_products:&lt;/p&gt;
&lt;pre&gt;SELECT * FROM tranactions_table WHERE product_type='outdoor'&lt;/pre&gt;
&lt;p&gt;In Postgres, you can save this query as a view for future reference.&lt;/p&gt;
&lt;div&gt;
&lt;pre&gt;&lt;span&gt;CREATE OR REPLACE VIEW 'outdoor_product_transactions_view' AS &lt;br/&gt;  (&lt;span&gt;SELECT * FROM tranactions_table WHERE product_type='outdoor')&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;div&gt;Then you can just&lt;/div&gt;
&lt;pre&gt;SELECT * FROM &lt;span&gt;outdoor_product_transactions_view&lt;/span&gt;&lt;/pre&gt;
&lt;div&gt;And easily apply additional filters&lt;/div&gt;
&lt;pre&gt;&lt;span&gt;SELECT * FROM &lt;/span&gt;&lt;span&gt;outdoor_product_transactions_view WHERE amount &amp;gt; 1000&lt;/span&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;This feature is great for complex queries you are regularly repeating.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;In the application I am currently building, there are complex queries that I run regularly on our API. I would also like our BI tools to benefit from these complex queries without repeating the logic in SQL. So I set out to create an easy way for a Django queryset to manage a Postgres view.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Here is the result:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;create_or_replace_view.py&lt;/em&gt;&lt;/p&gt;
&lt;pre&gt;from django.db import connection


def create_or_replace_view(view_name, view_qs):
    with connection.cursor() as cursor:
        queryset = view_qs
        compiler = queryset.query.get_compiler(using=queryset.db)
        sql, params = compiler.as_sql()
        sql = "CREATE OR REPLACE VIEW {view} AS {sql}".format(
            view=connection.ops.quote_name(view_name), sql=sql
        )
        cursor.execute(sql, params)&lt;/pre&gt;
&lt;p&gt;&lt;i&gt;migrate_views.py&lt;/i&gt;&lt;/p&gt;
&lt;pre&gt;from postgresviews.create_or_replace_view import create_or_replace_view
from ledger.querysets.formattedTransactionsQS import FormattedTransactionsQS


## Define Views Here
## NOTE: Renamed or Deleted Views will not automatically clean up the old version.
create_or_replace_view(
    "view_formatted_transactions", FormattedTransactionsQS().get_qs()
)
&lt;/pre&gt;
&lt;p&gt;&lt;em&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;migrate_views.py&lt;/em&gt; is run on every deployment of our Django API. This allows me to use complex querysets with our API via Django Rest Framework and build a Postgres view of the queryset available to our BI tools. Magic! I hope you find this useful in your own applications!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Thu, 08 Apr 2021 02:35:44 +0000</pubDate><guid>https://www.davidkircos.com/blog/django-postgres-views/</guid><category>developer</category></item><item><title>Cherish Every Moment</title><link>https://www.davidkircos.com/blog/cherish-every-moment/</link><description>&lt;p&gt;At this moment, I feel stressed.&lt;/p&gt;
&lt;p&gt;I feel pulled in 1000 directions.&lt;/p&gt;
&lt;p&gt;I feel like I am doing too much; I feel like I'm not nearly doing enough.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I love the people I get to spend my days working with. &lt;/p&gt;
&lt;p&gt;I love what we are working on.&lt;/p&gt;
&lt;p&gt;I love the person (and dogs) I get to go home to tonight.&lt;/p&gt;
&lt;p&gt;I love the direction of our work and our lives. &lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;But, I feel lost in the moment.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;A few days ago, I asked some friends the question, "what is missing from your life?"&lt;/p&gt;
&lt;p&gt;I was delighted to hear their answer was, "nothing."&lt;/p&gt;
&lt;p&gt;And I realized my own answer was "nothing."&lt;/p&gt;
&lt;p&gt;I know at almost every other time in my life, I would have had a different answer.&lt;/p&gt;
&lt;p&gt;Today I don't.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;So why the feeling of loss?&lt;/p&gt;
&lt;p&gt;Being grateful is a choice. I was choosing to experience the problems.&lt;/p&gt;
&lt;p&gt;Not to just experience the moment.&lt;/p&gt;
&lt;p&gt;Good or bad, every moment with every person I interact with, I can simply cherish.&lt;/p&gt;
&lt;p&gt;Cherish every moment.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Tue, 11 Aug 2020 17:56:35 +0000</pubDate><guid>https://www.davidkircos.com/blog/cherish-every-moment/</guid><category>life</category><category>optimism</category></item><item><title>Skiing Into the Night</title><link>https://www.davidkircos.com/blog/skiing-into-the-night/</link><description>&lt;p&gt;This past Friday night my friend Marco Vienna and I started running up Mt. Crested Butte on skis at midnight in a bid over Star Pass to end up in Aspen. This route is 37 miles, part of a Ski Mountaineering race called The Grand Traverse. We estimated the trip would take us 12 hours. Our friend (and support team) Danni Perri took this photo before the start of the race. Thank you so much for the support &lt;g class="gr_ gr_42 gr-alert gr_gramm gr_inline_cards gr_run_anim Punctuation only-ins replaceWithoutSep" data-gr-id="42" id="42"&gt;Danni&lt;/g&gt;!&lt;/p&gt;
&lt;p&gt;&lt;img alt="" height="441" src="https://s3.amazonaws.com/davidkircos.com/assets/grand_traverse_2019/IMG_1271.jpg" width="588"/&gt;&lt;/p&gt;
&lt;p&gt;For the first 5 hours of the race, we were doing great. We made it over Death Pass with plenty of time to spare and were actively passing other participants. Yes, it is actually called Death Pass - 2 people died on this section of the route while training for the race this year. There was a memorial on the racecourse.&lt;/p&gt;
&lt;p&gt;We were heading up a high elevation valley called the Brush Creek Drainage. It was about 5 degrees out and I felt warm because we had been moving non-stop. Around this time we stopped for a few minutes to eat and drink water. And I got cold. It's not clear exactly what happened but my best guess is that I contracted mild hypothermia in my lungs which from then on made it extremely difficult to breathe.&lt;/p&gt;
&lt;p&gt;We continued for the next two hours towards the next checkpoint, but my pace was much slower. Around six and a half hours in, I could only move a dozen meters before being forced to stop and catch my breath. This was a demoralizing rhythm, but we continued up the mountain. We made it to the Friends Hut checkpoint about 10 minutes before the cutoff. This checkpoint is right before a difficult climb over Star Pass, followed by the most difficult descent of the route.&lt;/p&gt;
&lt;p&gt;While the rules of the race would have let us continue, at this point, I was pretty worried about how difficult it was for me to breathe. And there was no way I would have felt safe taking myself and friend up the pass. If my condition worsened at all, it would have put us both in an unacceptable amount of danger. If I couldn't get down under my own power, it would have been bad.&lt;/p&gt;
&lt;p&gt;It was disappointing not to finish. But I am so happy we were able to get out there and try something truly difficult for our ability. Right as we decided not to continue, the sun finally rose after 7 hours of skiing in the dark, and we were rewarded with this view. It was the best silver lining.&lt;/p&gt;
&lt;p&gt;&lt;img alt="" src="https://s3.amazonaws.com/davidkircos.com/assets/grand_traverse_2019/IMG_5757.jpg" width="588px"/&gt;&lt;/p&gt;
&lt;p&gt;Last fall I dragged Marco to Aspen for the Mountain Bike version of the Grand Traverse and this Spring he dragged me to Crested Butte for the ski version. Continuing the tradition we will be running this route in the fall (kidding... hopefully)&lt;/p&gt;
&lt;p&gt;&lt;img alt="" src="https://s3.amazonaws.com/davidkircos.com/assets/grand_traverse_2019/IMG_1275.jpg" width="588"/&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Mon, 01 Apr 2019 20:22:50 +0000</pubDate><guid>https://www.davidkircos.com/blog/skiing-into-the-night/</guid><category>fun</category></item><item><title>How Convertible Notes Convert, Template</title><link>https://www.davidkircos.com/blog/how-convertible-notes-convert-template/</link><description>&lt;p&gt;Convertible notes and SAFEs are great because they allow startups and investors to defer the difficult process of valuing an early stage company and quickly close funding. This is at the cost of putting the burden on later investors determine the value of the company, generally, once the company has more metrics to base a valuation on. With the convertible note holders getting some type of discount for investing early. If you want to read more about the mechanics of convertible notes I recommend Brad Feld's series of blog posts -&amp;gt; &lt;a href="https://feld.com/archives/2011/10/how-convertible-debt-works.html"&gt;read here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I've been involved with a number of companies who have raised multiple rounds of convertible note financings, without really understanding how all the rounds will convert when a priced round occurs. Over time I have developed a generic Google Sheet template which given a cap table and convertible note terms calculates Series A conversion scenarios providing insight on how everything will play out.&lt;/p&gt;
&lt;p&gt;To access the template - &amp;gt; &lt;a href="https://docs.google.com/spreadsheets/d/1HsfPKipCiu7uDpFhswzs4na0R7Lgd5DF4bLneDE6-V4"&gt;Click Here&lt;/a&gt; and go to File -&amp;gt; Download As an excel copy. From there you can re-upload the file to your own Google Drive.&lt;/p&gt;
&lt;p&gt;&lt;img alt="" height="323" src="https://s3.amazonaws.com/davidkircos.com/assets/how_convertiable_notes_convert/Screen+Shot+2019-03-27+at+10.19.14+AM.png" width="508"/&gt;&lt;/p&gt;
&lt;p&gt;In the first tab '&lt;span&gt;Pre-Investment Cap Table' add your current cap table. Usually only contains founders and maybe some early employees.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img alt="" height="328" src="https://s3.amazonaws.com/davidkircos.com/assets/how_convertiable_notes_convert/Screen+Shot+2019-03-27+at+10.19.27+AM.png" width="689"/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;The tab '&lt;span&gt;Convertible Notes' is where you input your convertible notes. It is ok to leave either cap or discount blank. SAFE's can also be input in this sheet, they are functionally equivariant to convertible notes. Inputting multiple rounds of convertible notes here is also ok, just add them with different dates and terms.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img alt="" height="525" src="https://s3.amazonaws.com/davidkircos.com/assets/how_convertiable_notes_convert/Screen+Shot+2019-03-27+at+10.19.37+AM.png" width="476"/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;The next tab 'Series A Inputs' is where you input a Series A scenario based on the pre-money valuation and round size. This sheet also allows you to calculate an employee option pool expansion concurrent with the Series A fundraising (this is common).&lt;/p&gt;
&lt;p&gt;&lt;img alt="" height="304" src="https://s3.amazonaws.com/davidkircos.com/assets/how_convertiable_notes_convert/Screen+Shot+2019-03-27+at+10.19.44+AM.png" width="619"/&gt;&lt;/p&gt;
&lt;p&gt;The final tab 'Series A Cap Table' shows both pre and &lt;g class="gr_ gr_35 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling multiReplace" data-gr-id="35" id="35"&gt;post Series&lt;/g&gt; A cap tables side by side. Showing the effect of the convertible notes on the final cap table.&lt;/p&gt;
&lt;p&gt;If you find this sheet valuable, please leave a comment. I am happy to take suggestions or discuss unique fundraising scenarios that don't fit in this template.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Wed, 27 Mar 2019 04:23:28 +0000</pubDate><guid>https://www.davidkircos.com/blog/how-convertible-notes-convert-template/</guid><category>finance</category><category>startups</category><category>venture capital</category></item><item><title>Why I Don&amp;#39;t Actively Invest On Public Markets</title><link>https://www.davidkircos.com/blog/why-i-dont-actively-invest-on-public-markets/</link><description>&lt;p&gt;I do not actively trade any stocks or bonds on the public markets. I've also avoided cryptocurrencies, which trade on a public market.&lt;/p&gt;
&lt;p&gt;I avoid public market trading for a couple of reasons:&lt;br/&gt;1) It's been empirically shown that holding a diversified portfolio of investments for a long period of time is a better strategy than attempting to identify individual stocks that will outperform the market. This is because any additional gains you get by actively trading, on average, will be canceled out by the value of the effort put into achieving those gains. This leaves you, the average person, no better off than just passively holding diversified investments over a long period of time. Weathfront has a great explanation of why this is the case: &lt;a href="https://blog.wealthfront.com/active-investing-versus-passive-investing/"&gt;in this blog post&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;2) It's stressful. At any given time you could be doing better if you had more information on the companies you are trading. At any given time you could be doing better if you buy and sell at just the right time. At any given time... When actively trading this constantly was in my head, I became obsessive about research. This was emotional stressful. While probably not applying to everyone, it is not worth the stress to me.&lt;/p&gt;
&lt;p&gt;3) Success attribution. It's really difficult (or maybe impossible) to identify the signal of why certain stock picks performed well and why others performed poorly. Which would be necessary to consistently pick well-performing stocks.&lt;/p&gt;
&lt;p&gt;If you want to be investing more of your money but don't know where to start, I recommend checking out &lt;a href="https://www.davidkircos.com/blog/feeds/rss/wealthfront.com"&gt;Wealthfront&lt;/a&gt;. They give you very good diversification without any fees on your first $10k, they encourage good long-term thinking, and they are not paying me to say any of this. Investing is important to wealth building, and active investing is one of the traps many first time investors will get caught in.&lt;/p&gt;
&lt;p&gt;It would be disrespectful not to mention &lt;a href="https://en.wikipedia.org/wiki/John_C._Bogle"&gt;Jack Bogle&lt;/a&gt;, founder of Vanguard investments, who pioneered bringing low cost diversified investment instruments to regular investors. Before Vanguard, if you wanted to match the performance of the S&amp;amp;P 500 you would need to buy every stock in the S&amp;amp;P 500. Vanguard created the first widely available index funds. By doing this Vanguard democratized access to index investing, by lowering the cost and complexity of making index investments. This gave regular people access to sophisticated investing techniques. What Wealthfront does is the modern continuation of these ideas, with added features such as Tax-Loss Harvesting and Automatic Rebalancing.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Fri, 15 Feb 2019 10:22:15 +0000</pubDate><guid>https://www.davidkircos.com/blog/why-i-dont-actively-invest-on-public-markets/</guid></item><item><title>What is a Great Friend?</title><link>https://www.davidkircos.com/blog/what-is-a-great-friend/</link><description>&lt;p&gt;"A great friend is someone who helps you become the best version of yourself." I read this in Sheryl Sandberg's forward for the book &lt;a href="https://www.amazon.com/Originals-How-Non-Conformists-Move-World/dp/014312885X"&gt;Originals by Adam Grant&lt;/a&gt;. I love this quote.&lt;/p&gt;
&lt;p&gt;It is a profound insight into what makes many relationships great. Beyond friendships, partners in business should share this quality. Instead of everyone working to outdo one another, everyone working to bring out the best in their peers is far more productive for the collective. This is also a useful lens while dating, as long as the effort is reciprocal.&lt;/p&gt;
&lt;p&gt;Again what a wonderful notion of for friendship &lt;span&gt;"A great friend is someone who helps you become the best version of yourself."&lt;/span&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Wed, 13 Feb 2019 10:20:44 +0000</pubDate><guid>https://www.davidkircos.com/blog/what-is-a-great-friend/</guid></item><item><title>Update: Boulder Skyline Traverse #fail</title><link>https://www.davidkircos.com/blog/update-boulder-skyline-traverse-fail/</link><description>&lt;p&gt;Last year I wrote &lt;a href="http://www.davidkircos.com/blog/boulder-skyline-traverse/"&gt;a blog post &lt;/a&gt;detailing a running route I wanted to run in Boulder.&lt;/p&gt;
&lt;p&gt;I failed. More accurately, I didn't even try. Other priorities took over my time for the remainder of the warm days last year, and I didn't attempt the route that I set as my goal. Not completing the goal I set was disappointing. I had spent time training on the route, doing each section at least once during separate runs.&lt;/p&gt;
&lt;p&gt;By the end of the summer, I was very confident I could complete the entire route in one go. There were two primary reasons I didn't go for it:&lt;br/&gt;1) It would hurt. It's a long run, and by the end of it, I would effectively be injured just from wear and tear.&lt;br/&gt;2) Once I realized I could do it, I lost interest in actually doing it. Has anyone else experienced this? Happens to me all the time. I often don't feel the need to prove something is possible, which I already know is possible.&lt;/p&gt;
&lt;p&gt;I failed, moving on. It only feels right to try a different set of goals this year. So I've set two fitness goals: 1) &lt;a href="https://thegrandtraverse.org/ski/"&gt;Grand Traverse Ski Race&lt;/a&gt; and 2) &lt;a href="https://www.leadvilleraceseries.com/mtb/leadvilletrail100mtb/"&gt;Leadville 100 MTB&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The Grand Traverse Ski race is a 34-mile ski race from Crested Butte to Aspen. I've done the reverse route twice on &lt;g class="gr_ gr_36 gr-alert gr_gramm gr_inline_cards gr_run_anim Grammar multiReplace" data-gr-id="36" id="36"&gt;a MTB&lt;/g&gt; during the summer racing series. It's exciting, and scary, to think about going back into the Maroon Bells wilderness in the heart of winter, on skis, in the middle of the night. The Leadville 100 MTB is a 100-mile mountain bike race which is potentially even more intimidating because of the distance combined with a very difficult course that tends to beat down first timers.&lt;/p&gt;
&lt;p&gt;I am not confident that I can finish either of these races and that's what makes them fun :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Tue, 12 Feb 2019 10:14:52 +0000</pubDate><guid>https://www.davidkircos.com/blog/update-boulder-skyline-traverse-fail/</guid><category>running</category></item><item><title>Hear Intentions Not Words</title><link>https://www.davidkircos.com/blog/hear-intentions-not-words/</link><description>&lt;p&gt;&lt;g class="gr_ gr_17 gr-alert gr_gramm gr_inline_cards gr_run_anim Grammar only-ins replaceWithoutSep" data-gr-id="17" id="17"&gt;&lt;g class="gr_ gr_17 gr-alert gr_gramm gr_inline_cards gr_run_anim Grammar only-ins replaceWithoutSep" data-gr-id="17" id="17"&gt;Language&lt;/g&gt;&lt;/g&gt; is a powerful tool for communication. The problem is, the system in our brain which turns our intentions into words is not perfect. The result of this is that we often don't say what we mean or we mean something that we don't say.&lt;/p&gt;
&lt;p&gt;This is particularly apparent when talking about difficult subjects. Especially during difficult conversations, I have made a concerted effort to listen to intentions over words. David Cohen wrote a great blog post a few months ago titled &lt;a href="http://davidgcohen.com/2017/08/18/assume-good-intent/"&gt;Assume Good Intent&lt;/a&gt;. Assuming good intent is a powerful concept. Next time someone says something your gut perceives as critical ask yourself "what is their intention?" Their intention is often to be helpful. Some conversations are difficult by nature. Choose to work with people who have good intentions. Listen to their intentions not words, especially when they are critical.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Tue, 29 May 2018 16:05:42 +0000</pubDate><guid>https://www.davidkircos.com/blog/hear-intentions-not-words/</guid><category>life</category></item><item><title>Life Math: Compound Interest</title><link>https://www.davidkircos.com/blog/life-math-compound-interest/</link><description>&lt;p&gt;I read this quote a long time ago and it has stayed with me "compound interest is the most powerful force in the universe." The saying is commonly attributed to Albert Einstein, but after Googling it &lt;a href="https://www.snopes.com/fact-check/compound-interest/"&gt;doesn't seem very likely Einstein ever said it&lt;/a&gt;. Regardless of where it came from; today, I linked it to a new meaning.&lt;/p&gt;
&lt;p&gt;I've been thinking about how to define entrepreneurship, or more broadly how to describe the entrepreneurial mindset. One way that has resonated with me is efficiency in leveraging current resources. Or simply, making more out of what you have right now. Then repeating the process many times over. The result is compounding returns, which are quickly very rewarding. When evaluating how entrepreneurial someone is, one route is looking at what they have been able to accomplish so far through the lens of what resources they had at the time.&lt;/p&gt;
&lt;p&gt;This will only get you so far, as some people are not able to continue compounding the returns. Some people are great at getting new companies or projects off the ground and then not the right people to take them from a small to medium scale. On the other side, some people are great at scaling companies or projects but their strong suit is not getting them started from scratch. Making sure the right people are involved at the right time is tricky. Ben Horowitz discusses this extensively in his book &lt;a href="https://www.amazon.com/Hard-Thing-About-Things-Building/dp/0062273205"&gt;The Hard Thing About Hard Things&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Determining the life cycle of a company you are most capable of contributing &lt;g class="gr_ gr_39 gr-alert gr_gramm gr_inline_cards gr_run_anim Grammar multiReplace" data-gr-id="39" id="39"&gt;at&lt;/g&gt; is a really helpful lens when thinking about your career. I've recently determined that mine is in the earliest stage of a company where it is just a few people looking to get an idea off the ground. &lt;/p&gt;
&lt;p&gt;In other areas of life "what you made out of what you were given" is often something I am interested in learning about when I meet somebody. And a question I often ask myself is "how can I use the position I'm in now, to get more of the things I care about?" This sounds a little crazy, probably because your mind probably jumped to money. Don't think of it in the context of money and it feels a lot better. For example, "How can I use the things I have today to show my partner just how much I love them?" or "How can I leverage my volunteer time into affecting the most change for our cause?" &lt;/p&gt;
&lt;p&gt;Think about what limited things you have and how you use those resources today to drive the results you want. People who are good at this are often very successful.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Mon, 07 May 2018 10:04:07 +0000</pubDate><guid>https://www.davidkircos.com/blog/life-math-compound-interest/</guid><category>life</category><category>work</category></item><item><title>Overcommitted</title><link>https://www.davidkircos.com/blog/overcommitted/</link><description>&lt;p&gt;I've said "Yes" to working on a lot of projects lately as a helping hand. Over the last month, the volume of these commitments has been too much and I've lost focus on the things that are most important to me. The things where I am a core contributor have suffered for the activities where I am a part-time contributor. This doesn't make sense.&lt;/p&gt;
&lt;p&gt;Over the next few days, I am going to work on winding down many of these extra commitments. And over the next few weeks, I am going to lean much more of my weight on the areas where I am a core contributor.&lt;/p&gt;
&lt;p&gt;Saying Yes to something new can be easier than saying No. What have you said "Yes" to that doesn't directly contribute to achieving your goals?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Fri, 04 May 2018 10:53:35 +0000</pubDate><guid>https://www.davidkircos.com/blog/overcommitted/</guid><category>work</category></item><item><title>Be Happy and Improve the Ability of Others to be Happy</title><link>https://www.davidkircos.com/blog/be-happy-and-improve-the-ability-of-others-to-be-happy/</link><description>&lt;p&gt;The other day somebody asked me "If you had to, what would you say the purpose of life is?" The answer I chose is "to b&lt;span&gt;e happy and improve the ability of others to be happy."&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;We all share the human condition. Some of us started life in a really great place, while others were dropped in chaos and suffering. None of us got to choose and I can not think of a better notation of meaning than helping our fellow travelers make the most of life.&lt;/p&gt;
&lt;p&gt;What a wonderful opportunity we are given,&lt;span&gt; be happy and improve the ability of others to be happy.&lt;/span&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Thu, 03 May 2018 10:01:15 +0000</pubDate><guid>https://www.davidkircos.com/blog/be-happy-and-improve-the-ability-of-others-to-be-happy/</guid><category>life</category><category>optimism</category></item><item><title>Boulder Skyline Traverse</title><link>https://www.davidkircos.com/blog/boulder-skyline-traverse/</link><description>&lt;p&gt;Running for the last 5 years I've had a straightforward goal. Complete a marathon. It started as a dream and slowly with effort turned into a reasonable goal. Then last October, I did it. With my friend Sean &lt;g class="gr_ gr_32 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace" data-gr-id="32" id="32"&gt;Hamborski&lt;/g&gt;, I ran the Detroit Marathon. Sean and I have a long-running history together. We ran our first 5k, half and finally full marathon together. I couldn't have asked for a better running partner. And the goal of running a marathon was a great forcing function to get us out running.&lt;/p&gt;
&lt;p&gt;I've been thinking this year that I need something new to keep motivating me. But what? In the short term, I have absolutely no intention of becoming an ultra runner. I like my knees too much. Eventually, I'd like to run a marathon on every continent. But I'm in no hurry. That will be a lifelong challenge and I won't do another marathon this year. My next one will be in Antarctica in 2020 and I'm putting together a team. Email me if you are interested in joining: a&lt;span&gt;ntarctica&lt;/span&gt;@davidkircos.com&lt;/p&gt;
&lt;p&gt;Here's my new goal for this year: run the &lt;a href="https://www.strava.com/routes/11815120"&gt;Boulder Skyline Traverse&lt;/a&gt;. 19 miles, 6k foot vertical gain. Sanitas Mountain, Flagstaff Mountain, Green Mountain, Bear Peak, South Boulder Peak. All 5 of the peaks on the Boulder front range. I haven't established exactly what a success condition for this run will be. There are some very steep parts of the trail. It's not safe to run 100% of it, so maybe I'll set a time goal. I have to attempt the route first to calibrate exactly what that time will be.&lt;/p&gt;
&lt;p&gt;I am really stoked about this challenge. Happy running in 2018!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Mon, 19 Feb 2018 17:02:07 +0000</pubDate><guid>https://www.davidkircos.com/blog/boulder-skyline-traverse/</guid><category>fun</category><category>running</category></item><item><title>How To Level A 4Runner Trunk For Less Than $40</title><link>https://www.davidkircos.com/blog/how-to-level-a-4runner-trunk-for-less-than-40/</link><description>&lt;p&gt;I love to sleep in my car. It's the most convenient way to spend a night or two away from home, often far away from civilization, often biking or skiing.&lt;/p&gt;
&lt;p&gt;With my Subaru Outback, I could simply put the seats down and sleep on a foam pad. Easy! However, I just switched to a Toyota 4Runner and there was a problem. The bed isn't flat! &lt;/p&gt;
&lt;p&gt;&lt;img height="533" src="https://s3.amazonaws.com/davidkircos.com/assets/4runner-flat-bed/IMG_9363.jpeg" width="400"/&gt;&lt;/p&gt;
&lt;p&gt;4Runners (gen5) have this nasty angled part in the middle, with a 1.5" difference between the trunk section and where the seats fold down. So I set out to make it flat.&lt;/p&gt;
&lt;h3&gt;My Design Criteria&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Cheep. This can be done for less than $40.&lt;/li&gt;
&lt;li&gt;Easy to make, easy to remove.&lt;/li&gt;
&lt;li&gt;No modifications to the vehicle itself.&lt;/li&gt;
&lt;li&gt;Can be done without access to a workshop.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Here is the result!&lt;/p&gt;
&lt;p&gt;&lt;img alt="" height="533" src="https://s3.amazonaws.com/davidkircos.com/assets/4runner-flat-bed/IMG_9366.jpeg" width="400"/&gt;&lt;/p&gt;
&lt;p&gt;It takes up only 1.5" of vertical trunk space and doesn't need to be adjusted when you put your seats up.&lt;/p&gt;
&lt;p&gt;&lt;img alt="" height="533" src="https://s3.amazonaws.com/davidkircos.com/assets/4runner-flat-bed/IMG_9367.jpeg" width="400"/&gt;&lt;/p&gt;
&lt;h3&gt;How To Build It&lt;/h3&gt;
&lt;h4&gt;What's needed:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;4x8' Plywood Sheet 3/4 inch thick. $20&lt;/li&gt;
&lt;li&gt;Outdoor Carpet (or rubber mat if you don't have a staple gun) $15&lt;/li&gt;
&lt;li&gt;Staple Gun (optional)&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Step 1: Cut The Plywood&lt;/h4&gt;
&lt;p&gt;This design takes a single sheet of plywood (4'x8'x3/4") and cuts it into 2 sheets which are stacked on top of each other to make a 1.5" tall surface. Because the shape we want to fill has an angle on one side, the top piece is cut 2" inches longer to fill the angled gap. See the images below.&lt;/p&gt;
&lt;p&gt;&lt;img alt="" height="533" src="https://s3.amazonaws.com/davidkircos.com/assets/4runner-flat-bed/IMG_9366-annotated.jpeg" width="400"/&gt;&lt;/p&gt;
&lt;p&gt;How it sits in the bed:&lt;/p&gt;
&lt;p&gt;&lt;img alt="" height="72" src="https://s3.amazonaws.com/davidkircos.com/assets/4runner-flat-bed/Screen+Shot+2020-11-15+at+4.23.15+PM.png" width="400"/&gt;&lt;/p&gt;
&lt;p&gt;This only takes 3 cuts to complete, and your local Home Depot or Lowes will do it for you if you ask nicely!&lt;/p&gt;
&lt;p&gt;&lt;img alt="" height="242" src="https://s3.amazonaws.com/davidkircos.com/assets/4runner-flat-bed/Screen+Shot+2020-11-15+at+4.32.20+PM.png" width="400"/&gt;&lt;/p&gt;
&lt;h3&gt;Step 2: Secure The Top and Bottom Sheets Together&lt;/h3&gt;
&lt;p&gt;I simply screwed them together with a few 1 1/4" screws. &lt;/p&gt;
&lt;h3&gt;Step 3: Carpet The Top Layer&lt;/h3&gt;
&lt;p&gt;I laid the structure upside down on top of an outdoor carpet. Pulled the carpet around all sides to the back, and stapled it in place. This way all the seams and staples are on the bottom.&lt;/p&gt;
&lt;p&gt;&lt;img alt="" height="533" src="https://s3.amazonaws.com/davidkircos.com/assets/4runner-flat-bed/IMG_9364.jpeg" width="400"/&gt;&lt;/p&gt;
&lt;p&gt;(If you don't have a staple gun, and don't care about seeing the plywood when your trunk is open. simply put a rubber entryway mat over your sheets and cut it to size, Lowes sells 4'x6' foot mats which are large enough for $19.)&lt;/p&gt;
&lt;h3&gt;Step 4: Slide It In Place&lt;/h3&gt;
&lt;p&gt;&lt;img alt="" height="533" src="https://s3.amazonaws.com/davidkircos.com/assets/4runner-flat-bed/IMG_9365.jpeg" width="400"/&gt;&lt;/p&gt;
&lt;p&gt;Done!&lt;/p&gt;
&lt;p&gt;I wanted to share this design because it is the simplest and least expensive one I could find, which doesn't really require any tools. Let me know if you build one!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Wed, 15 Nov 2017 23:52:43 +0000</pubDate><guid>https://www.davidkircos.com/blog/how-to-level-a-4runner-trunk-for-less-than-40/</guid><category>outdoors</category><category>projects</category></item><item><title>How to Be Optimistic When All the News Is Bad</title><link>https://www.davidkircos.com/blog/how-to-be-optimistic-when-all-the-news-is-bad/</link><description>&lt;p&gt;Every day the news lists terrible events. Mass shootings, government destabilization, tensions rising.&lt;/p&gt;
&lt;p&gt;It paints this picture that the world is getting more and more troubling and that we are headed towards a future that is worse than the past.&lt;/p&gt;
&lt;p&gt;Here's my theory. The world is not getting worse. We are simply hearing about the problems in the world more loudly and frequently than ever before.&lt;/p&gt;
&lt;p&gt;More victims of violence and injustice have a voice today than they ever have had in the past.&lt;/p&gt;
&lt;p&gt;These voices are what we are hearing.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;50 years ago we didn't hear the voices of sexual assault victims.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;50 years ago we didn't hear the voices of people in villages exploited by large industrial companies.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;50 years ago we simply didn't hear all the pain going on in the world. Now we do.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Hearing all the pain in the world has fast-tracked our ability to address it.&lt;/p&gt;
&lt;p&gt;The evidence of global improvement is palpable in every meaningful measure of the quality of life globally.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Child deaths before the age of 5 are the lowest they have ever been.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;More people in the world are living under a democratic government than ever before.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;The smallest fraction of people ever currently live below the poverty line.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Our World in Data breaks a lot of these very important measures of global quality of life down quantitatively.&lt;/p&gt;
&lt;p&gt;&lt;img height="343" src="https://s3.amazonaws.com/davidkircos.com/assets/2017/October/Two-centuries-World-as-100-people.png" width="500"/&gt;&lt;/p&gt;
&lt;p&gt;I really &lt;a href="https://ourworldindata.org/a-history-of-global-living-conditions-in-5-charts/"&gt;love this article on Our World in Data&lt;/a&gt; which argues for optimism in a rapidly improving world.&lt;/p&gt;
&lt;p&gt;What we are feeling in the world today is not a breakdown. It's very rapid improvement.&lt;/p&gt;
&lt;p&gt;Be optimistic! I am.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Tue, 24 Oct 2017 05:43:42 +0000</pubDate><guid>https://www.davidkircos.com/blog/how-to-be-optimistic-when-all-the-news-is-bad/</guid><category>world</category></item><item><title>Book: The Time Keeper</title><link>https://www.davidkircos.com/blog/book-the-time-keeper/</link><description>&lt;p&gt;How often do you look at a clock?&lt;/p&gt;
&lt;p&gt;Weekdays for me it can't be less than once every 5 minutes. The granularity with which I schedule things during the week is usually in 30-minute blocks although sometimes as narrow as 15-minute blocks. On weekends I try not to schedule anything with a precision greater than half a day. Meaning I could make a morning and afternoon plan, but won't schedule anything at a specific time. Though I will still look at a clock about every hour just to feel grounded.&lt;/p&gt;
&lt;p&gt;Every once and a while I pick up a book that I just can not put down before finishing, this happened with &lt;a href="https://www.amazon.com/Time-Keeper-Mitch-Albom/dp/0316311537"&gt;The Time Keeper&lt;/a&gt; by Mitch Albom. Through a fictional story, he explores the world before timekeeping and the first people who start counting the days, hours and seconds.&lt;/p&gt;
&lt;p&gt;Reading the book has made me really aware of how powerful a role timekeeping plays in modern life. I've been wondering what it would be like to not look at a clock for something like an entire week. Normally I'll follow a clock to know what I'm supposed to be doing now and what I'll be doing next. It would be a really interesting experiment to instead work on things at my internal pace. Changing activities when I feel like I've spent enough time on whatever I'm currently doing. I certainly think this would reduce anxiety. Although it would make it very difficult to work effectively with others who expect things to happen at a specific time. I'm considering blocking a day on my calendar every week to simply follow my internal clock.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Fri, 20 Oct 2017 18:55:33 +0000</pubDate><guid>https://www.davidkircos.com/blog/book-the-time-keeper/</guid><category>books</category></item><item><title>Why We Take Pictures</title><link>https://www.davidkircos.com/blog/why-we-take-pictures/</link><description>&lt;p&gt;Life is not all instagram moments. &lt;br/&gt;It's becoming more difficult to ignore the picture perfect lives friends seem to live through their instagram feeds.&lt;br/&gt;It's 4am and I'm in the airport heading home from California. I spent the last few days as a tourist on the Pacific coast.&lt;br/&gt;It seemed like everywhere we went people's first priority was taking pictures. Moving on from a spot once they got a good shot.&lt;br/&gt;Focused on capturing the moment more than living it.&lt;br/&gt;Photos are great because they help us remember a moment. They are not the moment.&lt;br/&gt;Instagram glamorizes the visually pleasing moments. But these easy moments aren't what makes life full.&lt;br/&gt;The best parts of life aren't easy. You've heard this. And it's worth remembering in the age of instant gratification.&lt;br/&gt;Many of my best memories and most fulfilling expirences were gruelingly difficult.&lt;br/&gt;There is this natural desire to remove difficulty from our lives one piece at a time.&lt;br/&gt;But lean in to the difficult. Embrace the challenge.&lt;br/&gt;Listen to that part of your brain that knows the right thing to do, not just the easiest thing to do.&lt;br/&gt;The right thing will be hard.&lt;br/&gt;Having a difficult conversation with a loved one, fighting for what you feel like you deserve.&lt;br/&gt;This stuff is what makes you grow. What makes life full.&lt;br/&gt;Looking like you have a great life is not having a great life.&lt;br/&gt;All we get is now. We never experience tomorrow or yesterday.&lt;br/&gt;So focus less on capturing and more on living.&lt;br/&gt;Yes I got many photos of the beach this weekend. But I also tried to take some of myself and friend smiling in a random moment.&lt;br/&gt;The pictures of the beach will remind me of my vanity.&lt;br/&gt;And the pictures of us smiling will remind me of joy.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Mon, 02 Oct 2017 12:18:04 +0000</pubDate><guid>https://www.davidkircos.com/blog/why-we-take-pictures/</guid></item><item><title>From Russia with Dreams</title><link>https://www.davidkircos.com/blog/from-russia-with-dreams/</link><description>&lt;p style="text-align: left;"&gt;&lt;img alt="" src="https://s3.amazonaws.com/davidkircos.com/assets/2017/From+Russia+with+Dreams/2yoxt1k.jpg" width="300"/&gt;&lt;/p&gt;
&lt;p&gt;I recently finished reading Garry Kasparov's &lt;a href="https://www.amazon.com/Winter-Coming-Vladimir-Enemies-Stopped/dp/1511365447"&gt;&lt;em&gt;Winter Is Coming:&lt;/em&gt; &lt;em&gt;Why Vladimir Putin and the Enemies of the Free World Must Be Stopped&lt;/em&gt;&lt;/a&gt;. Garry is a chess grandmaster and was the world chess champion from 1986 to 2005. He is the guy who famously lost to IBMs Deep Blue computer in 1997. His book mostly talks about events in Russian history focusing on the rise to power of Vladimir Putin. Garry's perspective and writing are very thoughtful and if you are interested in modern Russin history I highly recommend reading it.&lt;/p&gt;
&lt;p&gt;One quote from the book about the Russian mentality has stayed with me "[In Russia] thinking people do not aspire to self-realization." Self-realization being "fulfillment by oneself of the possibilities of one's character or personality."&lt;/p&gt;
&lt;p&gt;The quote struck me with a sharp contrast to American mentality and particularly The American Dream. The Dream being, a path to better one's life through hard work and determination&lt;em&gt;.&lt;/em&gt; It makes me sad to think of how many people in the world are not able to dream with such audacity. In many people's plans, the first part of building a better life is leaving their home country for a place more like the United States. A place where personal growth, through hard work and determination, is a realistic possibility.&lt;/p&gt;
&lt;p&gt;Today I'm not taking for granted my privilege of being able to build a better future for myself and my loved ones in the country where I was born. Along these lines, I'll leave you with one of my favorite speeches from Warren Buffett.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;span&gt;Just imagine that it is 24 hours before you are born. A genie comes and says to you in the womb, “You look like an extraordinarily responsible, intelligent, potential human being. [You're] going to emerge in 24 hours and it is an enormous responsibility I am going to assign to you — determination of the political, economic and social system into which you are going to emerge. You set the rules, any political system, democracy, parliamentary, anything you wish — you can set the economic structure, communistic, capitalistic, set anything in motion and I guarantee you that when you emerge this world will exist for you, your children and grandchildren.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;What’s the catch? One catch — just before you emerge you have to go through a huge bucket with 7 billion slips, one for each human. Dip your hand in and that is what you get — you could be born intelligent or not intelligent, born healthy or disabled, born black or white, born in the US or in Bangladesh, etc. You have no idea which slip you will get. Not knowing which slip you are going to get, how would you design the world? Do you want men to push around females? It’s a 50/50 chance you get female. If you think about the political world, you want a system that gets what people want. You want more and more output because you’ll have more wealth to share around.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;The US is a great system, turns out $50,000 GDP per capita, 6 times the amount when I was born in just one lifetime. But not knowing what slip you get, you want a system that once it produces output, you don’t want anyone to be left behind. You want to incentivize the top performers, don’t want equality in results, but do want something that those who get the bad tickets still have a decent life. You also don’t want fear in people’s minds — fear of lack of money in old age, fear of cost of health care.  I call this the “Ovarian Lottery.”&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;My sisters didn’t get the same ticket. Expectations for them were that they would marry well, or if they work, would work as a nurse, teacher, etc. If you are designing the world knowing 50/50 male or female, you don’t want this type of world for women — you could get female. Design your world this way; this should be your philosophy. I look at Forbes 400, look at their figures and see how it’s gone up in the last 30 years. Americans at the bottom are also improving, and that is great, but we don’t want that degree of inequality. Only governments can correct that. Right way to look at it is the standpoint of how you would view the world if you didn’t know who you would be. If you’re not willing to gamble with your slip out of 100 random slips, you are lucky!&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;sub&gt;Buffet quote text source: &lt;a href="http://www.businessinsider.com/warren-buffett-on-the-ovarian-lottery-2013-12"&gt;http://www.businessinsider.com/warren-buffett-on-the-ovarian-lottery-2013-12&lt;/a&gt;&lt;/sub&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt; &lt;/span&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Wed, 14 Jun 2017 10:53:51 +0000</pubDate><guid>https://www.davidkircos.com/blog/from-russia-with-dreams/</guid><category>books</category><category>world</category></item><item><title>Work Backwards</title><link>https://www.davidkircos.com/blog/work-backwards/</link><description>&lt;p&gt;&lt;a href="http://www.techstars.com/mentors/david-brown/"&gt;David Brown&lt;/a&gt; reminded me of a great piece of advice a couple weeks ago. Advice that in and of itself is totally obvious, in retrospect. It is: &lt;strong&gt;work backward&lt;/strong&gt;. Start with picturing the result you want and in your mind work back to the present. Visualizing the path and thinking "what can I do now, to get closer to this goal?"&lt;/p&gt;
&lt;p&gt;The mental exercise can result in many possible paths for achieving an outcome. I believe it is important to not just pick one of those paths and stick to it without any deviation. As new information is learned the best path always changes. Dynamism is important. The exercise is more useful to get a range of possible ways to achieve an outcome.&lt;/p&gt;
&lt;p&gt;When I can visualize realistic paths to a goal, something that once seemed impossible and lofty feels attainable. This helpful for me to establish confidence in the things I am doing today.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">davidkircos</dc:creator><pubDate>Thu, 08 Jun 2017 16:18:24 +0000</pubDate><guid>https://www.davidkircos.com/blog/work-backwards/</guid><category>life</category></item></channel></rss>