A Case Study in Workflows and Productivity: Chuck Grimmett
https://discoverpraxis.com/how-to-be-productive/Archived Link
A Case Study in Workflows and Productivity: Chuck Grimmett
https://discoverpraxis.com/how-to-be-productive/Archived Link
Chuck Grimmett at Makerpad: How Crash fortifies its engineering team with no code tools
I transitioned by previous book notes section to a new reading list section. Why?
So, I decided to implement Frank Chimeroâs design with my own reading list.
Instead of just hardcoding them in a page and repeating tons of HTML for the rest of my life, I decided to put the reading list in a Jekyll data file (I chose yaml) that I could easily add to and make a simple template to output.
First, I started with my previous book notes section. Since they were stored in a Jekyll Collection, I was able to write a quick Liquid for loop to generate most of my list for me. But I didnât want to: include a full star rating, just a recommended star. So I chose to star books that I rated 5/5:
{% assign reviews = site.book_reviews | sort: "date" | reverse %} {% for review in reviews %} - title: "{{ review.title }}" author: {{ review.author }} link: {{ review.book-link }} star: {% if review.stars == 5 %}yes{% else %}no{% endif %} {% endfor %}
The result looked like this:
- title: "Stories of Your Life and Others" author: Ted Chiang link: http://amzn.to/2Ghql7a star: yes - title: "A Burglar's Guide to the City" author: Geoff Manaugh link: http://amzn.to/2rElHgb - title: "The Story of Sushi: An Unlikely Saga of Raw Fish and Rice" author: Trevor Corson link: http://amzn.to/2DAvzct - title: "The Island at the Center of the World: The Epic Story of Dutch Manhattan and the Forgotten Colony That Shaped America" author: Russell Shorto link: http://amzn.to/2yqLmaE star: yes
Awesome! That spit me out a list of everything Iâve written book notes for. Since it is sorted by date in reverse chronological order, it was quick for me to manually break it up by year:
- year: "2019" books: - title: The Summer Book author: Tove Jansson link: https://amzn.to/2ZMtUuC star: yes - title: "The Last Pirate of New York" author: Rich Cohen link: https://amzn.to/34h0Oa3 star: yes - title: "Fall; or, Dodge in Hell" author: Neal Stephenson link: https://www.amazon.com/Fall-Dodge-Hell-Neal-Stephenson/dp/006245871X star: yes - year: "2018" books: - title: "The World is a Narrow Bridge" author: Aaron Thier link: https://amzn.to/2PK3OZc - title: "Fashion Climbing" author: Bill Cunningham link: https://amzn.to/2PJqkgz - title: "Cape Cod" author: Henry David Thoreau link: https://amzn.to/2ZIISBV - title: "The Outermost House" author: Henry Beston link: https://amzn.to/2MOf3hb star: yes
Excellent. Two more steps:
Once I added the âlast updatedâ key, the yaml structure looked like this:
lastupdate: September 3, 2019 list: - year: "2019" books: - title: The Summer Book author: Tove Jansson link: https://amzn.to/2ZMtUuC star: yes - title: "The Last Pirate of New York" author: Rich Cohen link: https://amzn.to/34h0Oa3 star: yes - title: "Fall; or, Dodge in Hell" author: Neal Stephenson link: https://www.amazon.com/Fall-Dodge-Hell-Neal-Stephenson/dp/006245871X star: yes - title: The Boatbuilder author: Daniel Gumbiner link: https://amzn.to/2Lgvh0l - year: "2018" books: - title: "The World is a Narrow Bridge" author: Aaron Thier link: https://amzn.to/2PK3OZc - title: "Fashion Climbing" author: Bill Cunningham link: https://amzn.to/2PJqkgz - title: "Cape Cod" author: Henry David Thoreau link: https://amzn.to/2ZIISBV - title: "The Outermost House" author: Henry Beston link: https://amzn.to/2MOf3hb star: yes
Hereâs how I loop through that data to create my reading page:
{% for entry in site.data.reading.list %} {{entry.year}}
{{entry.books | size}} books {{entry.year}}"> {% for book in entry.books %} - {{book.link}}" alt="_blank" rel="nofollow noopener">{{book.title}} {% if book.star %}â
{% endif %}
{% endfor %}
{% endfor %}
Note that {{entry.books | size}} line: This is what outputs the number of books Iâve read in a particular year by spitting out the size of the books array. This is one of the big benefits of using a data file instead of hardcoded HTML or markdown. Just add a new book and everything else updates itself. Plus, I can use the data file for other things later if I so choose.
Here is the result:

