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

My Tec Bits!… Online Tools, Converters & Calculators

Dec 29, 2022May 16, 2012 by My Tec Bits.
My Tec Bits - Tools Section

Try our new online tools section. We have added cryptography tools like hash generators, Encoders & Decoders, Unit Converters, Medical & Health Calculators. Go to Tools Section.

Categories Others

How to find the index of an item in a list in Python?

Mar 19, 2023 by Beaulin Twinkle
How to find the index of an item in a list in Python?

In Python programming, there are several ways to find the index of an item in a list. Let us go through some of the commonly used methods.

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

How to check if the given string is a number in python?

Mar 10, 2023 by Beaulin Twinkle
Check If The Given String Is A Number In Python

Python provides many built-in functions that simplify the task of performing various operations. One of these operations is to check if a given string is a number or not.

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

IIF vs CHOOSE in SQL Server

Mar 2, 2023 by Beaulin Twinkle
IIF vs CHOOSE in SQL Server

IIF and CHOOSE are two logical functions in SQL Server used for different purposes. Here we will see the competition of IIF vs CHOOSE.

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

How to insert multiple records with a single SQL query?

Feb 25, 2023 by Beaulin Twinkle
How to insert multiple records with a single SQL query?

Here is a simple tip to insert multiple records in an SQL Server database table with a single SQL insert query.

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

How to drop all the tables from a database in SQL Server?

Feb 25, 2023 by Beaulin Twinkle
How to drop all the tables from a database in SQL Server?

In rare situations like database level permission issues, you may need to drop all the tables from a SQL Server database and recreate them.

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

How to reset user settings in Visual Studio Code?

Feb 8, 2023 by Beaulin Twinkle
How to reset user settings in Visual Studio Code?

Follow these simple steps to reset user settings in Visual Studio Code. Reset VS Code user settings in few steps.

Categories Others Tags Visual Studio Code Leave a comment

How to launch Visual Studio Code from macOS terminal?

Feb 8, 2023Feb 3, 2023 by Beaulin Twinkle
Launch Visual Studio Code from macOS terminal

Here, let us see how to run or launch Visual Studio Code from macOS terminal. This will be helpful if you are an avid terminal user.

Categories macOS Tags Visual Studio Code Leave a comment

How to use CHOOSE in SQL Server

Jan 28, 2023 by Beaulin Twinkle
How to use CHOOSE in SQL Server

CHOOSE is a Transact-SQL function used to return a single value form a list based on the specific index. Let’s see how to use CHOOSE function.

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

How to make SQL script to sleep?

Jan 13, 2023 by Beaulin Twinkle
Make SQL script to sleep

In this article, we will see how to make an SQL Script to sleep for some time with examples.

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

How to make a PHP script to sleep?

Dec 30, 2022 by Beaulin Twinkle
PHP script to sleep in seconds

PHP provides several inbuilt functions to make a PHP script to sleep or pause for some time. Let’s see them with examples.

Categories PHP Tags PHP 7.x Leave a comment

Merging two dictionaries in Python

Dec 29, 2022 by Beaulin Twinkle
Merging two dictionaries in Python

Here you will see three simple and commonly used methods in Python programming on merging two dictionaries.

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

merge two lists using unpacking method in Python

Dec 30, 2022Dec 12, 2022 by Beaulin Twinkle
Merge two lists using unpacking method in Python

In this article, let us see how to merge two lists using the iterable unpacking method and the sum() method.

Categories Python Tags Python 3.10.x, Python 3.x Leave a comment

How to sort a dictionary by its value in python?

Dec 2, 2022 by Beaulin Twinkle
Sort a dictionary by its value in python

Python does not have any inbuilt method to sort the dictionary by its value. However, there are a few workarounds. Let’s see one of them.

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

The Benefits and Drawbacks of .NET Development

Nov 16, 2022Nov 16, 2022 by My Tec Bits.
The Benefits and Drawbacks of .NET Development

