Author: TCA

Differential Microstrip Impedance Calculator | Formula,Equation Differential Microstrip Impedance Calculator | Formula, Equation This page covers Differential Microstrip Impedance Calculator. It mentions formula or equations used in this differential Microstrip Impedance Calculator. The figure-1 above depicts differential microstrip line. INPUTS Dielectric Constant, Εr : Trace Width, w in mils : Trace separation, d in mils : Trace thickness, t in mils : Dielectric thickness, h in mils : OUTPUTS Characteristic impedance in Ohms : Differential microstrip impedance in Ohms : *Note: This calculator is valid for (W/h) in range from 0.1 to 3.0. EXAMPLE: INPUTS: Er = 4.5, w =5.2,…

Read More

Introduction MySQL manages connections to the database server through  socket file. This file helps in communications between different processes in MySQL. This file is called mysqld.sock. In the Linux systems it’s stored in /var/run/mysqld/ directory. If you face a socket error, the foremost solution is to restart $ sudo systemctl start mysql … $ sudo systemctl restart mysql Let us frsst verify where is the instllation of MySQL is done $ sudo nano /etc/mysql/mysql.conf.d/mysql.cnf Output should be like this /etc/mysql/mysql.conf.d/mysqld.cnf . . . [mysqld] user = mysql pid-file = /var/run/mysqld/mysqld.pid socket = /var/run/mysqld/mysqld.sock port = 3306 . . . Now…

Read More

Degrees Minutes Seconds to Decimal Degrees converter Degrees Minutes Seconds to Decimal Degrees This page of converters and calculators section covers Degrees Minutes Seconds to Decimal Degrees converter. Degrees (input1) : Minutes (input2) : Seconds (input3) : Decimal Degrees (output) : EXAMPLE: INPUTS: Degrees (Input1) = 20 Minutes (Input2) = 15 Seconds (Input3) = 30 OUTPUT: Decimal Degrees = 20.258333 Decimal Degrees vs Degrees Minutes Seconds Conversion Equation Following Equation/Formula is used for this Degrees Minutes Seconds to Decimal Degrees conversion.

Read More

dBu to mV/m converter | mV/m to dBu converter dBu to mV/m converter This page of converters and calculators section covers dBu to mV/m converter and mV/m to dBu converter. Field Strength in dBu (input) : Field Strength in mV/m(output) : EXAMPLE: INPUT: Field Strength in dBu (INPUT) = 80 OUTPUT: Field Strength in mV/m (OUTPUT) = 10 mV/m to dBu converter Field Strength in mV/m (input) : Field Strength in dBu (output): EXAMPLE: INPUT: Field Strength in mV/m (INPUT) = 10 OUTPUT: Field Strength in dBu (OUTPUT) = 80 dBu to mV/m conversion Equation Following formulas/equations are used for…

Read More

dBm to Watt converter | Watt to dBm | converters and calculators Watt to dBm Converter This page of converters and calculators section covers Watt to dBm and dBm to Watt converters. Power in Watt (input) : Power in dBm (output) : dBm to Watt Converter Power in dBm (input) : Power in Watt (output): EXAMPLE: Power in dBm = 40 Power in Watt = 10 dBm to Watt Equation dBm is the power measurement unit similar to watt and milliwatt. dBm is power with reference to 1 milliwatt. Following equation or formula is used for dBm to Watt and…

Read More

1. Check CRASH ADDRESS in MySQL Problem Insufficient Memory is one of the major reason in SQL crash, i recommend to review the MySQL error log . $ sudo systemctl start mysql To review crash error logs: $ sudo less /var/log/mysql/error.log Solution Reducing your web application’s dependency . You can simply do it by adding static caching to your application. For an Examples JOOMLA, which has caching built-in feature that can be enabled also a WP Super Cache, a WordPress plugin will also reduce web application dependecny. Upgrading Virtual Private server storage size I recommend minmum 1GB of RAM for server using …

Read More

dBm to dBW converter | converters and calculators dBm to dBW converter This page of converters and calculators section covers dBm to dBW converter and dBW to dBm converter. Power in dBm (Input) : Power in dBW (output) : EXAMPLE: Input: dBm = 33 Output: dBW = 3 dBW to dBm converter Power in dBW (Input) : Power in dBm (output) : EXAMPLE: Input: Power(dBW) = 10 Output: Power(dBm) = 40 dBm to dBW Equation The dBm and dBW units are used for power measurement. These units are interchangeably used for power measurement. Following equation or formula is used for…

Read More

coaxial cable impedance calculator | converters and calculators coaxial cable impedance Calculator This page of converters and calculators section covers coaxial cable impedance calculator. It calculates coaxial cable impedance, Per Unit Length Inductance and Per Unit Length Capacitance. Outer diamter of coaxial cable (input1) : Inner diameter of coaxial cable (input2) : Relative permeability of the dielectric (input3) : Coaxial Cable Impedance in Ohms (Output1): Per Unit Length Inductance in H/m (Output2): Per Unit Length Capacitance in F/m (Output3): EXAMPLE: INPUTS: Outer diameter = 36 , Inner diameter = 10 , Relative permittivity =2.2 OUTPUTS: Impedance = 51.8 Ohm, Inductance…

Read More

Introduction We are going to create a Battleship Game Code in Python. This project is not beginner friendly for python learners who just started learning python. This game is the single-player battleship code written in Python programming language. In this source code of the battleship game in python, we have made used grids. This grid consists of 7 rows and 7 columns of the battleship where you can destroy and sink the ships. This battleship game written in python is really interesting and challenging.  The python learners must try this and get the code executed on the online compiler or…

Read More

Introduction Firewall is an important step in securing the server. It decide the individual rules and policies that will enforce traffic restrictions to your network Pre-requisites Ubuntu 20,04 server machine with root user Firewall policies Step 1 – Installing Persistent Firewall Installing iptables-persistent package. $ sudo apt update …. $ sudo apt install iptables-persistent Select YES to save current rules. Firewall policy and framework of Iptables IPv4 : /etc/iptables/rules.v4 IPv6 : /etc/iptables/rules.v6 Step 2 – Setup Basic Firewall Policy $ sudo nano /etc/iptables/rules.v4 IPv4 Output of the file /etc/iptables/rules.v4 Output # Generated by iptables-save v1.8.4 on Tue Mar 1 19:03:10…

Read More