You can check it out over at the reading list page, or you can see the code over at my Jekyll Tools Github repository.
If you liked my book notes, donât worry. They arenât going anywhere. Iâm keeping the pages up for posterity, but Iâm not updating them any more.
IÃÂÃÂÃÂâÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂve listened to, read, and used a lot more than what is on this list, but this stuff is what I recommend to others. If you want specific recommendations, shoot me an email!
DonÃÂÃÂÃÂâÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂt call it a comeback. Newsletters have been here for years. Here are new oneÃÂÃÂÃÂâÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂs IÃÂÃÂÃÂâÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂve joined:
If you install mysql via Homebrew ($ brew install mysql) and start it via Homebrew services ($ brew services start mysql), chances are that you’ll see an error when trying run mysql -u root on the command line.
If that error is command not found: mysql, the issue is likely that you need to add the Homebrew mysql directory to your PATH.
On my machine, Homebrew installed mysql here:
/usr/local/Cellar/mysql@5.7/5.7.25/
To add this to your PATH, add this to your .bash_profile (or .zhsrc if you use ZSH):
export PATH=/usr/local/Cellar/mysql@5.7/5.7.25/bin:$PATH
Then, reload your shell and type mysql -u root to confirm all is working.
You can quit the mysql CLI via mysql> q
Are you getting foreign key constraint errors when trying to restore Craft CMS database backups? Here is how to solve it.
Every time I download a backup of a Craft 3 database and try to restore it to my local development environment, I get this error: Cannot add foreign key constraint
This happens because the SQL dump has the data in a different order than it should be loaded in according to the foreign key constraints.
The solution is to use a MySQL session variable to turn off foreign key constraints and be able to load your data in the order it is currently in.
How?
WARNING: Do NOT even think of doing this in your production environment. Only development. You’ve been warned.
Open your .sql dump in your favorite text editor and put this line at the top:
SET FOREIGN_KEY_CHECKS = 0;
Save it, then retry your import. Works for me every time.
I wrote this post so that I don’t have to search how to do it in six months when I need to do it again.
p.s. if you want to do something similar in postgres instead of mysql, search for SET CONSTRAINTS ALL DEFERRED.

