Skip to main content

Pre-Monday Motivation - Creating My Udemy Course

Hope you've all have a great weekend!

I thought I'd share this recent experience and deviate a bit from the technical side of things. 

Currently I am working on creating a Udemy course and I'll tell you now, do NOT underestimate how much time and effort goes into filming! 

Manged to put off starting it because I didn't like the amount of work it would involved to create it (TL;DR I was lazy). The best piece of advise I've heard for getting around this was:

"Don't think about it, just do it"

Sounds simple? It works surprisingly well, instead of thinking ahead of the big ordeal of filming and producing the content, don't think of all the work and instead jump right it and start. In the end I found myself really enjoying the process and where I was worrying about not having enough content for 30 minutes, I found myself hitting 6-10 minutes a lecture because I was passionate about the subject and kept riffing off with useful information. 

What initially made matters worse when filming was the amount of "events" that happened right before filming. Every time I would go to press film or start recording, something would happen:

  • A plane would fly overhead
  • Summer holidays and the kids aren't at school so outside they would run past the house screaming
  • Police sirens nearby
  • 2-3 phone calls
  • Someone would pop in to ask a question
  • Neighbours having a really LOUD conversation

At the start this was incredibly frustrating and would be an easy excuse to slip into old habits, however, there was a goal in mind and despite these setbacks I was determined to get at least ONE lecture filmed. I managed to make significant progress through it despite the setbacks and I plan to continue filming and later editing the course this week.

Don't think about it, just do it!

Comments

  1. Really, this is very important information which is shared by you. This info is meaningful and important for everyone to increase our knowledge about it. Always keep sharing this kind of info. Thank you. Read more info about top technology speakers

    ReplyDelete
  2. I generally check this kind of article and I found your article which is related to my interest. Genuinely it is good and instructive information, Best Motivational Speakers In Jaipur Thankful to you for sharing an article like this.

    ReplyDelete

Post a Comment

Popular posts from this blog

Adding a space to your iOS App Name

How to add a space to your display name There is a cap of sorts for iOS applications where once your display name exceeds 12 characters, it will strip any spaces in it. There are a lot of posts on StackOverflow about this, however the missed one small detail on how to edit the value. What we need to do is edit info.plist. You can try this in Xcode but it doesn't work, you need to use another text editor - in my case I used Visual Studio Code. Your directory structure may vary, here I am working on a React Native project. Instead of iOS, your root folder may be your project name.  Go to: build > * Your application name * > edit info.plist The value we want to update is " CFBundleDisplayName ".  Where the space(s) are, we need to replace the space here with:      Your CFBundleDisplayName should then look like this: That is all there is to it! Hope this helps you out.

How to enable the lock screen for your Android Emulator

Here's how: When I was testing and app with media controls, I would press the lock button, once to lock the screen and a second to unlock it which would instantly unlock it and take you to the app.  By setting the option for ‘swipe’ when unlocking the screen (pressing the power button the second time) you are now presented with the lock screen and can swipe/drag the screen upwards to go the application Go to Settings --> Security --> Screen Lock Choose 'Swipe' That's all there is to it!

Xcode - ld: library not found for -lDoubleConversion

Here's how you fix this issue Ran into this with the iOS version of my React Native application, the fix is very quick and easy: We need to disable dead code stripping for our release, this is how to do it: Open XCode and press: Cmd + 1 Click on your project in the left panel Click on "Build Settings" In the "Linking" section, under the "Dead Code Stripping" section, change the setting for "Release" from "Yes" to "No"