Skip to content
  • Facebook
  • GitHub
  • YouTube
  • Pinterest
My Tec Bits
  • Home
  • Microsoft
    • .Net
      • ASP.NET
      • MVC
      • Visual Studio
    • IIS
    • SQL Server
      • SQL Server 2019
      • SQL Server 2017
      • SQL Server 2016
      • SQL Server 2014
      • SQL Server 2012
      • SQL Server 2008
    • Windows OS
  • Web Development
    • Java Script
    • Jquery
    • Python
    • Bootstrap
    • Zurb Foundation
    • Web Security
  • More
    • macOS
    • Reviews
  • Online Tools
    • Fitness Calculators
    • Encoders & Decoders
    • Cryptography
    • Unit Converters
    • Math. Calculators
    • Date & Time Calculators
    • Finance Calculators

Converting seconds to days, hours, minutes and seconds in Python

Jul 25, 2019 by Beaulin Twinkle
Converting seconds to days, hours, minutes and seconds i Python

Easiest way to convert seconds to days, hours, minutes and seconds in Python programming.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips Leave a comment

Generate time from hours, minutes and seconds in Python

Jul 25, 2019 by Beaulin Twinkle
Generate time from hours, minutes and seconds in Python

Way to generate time from hours, minutes and seconds in Python programming language. Generating atime value from individual components of time.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips Leave a comment

Generate date from day, month and year in Python

Jul 24, 2019 by Beaulin Twinkle
Generate date from day, month and year in Python

Quick method to generate a date from day, month and year in Python language.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips Leave a comment

Getting current time alone in python

Jul 24, 2019 by Beaulin Twinkle
current time alone in python

Here we have few methods for getting the current time alone in python programming.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips Leave a comment

Getting current date alone in python

Jul 21, 2019Jul 19, 2019 by Beaulin Twinkle
Getting current date alone in python

Simple tips to get the current date alone from the system date and time in Python language.

Categories Python Tags Python 3.7.x, Python Tips Leave a comment

Getting the current date and time in Python

Jul 19, 2019 by Beaulin Twinkle
getting current date and time in Python

Here is the way to get the current date and time in Python programming language.

Categories Python Tags Python 3.7.x, Python Tips Leave a comment

Django: You have .. unapplied migration(s).

Jul 31, 2019Jul 18, 2019 by Beaulin Twinkle
Running Django migration comment

Solution for Django unapplied migration(s) issue: You have 17 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.

Categories Python Tags Django 2.2.x, Python 3.7.x 1 Comment

How to make Python program to sleep for milliseconds?

Jul 19, 2019Jul 17, 2019 by Beaulin Twinkle
make Python program to sleep for milliseconds

Here is a simple tip to make Python program to sleep for milliseconds using the regular time.sleep() method.

Categories Python Tags Python 3.7.x, Python Tips Leave a comment

How to find only the files in a directory in Python?

Mar 3, 2023Jul 12, 2019 by Beaulin Twinkle
find only the files in a directory in Python

A simple Python technique to find only the files in a directory. Here I have used pathlib and os.listdir to get the list of files.

Categories Python Tags Python 3.x Leave a comment

How to check if file exists before opening it in Python?

Jul 12, 2019 by Beaulin Twinkle
check if file exists before opening it in Python

Here is a simple Python technique to check if file exists before performing any operation on the file.

Categories Python Tags Python 3.x Leave a comment

Python code to find the version it is running on

Jul 10, 2019 by Beaulin Twinkle
Python code to find the version it is running on

Here is a simple Python code to find the version it is running on. You can get the full version number or the various components like manor, minor,… versions separately.

Categories Python Tags Python 3.x Leave a comment

Upgrading PIP on macOS for Python 3.x

Jul 10, 2019 by Beaulin Twinkle
Check latest released pip version

Here are the simple steps for upgrading “Package installer for Python” abbreviated as PIP to it’s latest version compactable to Python 3.x.

Categories macOS, Python Tags macOS Mojave, Python 3.x Leave a comment

Linting Python Code In Visual Studio Code

Jul 9, 2019 by Beaulin Twinkle
Linting Python Code In Visual Studio Code

In this article we will how to activate, install and use a popular linting tool PyLint on VS Code for linting python source code.

Categories Python Tags macOS Mojave, Python 3.x, Visual Studio Code Leave a comment

Installing Python Packages For Visual Studio Code On macOS

Sep 6, 2019Jul 9, 2019 by Beaulin Twinkle
Using Python Packages

In this article we will see how to create a virtual environment and installing Python packages for Visual Studio Code on macOS.

Categories macOS, Python Tags macOS Mojave, Python 3.x, Visual Studio Code 3 Comments