Last week I updated three large WordPress sites for Praxis from PHP 5.6 to 7.2. Here is the process I used on all three to make it a smooth transition.
Note: I do contract work and can help you figure this upgrade out. Reach out if you are interested in getting a quote.
First you need to know how much time you should plan to spend doing this work. A quick way to find the scope of the problem is to run the PHP Compatibility Checker plugin. It checks your themes and plugins, spitting out errors, warnings, and filenames/line numbers of the offending code so you know where to start.
Even if you get a 100% clean pass with the compatibility checker, I suggest going through the rest of my list. The compatibility checker isn’t perfect. You don’t want to roll those downtime dice. Fool me one time, and all that.
Copy down your current theme and database into your local development environment. This is important. Don’t use the version you have from work you did a few months ago. Stuff changes on the server all the time. Pull down a copy to be safe. Configure your local environment to use PHP 7.2. If you are unsure whether or not you are on 7.2 locally, you can always use a WordPress plugin like Debug Info to check. Also make sure to turn on error reporting in your php.ini.
Don’t have a local development environment yet? I like Valet.
While you are at it, I suggest upgrading your WordPress core to the latest version (5.1.1 as of this writing) and updating all of your plugins. Rip that bandaid off. On the plus side, it will probably make the PHP upgrade process easier, too.
This is either the easiest or hardest step. If your site looks fine and everything functions as it should, great! You won the lottery.
It is probably worth double checking that you actually are on PHP 7.2 with the debug plugin mentioned above. Also worth clicking all around your site and checking everything. Sometimes most of the site will load, but you’ll get weird inline error messages like this:
Warning: Use of undefined constant Y - assumed ‘Y’ (this will throw an Error in a future version of PHP) in /nas/content/staging/creativecourse/wp-content/themes/business-pro-theme/page-archive.php on line 70
If you navigate to the site locally and all you see is a sea of errors like I did on one site, you have some work cut out for you. Here are some tips:
wp-includes or wp-admin in the file paths, you need to update your WordPress core.wp-content/themes/ in the file path, and you don’t have any custom work done on the site, the quickest fix is to upgrade your theme or find a new one.wp-content/plugins/somepluginname/ in the file path, find that plugin and disable it or update it and try again. You should still be able to get to your /wp-admin/ dashboard even with a broken site because the most recent core works with PHP 7.2.Keep track of the changes you make. I keep a running list in my favorite notes app. Theme updates, core updates, plugin updates, and code changes. Write it all down. Better yet, version control it with git and commit along the way.
If you have any premium plugins that require activation keys, make sure that you contact the developer to get two extra development keys for local testing and production. Most will provide those to you at no extra cost. Some platforms give you 5 keys per purchase anyway just for this reason. I decided to roll the dice and not get keys for one plugin, and ended up crashing my production site with the upgrade because I didn’t test that plugin. Don’t be like me.
All three of my sites needed some work done, even the newest of the three. One didn’t load at all until I made some theme updates. One plugin crashed a site and had no updates available, so I had to do without. Some custom code I had written needed updates, too. It took me a few afternoons to sort it all out.
Once you have everything sorted out locally and you’ve triple tested everything, go ahead and push your work up to a staging environment. Good hosts like WPengine make having a production and staging environment easy. You can control the PHP versions independently. I use WPengine’s git deployment to move my local updates to the staging server. SFTP works, too. If you need database changes, you’ll also need to do a database migration. Core and plugin updates will need a database migration (Don’t forget to change the site URL or you won’t be able to log in!) If you need to do a database migration, use the instructions here
My preferred workflow is to copy the full production site (code + database) to staging, push my code changes, then do the core and plugin upgrades on the server (they often involve database changes), which is when my change list above comes in handy. I don’t like doing database migrations unless I absolutely have to, because with lots of users logging in to the site, data is bound to get out of sync with my local version in a matter of hours. Getting back in sync is tricky, so I choose to avoid the problem altogether by only moving code, keeping my change file, and replaying the steps on the staging server.
If you don’t have a staging environment and can’t get one with your host, or you can’t upgrade the PHP version yourself on your host, then you need a different plan. You’ll need to set up another site on another host that uses PHP 7.2, then put the updated copy of your site there. If you do this,proceed to the alternate #5 below.
Don’t assume everything works. Test it! Use different user account levels (admin, editor, author, contributor, and subscriber). Try every critical function on your site.
Only move on to the next step when you are certain everything works like it should.
Before you do anything else here, make a back up of your site and your database. Good hosts like WPengine make this easy. If you are doing this manually, verify the backups work locally. You can to be able to roll back if there is an issue.
I planned a maintenance window with my users a few days ahead of time. If you have users who rely on the site, you should, too.
Update your production environment to PHP 7.2, then copy the staging server to the production server. If you are confident that there were no users updating content in between the staging copy above and now, you can copy database and all. If there are changes you don’t want to lose on the production database, you’ll need to use my method and only copy over the theme code, then do core and theme updates on the production site. This is when planned downtime comes in handy.
If you set up a separate site on 7.2 (not a staging environment of a production site) and it works, then you are ready to cut over to the new version. Configure that new site to use your domain (URL field on the setting page), then point your domain’s DNS records at the new server. If you need to do a database migration, use the instructions here.
Don’t assume everything works. Test it! Use different user account levels (admin, editor, author, contributor, and subscriber). Try every critical function on your site. Use the Debug Info plugin to verify that the PHP change took.
If there are any issues, you might need to roll back to an earlier restore point and PHP version (or point your domain back to your other server), or do some real-time debugging. If your production and staging servers mirror each other in every way except PHP version, you shouldn’t run into anything unexpected. If you do, figure out where the difference is and go back to #3 above.

Newton Graphic Science Press in Japan published one of my photos twice in the past year. They found it via my Illum project on Flickr and requested permission to publish it.
Of course, I said yes.
Here are the spreads the sent me afterward:


