SachinjoseWi-Fi QR- Code Generator in pythonThe motivation behind this blog emerged from my desire to share Wi-Fi passwords with friends and relatives who visit my home. So, I thought…Jul 2Jul 2
SachinjoseConverting Python Scripts to Executable Files: A Guide for Windows UsersIn this blog post, we’ll explore how to transform your Python scripts into standalone executables on Windows. We can see how we can share…Jun 27Jun 27
SachinjosePython’s F-String Magic: Unleashing Hidden TricksIn this blog, we’ll delve into the delightful world of f-strings, which was added in Python 3.6. If you’re still concatenating strings and…Jun 25Jun 25
SachinjoseGit and GithubGit and Github are the most commonly used standards in the software development cycle. Let's dive into how git and Github can be…Jun 21Jun 21
SachinjoseUnderstanding Git Reset: A Comprehensive GuideGit is a powerful tool for version control, allowing developers to track changes, revert to previous stages, and collaborate on projects…Jun 14Jun 14
SachinjoseCreate new branch from a particular commit in GitCreating a new branch from a specific commit in Git is a common task and can be done using the following steps:Jun 11Jun 11
SachinjoseLoguru: A Concise logging solutionWhile I was engaged in a Python project, I considered investigating alternative logging options. Although the conventional logging module…Jun 9Jun 9
SachinjoseMerge Vs RebaseWhen collaborating on a project within a team, a new branch is typically created for each new feature. This allows you to experiment and…Jun 9Jun 9
SachinjoseTrigger a python script from a python scriptIn this blog, we will go through multiple approaches to trigger a Python script from another Python script. Let’s discuss the three…May 26May 26