highflyer.hashnode.devFolder Icons for Devs: Making My Desktop Less MessyI've made a decision to share something that has helped me organize my digital life and make my desktop a lot cleaner. Let me introduce Folder Icons for Devs 🎉 Let's face it - as developers, our desktops can quickly become a chaotic mess of files, f...Jun 23, 2023·1 min read
highflyer.hashnode.devUnlocking Web Accessibility: Tips for DevelopersAs web developers, it's our responsibility to make sure that the websites we create are accessible to everyone, regardless of their abilities or disabilities. In this blog post, I'll go over some essential accessibility tips for web developers. Use ...Apr 29, 2023·3 min read
highflyer.hashnode.devA Short Guide to Python ComprehensionsPython does not stop to surprise me. I am currently exploring comprehensions and decided to share some tips about it. This is an exciting and powerful feature that allows us to write expressive code in a single line. Comprehension creates new sequenc...Sep 4, 2020·2 min read
highflyer.hashnode.devPython data structures (lists, tuples, dictionaries, sets)In this blog post, we are going to study a short overview of some data structures specific to Python3. Python has four basic inbuilt data structures: Lists, Dictionary, Tuple, and Set. We will see how to use each of them and how they make life easier...Jun 6, 2020
highflyer.hashnode.devWhat is a Python docstring?Code documentation is an integral part of Python development experience. Sometimes there may be more documentation in the source than code itself. It helps you understand what a function or class does, what arguments it accepts, and what it returns. ...May 16, 2020