The photo is from a high school physics contest held by the American Association of Physics Teachers where I won Second Place in 2008. Here is my original post from 2008 when I found out.
Now I’ve been published in Japan. Sweet. Remember to freely share your work. You never know who’ll end up seeing it and what opportunities might come your way.
I used to use Homestead for local WordPress and Craft development. It was nice because everything worked out of the box. Well, theoretically. In reality, it worked about 80% of the time, but 20% of the time I’d get cryptic errors from Vagrant like:
It was always a rabbit hole of headaches that could take half a day to resolve. Most resolution happened in the form of me destroying a box and rebuilding it, losing my databases. So much fun.
Today I got the SSH error again and had enough. I went looking for a better solution and found Valet. Their pitch:
Valet is a Laravel development environment for Mac minimalists. No Vagrant, no /etc/hosts file. You can even share your sites publicly using local tunnels.
Sounds great. It won’t eat my battery, RAM, CPU, or take gigs of disk space for vitual machines. Sign up the heck up.
It was super easy to set up with tools I already use: Homebrew and Composer. Instructions here.
The only tricky part was making composer directory available in my Mac’s PATH, since I’ve only ever used it inside individual projects. Turns out with zsh you have to give the explicit path, you can’t just use ~/, so I added this to my .zshrc: export PATH=/Users/cagrimmett/.composer/vendor/bin:$PATH
Once I loaded the profile with source ~/.zshrc, I was good to go. I linked my main projects folder so Valet knows where to look for projects, changed my wp-config.php files to point at my local mysql database instead of Homestead’s, then navigated to project-folder-name.test and was good to go!
Valet runs at startup, so I don’t have to run cd ~/Homestead && vagrant up anymore, just brew services start mysql@5.7 if I need a database running (which you usually do for WordPress development.)
I like that Valet makes it so easy to use different PHP versions. For example, to use 7.2, you go to your command line and type: valet use php@7.2
I’m looking forward to never using Vagrant or VirtualBox again. Peace out

I recently read Cal Newport’s Digital Minimalism. I was more or less convinced before I picked the book up that I’m wasting too much time on social media and my ability to focus is becoming fragmented. I read this to hear his solution to this issue: Ruthlessly cutting out digital tools that don’t bring you value.
I’d consider myself, in Newport’s parlance, a digital maximalist. I have accounts on every major platform, am an early-adopter of new digital platforms, social networks, and tools, and evangelize tools I find useful. My always connected.
While I generally love this, I’ve noticed that my ability to focus for long periods of time and to sit and observe without needing a distraction (my phone) has diminished significantly. This is a problem. I value my observation abilities and don’t want to lose them. I also have so many things I want to do: Blog posts to write, spoons to carve, places to explore, etc.
Following Newport’s advice for doing a digital declutter, I took stock of what I think is causing me the most harm: Mindless scrolling. Here’s where it shows most:
Only particular cycle that is bad for me is checking Slack, then my email, then Twitter, then Slack, then my email, then Twitter in an endless loop on my phone. I have no idea why I do this. Sometimes I’ll zone out and do this for 15 minutes straight without seeing anything new. Crazy.
I saw that my friend Chris Johnson is doing a digital declutter, so I decided to join him.
Here is my Digital Declutter plan for the next 30 days:
You’ll probably still see my post my blog posts on social media, but I’ll be doing that through Buffer so I stay away from the feeds. I still want those readers, you know.
After 30 days I’ll reintroduce some things back into my life, but probably not all, and I’ll probably slim things down quite a bit. Probably some Instagram and Twitter, but restricted times. I’ll probably keep the main phone restrictions. We’ll see.
I’m looking forward to this. I want my attention, observation, and creativity back. And along the way, my happiness.
My Career Launch Story on the Career Crashers Podcast
https://crash.co/blog/career-crashers-podcast-episode-4/Archived Link
I wanted to share a trick I use to save me a ton of time: Opening URLs from selected text in Safari tabs.

