Skip to main content

Critical Thinking: Online Free Courses

The Thinker - Rodin Museum - Source: https://p2.piqsels.com/preview/39/140/968/the-thinker-rodin-rodin-museum.jpg

Here are some free courses and videos on training and improving Critical Thinking.

Critical Thinking by Mike Figliuolo on LinkedIn Learning

https://www.linkedin.com/learning/critical-thinking/
    Learning Objectives:

  • Break big problems into small ones
  • Define the problem statement
  • Ask focusing questions
  • Find root causes
  • Demonstrate how to use critical thinking tools
  • Teach others to think critically

  • Critical Thinking & Problem Solving on edX.org

    https://courses.edx.org/courses/course-v1:RITx+SKILLS103x+2T2018/course/

    5 tips to improve your critical thinking

    To summarize, go through these 5 tips when it comes to make decision.

    Critical Thinking: Fundamentals of Good Reasoning on edX.org

    The objective of the course - Critical Thinking: Fundamentals of Good Reasoning is to improve the student's ability in the basic skills of critical thinking: how to recognize arguments, how to interpret them, how to evaluate them, and how to construct them.

    Popular posts from this blog

    Powershell: Get-History

    Get-History - Gets a list of the commands entered during the current session.

    MSSQL: Fix error 'Consistency validation for SQL Server registry keys'

    While installing Microsof SQL Server 2012, I ran into the following error. "The SQL Server registry keys from a prior installation cannot be modified. To continue, see SQL Server Setup documentation about how to fix registry keys." How to fix Replace the D:\x64\FixSqlRegistryKey_x86.exe file with the original file from the ENU\SQLFULL_ENU.iso file downloading from Microsoft Download Center. This ISO file is 4.2GB. So you can click FixSqlRegistryKey_x86.exe to download this file only. After replacing that file, press Re-run to check. All rules are passed.

    Powershell: Check Bad Logon

    get-aduser -Filter {BadLogonCount -ne 0} -properties * | select SamAccountName,BadLogonCount,BadPasswordTime,BadPwdCount,@{name='badPasswordTimeDT'; expression={[datetime]::fromFileTime($_.badPasswordTime)}} | sort BadPasswordTime | FT