How to Write Helpful User Tutorials and Onboarding Guides

Writing user tutorials is essential to launching any new software project. But writing helpful user tutorials requires a careful hand, with a correct understanding of the user’s needs and expectations. With a solid foundation of empathy and understanding, we can build user tutorials that will educate our users without losing their attention or going over… Continue reading How to Write Helpful User Tutorials and Onboarding Guides

Counting Word Frequency in a File Using Python

Ever wondered about a quick way to tell what some document is focusing on? What is its main topic? Let me give you this simple trick. List the unique words mentioned in the document, and then check how many times each word has been mentioned (frequency). This way would give you an indication of what… Continue reading Counting Word Frequency in a File Using Python