My trusty 2013 MacBook Pro died over the weekend. Here is everything I installed and configured on my new machine to get it up to speed. Setting up a new machine from scratch is a great way to clear the cruft that inevitably builds up over time.
I’m sure I’ll find a few more things in the next month that I forgot, but this is ~95% complete.
$ xcode-select --installdefaults write com.apple.finder AppleShowAllFiles YES – Gotta see those hidden files100 Ways to Work Out Loud
https://discoverpraxis.com/100-ways-to-work-out-loud/Archived Link
On a recent episode of Office Hours, a listener asked about the purpose of social media. Isaac and TK recommended taking a pragmatic approach. Here is my take on what that looks like.
Hereâs how I use the major social channels:
I like Facebook less every week. I only hop on a few days a week now. The content there is mostly trash. I go on to keep up with friends from high school and college, as well as family. I rarely comment and I almost never engage in a discussion there. It isnât as toxic as Twitter because you generally have closer ties with someone involved in the thread on Facebook, but it is still usually bad.
I think people waste too much time on Facebook unintentionally and would do well to delete the apps from their phones and only check it from one specific device that you use only as a secondary or tertiary device. For me that is my iPad. I keep Facebook blocked on my computer and my phone to reign in my unintentional time wasting.
Twitter is my second favorite social service to browse. It is where I get a lot of recommendations, find out about new apps, and get my news. I donât read traditional news outlets unless I find an interesting story linked on Twitter or a blog I read (see below).
I curate who I follow pretty regularly, so I have a pretty good âcontent to garbageâ ratio, or at least one Iâm willing to tolerate enough to check out during breakfast and lunch.
I still want something like Mastodon to take off, but I havenât found any communities that are active enough to invest in. I prefer using the internet as a place to consume (find recommendations, keep up with what friends and family are doing, learn new things) and project (write and share my own stuff), but not converse. Most of the internet is a terrible place for conversing. It just isnât set up for that. Perhaps Mastodon can fill that gap if I find the right community?
Iâm trying out https://refactorcamp.orgArchived Link right now and having a pretty high hit rate of good content. Still not great for discussion, though.
If you have any Mastodon communities you recommend, Iâd love to hear about them.
Iâm photographer. I love posting to Instagram. It is probably my favorite social service to browse, too. So much good stuff in my feed! That said, it is the one Iâm most likely to waste too much time on because I like it so much. So I delete it from my phone most of the time and only download it when I want to post to it, keep it around for a few days with 15 minute time limits set with Screentime, then delete it until I want to post again.
Oh, Reddit. I want to love you, but I canât. The comments are so toxic, even in decent subreddit communities. Every subreddit I start getting involved in inevitably devolves to inside jokes, gatekeeping, and beginners asking the same question covered hundreds of times. (On the Kombucha sub, it is always âis my scoby okay?!?!). It gets tiring.
I love reading AMAs, but I never get there in time to ask a question. And when I did ask questions in AMAs a few times, I got banned for asking for a month because I asked the same question each time: What are you reading right now? Apparently that isnât allowed.
Also, the search is completely terrible. There is probably tons of useful stuff locked away in threads that no one can find, forever lost to the ether.
Iâm over Reddit. My RescueTime stats show that I visit the site less and less each year.
I donât use Pinterest. I canât reliably find anything in that awful sea of ubiquitous images. You have to sift through a pile of garbage to find one useful thing. I prefer to avoid the whole mess in favor of other services. I use http://Are.na as a personal pinboard.
I only watch YouTube videos I find embedded elsewhere or that someone sends me. I canât remember the last time I went directly to YouTube.com to just see what was happening. I donât like the video medium unless Iâm trying to learn something, and I tend to find those videos through search engines. I donât watch YouTube videos recreationally.
This is too small right now to be super useful, but Iâm hopeful for it. A service dedicated to book, show, and restaurant recommendations. Requests for this sort of thing on regular social media tend to get lost in the sea of other garbage and algorithmic timelines, so people often donât respond until days later. Likewise keeps these asks front-and-center. You should join me on Likewise! https://likewise.com/invitedby/5bbe223985965466d44255eb
Great tech news source. I donât participate in the comments/community there. Iâll often click through to the comments section to get a tl;dr of the article or get hot takes on current events. I find a lot of products and tools here that I bookmark and end up using or recommending later.
There was a period where I checked Product Hunt daily and found a lot of cool stuff there. Now I check it maybe once a week and only find a fraction of the cool stuff I once found there.
I hate it. I refused to be on it for years. I have a profile now to set a good example for Praxis participants, and I may even cross post one of my articles there, but I get very little value from the service.
I went through a phase where I answered questions on Quora, but I got bored by it pretty quickly. I didnât invest enough to get over the hump and get a large return, so it just felt like I was wasting my time. Plus, there are so many shitty answers on there by people who just spend all day answering questions they only know a little bit about. Costless question asking and costless answering lead to a pretty low quality of content. The early days were cool because it was costlier to be in a small community like that instead of elsewhere. But now it sucks.
Iâve never asked a question on SO, but I sure am glad it exists. Iâve had dozens, maybe hundreds, of questions answered by previously existing questions there. I have chipped in and answered some questions there, but I donât make a regular habit of it.