This article intends to provide helpful information to make your search for a suitable development environment easier by describing the benefits and drawbacks of using .NET as a software development platform.

Categories .Net Tags .NET Framework Leave a comment

Converting bytes to a string in Python

Nov 12, 2022 by Beaulin Twinkle
Converting bytes to a string in Python

Here is a code sample for using the decode option to convert bytes or byte array to a string.

Categories Python Tags Python 3.10.x, Python 3.x Leave a comment

How to prevent connection pool problems between ASP.NET and SQL Server?

Oct 27, 2022 by Beaulin Twinkle
Prevent connection pool problems between ASP.NET and SQL Server

If you are not taking precautions while using connection pooling, you may encounter errors. Here are a few of the common errors and ways to prevent connection pool problems.

Categories .Net, SQL Server Tags ASP.NET, ASP.NET Core, ASP.NET Web Forms Leave a comment

How to calculate Mode in PHP?

Sep 16, 2022 by Beaulin Twinkle
Calculate Mode in PHP

Here is the sample code to calculate mode in PHP for a set of numbers in an array. This method will get you single mode or multi modes.

Categories PHP Tags PHP 7.x Leave a comment

How to calculate Median in PHP?

Sep 15, 2022 by Beaulin Twinkle
Calculate Median in PHP

In this article we will see how to calculate median in PHP by writing your own code for median algorithm.

Categories PHP Tags PHP 7.x Leave a comment

How to calculate mean In PHP?

Sep 15, 2022Sep 15, 2022 by Beaulin Twinkle
Calculate mean In PHP

There is no inbuilt function available in PHP to calculate arithmetic mean. However, it is easy to calculate mean In PHP using the inbuilt array functions.

Categories PHP Tags PHP 7.x Leave a comment

How to find the version of PHP in macOS?

Sep 8, 2022 by Beaulin Twinkle
Finding version of PHP in macOS using Terminal

There are the different ways to find the version of PHP in macOS. Here I have listed a couple of methods to check the PHP version.

Categories macOS, PHP Tags macOS Big Sur, PHP 7.x Leave a comment
Older posts
Page1 Page2 … Page21 Next →

Article Categories

  • Android (2)
  • Apple (21)
    • macOS (21)
  • Internet & Web Dev. (144)
    • DNN (4)
    • Java Script (10)
    • Jquery (8)
    • PHP (7)
    • Python (75)
    • Twitter Bootstrap (25)
    • Web Security (11)
    • Zurb Foundation (6)
  • Linux (2)
  • Microsoft (296)
    • .Net (64)
    • IIS (10)
    • Internet Explorer (3)
    • Office (2)
    • SQL Server (209)
    • Windows (23)
  • Networks And Distributed Systems (2)
  • Oracle (7)
    • Java (2)
    • Oracle Database (5)
  • Others (5)
  • Reviews (10)

Recent Articles

  • How to find the index of an item in a list in Python? Mar 19, 2023
  • How to check if the given string is a number in python? Mar 10, 2023
  • IIF vs CHOOSE in SQL Server Mar 2, 2023
  • How to insert multiple records with a single SQL query? Feb 25, 2023
  • How to drop all the tables from a database in SQL Server? Feb 25, 2023
  • How to reset user settings in Visual Studio Code? Feb 8, 2023
  • How to launch Visual Studio Code from macOS terminal? Feb 3, 2023
  • How to use CHOOSE in SQL Server Jan 28, 2023
  • How to make SQL script to sleep? Jan 13, 2023
  • How to make a PHP script to sleep? Dec 30, 2022

Subscribe MyTecBits.com

Online Tools

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

Popular Articles

  • SQL Server: Concatenate Multiple Rows Into Single String
  • How to compare contents of two files in Visual Studio Code?
  • How To Get Day Of Week In SQL Server?
  • Error: 'SqlConnection' could not be found in the namespace (Solved)
  • Getting The List Of Column Names Of A Table 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 - 2023 My Tec Bits. All Rights Reserved.