Setting Up Visual Studio Code For Python On macOS

Jul 9, 2019Jul 4, 2019 by Beaulin Twinkle
Python extension for VS Code

Simple step by step illustration for setting up visual studio code for Python programming and debugging on macOS computer.

Categories macOS, Python Tags macOS Mojave, Python 3.x, Visual Studio Code 2 Comments

How To Upgrade Python On MacOS?

Sep 9, 2020Jul 3, 2019 by Beaulin Twinkle
download the pkg file for macOS 64-bit installer

Here is the step by step instruction tp upgrade Python On maxOS to it’s latest version.

Categories macOS, Python Tags macOS Catalina, Python 3.8.x, Python 3.x Leave a comment

Check If Python Is Pre-installed On Your MacOS

Aug 5, 2021Jul 3, 2019 by Beaulin Twinkle
Check If Python Is Pre-installed On Your MacOS

Follow the steps given here to check if Python is pre-installed on your macOS computer.

Categories macOS, Python Tags macOS Mojave, Python 2.x, Python 3.x Leave a comment

How To Drop Temporary Table If Exists In SQL Server?

Jun 28, 2019 by Beaulin Twinkle
Drop Temporary Table Only If Exists

Here is a simple tip on how to drop a temporary or temp table if it exists using the DIY in 2016 or higher versions of SQL Server.

Categories SQL Server Tags SQL Server 2008, SQL Server 2012, SQL Server 2014, SQL Server 2016, SQL Server 2017, SQL Tips, Transact-SQL (T-SQL) Leave a comment

How To Reset Identity Seed In SQL Server?

Jun 28, 2019 by Beaulin Twinkle
Reset Identity Seed In SQL Server

Here is a simple tip to reset identity seed of an auto incremented identity column after deleting records from the table in SQL Server.

Categories SQL Server Tags SQL Server 2017, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Convert DateTime To YYYY-MM-DD Format In SQL Server

Dec 20, 2019Jun 27, 2019 by Beaulin Twinkle
Convert DateTime To YYYY-MM-DD Format

Here is a simple tip to convert the datetime value to a specific formatted date like YYYY-MM-DD in SQL Server 2012 and higher.

Categories SQL Server Tags SQL Server 2012, SQL Server 2017, SQL Tips, Transact-SQL (T-SQL) 3 Comments
Older posts
Newer posts
← Previous Page1 … Page9 Page10 Page11 … Page23 Next →

Article Categories

  • Android (2)
  • Apple (22)
    • macOS (22)
  • Internet & Web Dev. (152)
    • DNN (4)
    • Java Script (10)
    • Jquery (8)
    • PHP (7)
    • Python (83)
    • Twitter Bootstrap (25)
    • Web Security (11)
    • Zurb Foundation (6)
  • Linux (4)
  • Microsoft (318)
    • .Net (69)
    • IIS (10)
    • Internet Explorer (3)
    • Office (2)
    • SQL Server (225)
    • Windows (24)
  • Networks And Distributed Systems (2)
  • Oracle (7)
    • Java (2)
    • Oracle Database (5)
  • Others (6)
  • Reviews (10)

Recent Articles

  • Installing .NET SDK in Linux Mint and debugging C# code using VS Code Jun 21, 2024
  • Generating random number in C#  Jun 6, 2024
  • How to calculate running total in SQL Server? Apr 27, 2024
  • How to import XML data into SQL Server using SELECT query? Apr 10, 2024
  • How to prevent VS Code from replacing an already opened preview tab with a subsequently opened one? Mar 13, 2024
  • Separating letters and numbers from strings in SQL Server Mar 6, 2024
  • How to call or run another application from python code? Feb 15, 2024
  • How to store images in SQL Server? Jan 17, 2024
  • Error: A table that has FILESTREAM columns must have a nonnull unique column with the ROWGUIDCOL property. Jan 8, 2024
  • Fix for Error: “FILESTREAM feature is disabled” while adding FILESTREAM Jan 4, 2024

Subscribe MyTecBits.com

Online Tools

  • Fitness Calculators
  • Encoders & Decoders
  • Cryptography
  • Unit Converters
  • Math. Calculators
  • Date & Time Calculators
  • Finance Calculators

Popular Articles

  • Where is SQL Server Configuration Manager?
  • Formatting SQL statements in SSMS
  • How to exit from single-user mode in SQL Server database?
  • SQL Server: Search And Find Stored Procedure
  • How To Drop Temporary Table If Exists In SQL Server?
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use. Learn more...
  • Home
  • About Us
  • Contact Us
  • Site Map
  • Terms Of Use
  • Privacy Policy
© 2012 - 2025 My Tec Bits. All Rights Reserved.