I have a certain capacity for creative output. That level may increase or decrease over time, but it stays relatively constant day-to-day.
You can think of this capacity as tokens that I have available to spend each day. I can either spend these tokens at my full-time job, at a side gig, or on a personal project.
I feel most balanced when I use 80% of my creative capacity at my full-time job and 20% elsewhere.
When I use 100% of my capacity at my full-time job for an extended period of time (say 2 weeks or more), I feel unbalanced. My overall creative capacity starts to decline. Some might call this feeling burned out.
When I use more than 20% on personal projects or side gigs (i.e. less than 80% at work) for more than two days in a row, I feel unbalanced, like I’m neglecting my work responsibilities. Like I’m falling behind and my output isn’t up to par.
I’ve never taken complete breaks from creating things. The manifestation just tends to shift. On vacations I tend to pick up photography and journaling to fill the creative gap. Sometimes drawing. During the holidays I tend to make more elaborate meals and try making new cocktails.
I’ve also never shifted 100% of my capacity into personal projects for an extended period. I haven’t been unemployed for more than a week in the past 7 years. Vacations are breaks from personal projects as much as traditional work, so that is why the output tends to shift to photography, journaling, and drawing.
I routinely go 3-4 weeks at a time at a 95/5 split on work/personal. Those times my personal creative output tends to be listening notes from podcasts and cooking. Days during high work periods where I manage to put out a longer blog post, I’m almost certainly eating leftovers or takeout. (Tonight, for instance: 3 blog posts plus curating a bunch of book recommendations on Likewise and I ate leftover soup for lunch and made a taco salad from leftovers in the fridge for dinner.)
I radically cut down the amount of side gigs I take on in order to prioritize personal projects. In fact, I have no side gigs going on at the moment.
What would my creative output look like when focused 100% on the personal side? I haven’t experienced that since high school and college, but the photography projects I focused on during those periods still rank among what I consider my best. Even periods where I’ve shifted to a 20/80 split on work/personal resulted in projects I’m proud of and look upon fondly.
In the next few years, I’d like to take a complete month away from full-time work and focus on personal projects for the entire time. Deliberately throw myself out of balance in a way I’m not used to and see what I create.
Creative people commonly lament about being “blocked,” perpetually stuck and unable to produce work when necessary. Blocks spring from the imbalanced relationship of How and Why: either we have an idea, but lack the skills to execute; or we have skills, but lack a message, idea, or purpose for the work. The most despised and common examples of creative block are the latter, because the solution to a lack of purpose is so elusive. If we are short on skill, the answer is to practice and seek outside guidance from those more able until we improve. But when we are left without something to say, we have no choice but to either go for a walk or continue suffering in front of a blank page. Often in situations like these, we seek relief in the work of others; we look for solace in creations that seem to have both high craft and resounding purpose, because they remind us that there is a way out of the cul-de-sac we have driven into by mistake. We can, by dissecting these pieces, begin to see what gives the work of others their vitality, and better understand the inner methods of what we produce ourselves. If we are attentive, with just a dash of luck, we may even discover where the soul of our own work lies by having it mirrored back to us in the work of others.
But we must be careful not to gaze too long, lest we give up too much of ourselves. Forfeiting our perspective squanders the opportunity to let the work take its own special form and wastes our chance to leave our fingerprints on it. We must remember Why we are working, because craft needs objectives, effort needs purpose, and we need an outlet for our song. If we stay on the surface and do not dig deep by asking Why, we’re not truly designing.
Podcast: http://longform.org/posts/longform-podcast-311-jerry-saltz
Notes:
1: The Value of Debate, Is Self-Improvement Overrated, and Dealing with Haters
Notes:
2: What to Ask In a Job Interview & Is It Worth it to Help Unmotivated Friends
Notes:
Cameron Sorsby asked the Praxis staff today what our top 3-5 favorite movies are, off the top of our heads. I came up with 3 easily, but none were recent. Then I realized that no movie I’ve watched for the first time in the last four years is memorable. Series are getting so much better and eclipsing movies since they are free from networks and ad breaks.
What will the next leap forward for movies look like? Netflix/Amazon Prime hasn’t changed much for that format. What’s next?
Podcast: https://www.buzzsprout.com/126848/814311
Notes
Podcast:
Notes:
Happiness isn’t our natural state, and that is okay. You just have to take deliberate steps to get there.
Why you need to stick it out in one position for two years.
Ways to build your personal brand, featuring examples from the Praxis community.
https://discoverpraxis.com/compound-career-opportunities/Archived Link