What is Flaring and Types of Horn Antennas

Knowledge base
Updated on 30-Jul-2019 22:30:24

1K+ Views

To improve the radiation efficiency and directivity of the beam, the waveguide should be provided with an extended aperture so as to make the abrupt discontinuity of the wave into a gradual transformation, so that all the energy in the forward direction gets radiated. This can be termed as Flaring. Flaring is done to provide greater directivity and narrower beam width. The types of horn antennas depend on how they are flared.Sectoral HornThis type of horn antenna, flares out in only in one direction. Flaring in the direction of Electric vector produces the sectorial E-plane horn. As well, flaring in ... Read More

Get Last Entry in a MySQL Table

Chandu yadav
Updated on 30-Jul-2019 22:30:24

2K+ Views

You can get the last entry in a MySQL table using ORDER BY. The first approach is as follows:Case 1: Using DESC LIMITSELECT * FROM yourTableName ORDER BY yourColumnName DESC LIMIT 1;The second approach is as follows:Case 2: Using MAX()SET @anyVariableName = (SELECT MAX(yourColumnName) FROM yourTableName); SELECT *FROM yourtableName WHERE yourColumnName = @anyVariableName;Now to understand both the approaches, let us create a table. The query to create a table is as follows:mysql> create table lastEntryDemo    -> (    -> Id int NOt NULL AUTO_INCREMENT,    -> Name varchar(30),    -> Age int,    -> PRIMARY KEY(Id)    -> ); ... Read More

Design a Keylogger in Python

Samual Sam
Updated on 30-Jul-2019 22:30:24

4K+ Views

Here we are going to develop a keylogger using python. But before that, what is a keylogger? Keylogger is a program with which we monitor keystrokes. These keystrokes will be stored in a log file. We can record sensitive information like username and password using this keystroke.To create a keylogger we are going to use the pynput module. As its not the standard library of python, we might need to install it.Installing pyxhook module −I’m going to use pip to install pynput −pip install pynput Requirement already satisfied: pynput in c:\python\python361\lib\site-packages (1.4) Requirement already satisfied: six in c:\python\python361\lib\site-packages (from pynput) ... Read More

What Made iPhone the Game Changer in Smartphones

yashwanth sitamraju
Updated on 30-Jul-2019 22:30:24

333 Views

Apple launched iPhone in 2007 and caused a tidal wave of change throughout the mobile phone industry. It was the only smartphone with just one functional button (home button) which created a revolution in the market.Apple StoreApple has invented apple store for its product where you can download software safely.The invention of the apple store, created a revolution because you can download any type of software for your phone which is compatible with the i phone. Apple store can only be accessed by an apple phone user.Before iPhone, the idea of using on-screen keyboard on a phone was unimaginable. When ... Read More

Boolean or TINYINT to Store Values in MySQL

Chandu yadav
Updated on 30-Jul-2019 22:30:24

633 Views

The MySQL BOOLEAN and BOOL both are equivalent to TINYINT(1). Whenever you create a column using BOOLEAN and BOOL data type, MySQL implicitly convert the BOOLEAN and BOOL to TINYINT(1). The BOOLEAN and BOOL are equivalents of TINYINT(1), since they are synonyms.Create a table using BOOLEAN data type. The query to create a table.mysql> create table BooleanDemo    -> (    -> IsOn BOOLEAN    -> ); Query OK, 0 rows affected (0.58 sec)Now check internal structure of the above table. The query is as follows −mysql> show create table BooleanDemo;Output+-------------+----------------------------------------------------------------------------------------------------------------------------------+ | Table       | Create Table   ... Read More

Significance of Charminar in Hyderabad

Shanmukh Pasumarthy
Updated on 30-Jul-2019 22:30:24

2K+ Views

Charminar is a monument which was constructed in 1591, in Hyderabad, India. The literal translation of Charminar in English is 4 pillars. It is located on the east bank of the Musi River and is listed among the most recognized structures of India. There are many theories regarding the reason for the construction of Charminar but the commonly accepted theory is that it was built to celebrate the elimination of the Plague, which was widespread at that time.Charminar was built by Muhammad Quli Qutb Shah, the fifth ruler of the Qutb Shahi dynasty. After shifting his capital from Golkonda to ... Read More

Why the G Modifier in SELECT FROM Table Name

George John
Updated on 30-Jul-2019 22:30:24

199 Views

The \G modifier gets the result in vertical order. If you use \g modifier, then it won’t affect the result. The \g works likesemi-colon.Let us first create a table. The query to create a table is as follows:mysql> create table DemoOfVertical    -> (    -> Id int NOT NULL AUTO_INCREMENT,    -> Name varchar(20),    -> PRIMARY KEY(Id)    -> ); Query OK, 0 rows affected (3.40 sec)Now you can insert some records in the table using insert command. The query is as follows:mysql> insert into DemoOfVertical(Name) values('Bob'); Query OK, 1 row affected (0.18 sec) mysql> insert into ... Read More

Website Blocker Using Python

karthikeya Boyini
Updated on 30-Jul-2019 22:30:24

1K+ Views

If you are working in a big IT company then you may notice that their couple of websites are blocked especially social networking sites like facebook, youtube, Instagram etc.Instead of using third-party applications to blocks certain website, we can develop our own custom application which will block websites of our choice and developing a website blocker in python is not so difficult too. That’s what we going to do- develop a python script which will block the website we want.Prerequisite:Python 3.x installedBasic knowledge of PythonWhat we are going to do:We are going to develop python application which will block a ... Read More

MySQL LIKE Operator

Arjun Thakur
Updated on 30-Jul-2019 22:30:24

2K+ Views

You can implement MySQL Like IN() with the help of Regular Expression (regexp) as well. The syntax is as follows −select *from yourTableName where yourColumName regexp ‘value1|value2|value3……|valueN’;To understand the above logic, you need to create a table. Let us first create a table −mysql> create table INDemo -> ( -> Id int, -> Name varchar(100) -> ); Query OK, 0 rows affected (0.90 sec)Insert some records into the table. The query is as follows −mysql> insert into INDemo values(100, 'John'); Query OK, 1 row affected (0.13 sec) mysql> ... Read More

MySQL Command for Displaying Current Configuration Variables

George John
Updated on 30-Jul-2019 22:30:24

2K+ Views

To display current configuration variables, you can use show command. The syntax is as follows −show variables;You can further rewrite the above syntax with LIKE operator. The syntax is as follows −show variables like ‘%anyStringValue%’;The query is as follows displaying an example to fetch some of the configuration variables −mysql> show variables like '%max%';Output+------------------------------------------------------+----------------------+ | Variable_name                                        | Value                | +------------------------------------------------------+----------------------+ | binlog_max_flush_queue_time                         ... Read More

Advertisements