VVahidinpythonology.hashnode.dev·Nov 26, 2023 · 1 min readCode Documentation: An Ignored SkillI have taken quite a few courses on Programming in general and Python in particular. One of the things that I have noticed is the lack of a section how to document your code by providing good documentation. Python comes with the PyDoc module built-in...00
VVahidinpythonology.hashnode.dev·Jan 21, 2023 · 1 min readIs Thonny the best IDE for Python beginners?What Is Thonny? Thonny is a Python IDE (Integrated Development Environment) designed for beginners. It is written in Python and designed for the Python programming language. It provides an easy-to-use interface and a variety of features such as synta...00
VVahidinpythonology.hashnode.dev·Jan 17, 2023 · 1 min readWhat Is Syntax In Programming?As a Linguist (Ph.D. in Linguistics), I DO NOT get asked this question enough by programmers! Apparently, everyone knows what it is. So, why bother writing about it? Syntax is one of the most important areas in Linguistics or the scientific study of ...00
VVahidinpythonology.hashnode.dev·Jan 17, 2023 · 1 min readUsing Python to analyze SEOSo I was wondering how I can analyze the on-page SEO of my website pythonology.eu and obviously there were tens of SEO analyzers out there! So, I thought about how I can make my own! Apparently, there is already a Python library called pyseoanalyzer,...00
VVahidin30daysofjava.hashnode.dev·Nov 1, 2022 · 2 min read30 Days of Java | Day 3One-line if statements If the if statement only has one statement you do not need braces, although it can be good to put them anyways. int score = 250; if (score > 100 && score <300) System.out.println("You got it!"); Variables in code blocs are no...00