Python

Python Juypter : Install

31 Mar 2020, 03:21pm TZ +05:30
Python, AppDevelopment, hardware, Juypter
tools, Software

Jupyter

Jupyter is great tool for Python development. It’s an open-source web application that allows you to create and share documents that contain live code, equations, visualizations and narrative text. It’s used for data cleaning, scrapping and transformation, numerical simulation, statistical modeling, data visualization, machine learning, and much more. In-fact, I have already used it in some of my hardware projects.

Let’s Get this installed in our machines. And have some fun !

...

Time Recorder

07 Sep 2018, 06:43am TZ +05:30
Time Recorder
Python, AppDevelopment
Software

Work Time Recorder Project # This program is a tool designed to help record and measure the work hours of a given task. Download Click on the image to download: It’s available in source code form. Download it here Dependencies for Linux Need to install python-tk or python3-tk for Python 2.x and Python 3.x respectively. Ubuntu/debian : 1 2 3 4 5 6 sudo apt-get install python-tk ## Or sudo apt-get install python3-tk Arch / Manjaro : ...

Python Serial Port Logger

02 Jun 2021, 05:12pm TZ +05:30
Serial Port Utilities
Python, AppDevelopment
Software

Simple Serial Port Logging Utility # Based on pyserial this utility helps to log data from a Serial Port connected to a PC. It also creates a log file with date stamps. Download # Here is the Link to the Source for download. Save it as SerialLogger.py. Run # python SerialLogger.py Details # One needs to change the section under # Port Configuration to customize it for your own system. ...

Time Recorder App : V1.0

07 Sep 2018, 07:01am TZ +05:30
Time Recorder
Python, AppDevelopment
Software

Work Time Recorder App : Release V1.0 # First working version of the app. For more background refer to Introduction This version caters to the following: Simple time display Python 2 and Python 3 compatibility Fail safe environment No Terminal prompt execution Screenshot # Here is a screenshot: Download # Note the pyw extension for the window executable of python. timer1.pyw One might wonder why this is not in Github - well simplicity. ...

Time Recorder App : V2.0

12 Sep 2018, 09:18am TZ +05:30
Time Recorder
Python, AppDevelopment
Software

Work Time Recorder App : Release V2.0 # Second release of the App. For more background refer to Introduction. This version caters to the following: First Release with Minutes and Seconds Clock Start Stop Capability and Reset [bug] Quit button works but take some time to release TODO: need to Fix this in Next Revision. Screenshot # Here is a screenshot: Video of Operation # To view this video please enable JavaScript, and consider upgrading to a web browser that supports HTML5 video Download # Note the pyw extension for the window executable of python. ...

Time Recorder App : V3

19 Oct 2018, 05:16pm TZ +05:30
Time Recorder
Python, AppDevelopment
Software

Work Time Recorder App : Release V3.x # Thrid release of the App. There were several intermidiate fixes to the app. Also an UI overhaul for better usability. For more background refer to Introduction Version 3.3 (Latest) Version 3.3 Added feature to show the timer in the Title. This means when the timer is minimized the time counter still stows on the start bar. TODO: Add way to save the time-stamp and load the time-stamp from files. ...