Chandu yadav has Published 1163 Articles

Animated background with CSS

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 11:28:48

508 Views

Use the @keyframes to animate. To implement animation on background with CSS, you can try to run the following codeExampleLive Demo                    div {             width: 400px;             height: 300px;             animation: myanim 3s infinite;          }          @keyframes myanim {             30% {                background: green bottom right/50px 50px;             }          }                        

Specify how much a flex item will shrink relative to the rest of the flex items with CSS

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 11:27:35

67 Views

The flex-shrink property shrinks the flex-item.You can try to run the following code to implement the CSS flex-shrink property. ExampleLive Demo                    .mycontainer {             display: flex;             background-color: orange;     ... Read More

Understanding base64 encode in MySQL?

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 11:24:04

3K+ Views

To encode base64, you can use two functionalities −TO_BASE64()FROM_BASE64()The syntax for base64 encode is as follows −SELECT TO_BASE64(anyValue) as AnyVariableName;The syntax for base64 decode is as follows −SELECT FROM_BASE64(encodeValue) as anyVariableNameTo understand the above concept, let us use the above syntax −Case 1 − EncodeTo encode the value, use the to_base64(). ... Read More

MySQL Mass Update with CASE WHEN/ THEN/ ELSE?

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 11:20:23

7K+ Views

The syntax for mass update with CASE WHEN/ THEN/ ELSE is as follows −UPDATE yourTableName set yourColumnName=case when yourColumnName=Value1 then anyUpdatedValue1 when yourColumnName=Value2 then anyUpdatedValue2 when yourColumnName=Value3 then anyUpdatedValue3 when yourColumnName=Value4 then anyUpdatedValue4 else yourColumnName end;To understand the above syntax, let us first create a table. The query to create ... Read More

Fetching rows added in last hour with MySQL?

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 11:16:36

4K+ Views

You can use date-sub() and now() function from MySQL to fetch the rows added in last hour.SyntaxThe syntax is as follows −select *from yourTableName where yourDateTimeColumnName create table LastHourRecords -> ( -> Id int, -> Name varchar(100), -> Login datetime -> ); Query OK, 0 rows affected (0.67 sec)Insert ... Read More

Get the time difference and convert it to hours in MySQL?

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 11:11:26

2K+ Views

You can achieve with the help of timestampdiff() method from MySQL. The syntax is as follows −SyntaxSELECT ABS(TIMESTAMPDIFF(HOUR, yourColumnName1, yourColumnName2)) as anyVariableName from yourTableName;To understand the above syntax, let us create a table. The query to create a table is as follows −mysql> create table DifferenceInHours    -> (   ... Read More

Set whether the text should be overridden to support multiple languages with CSS

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 10:23:25

64 Views

Use the unicode-bdi property to set whether the text should be overridden to support multiple languages with CSSExampleLive Demo                    p.demo1 {             direction: rtl;             unicode-bidi: bidi-override;          }          p.demo2 {             direction: rtl;             unicode-bidi: isolate;          }                     The unicode-bidi Property       This is demo text.       This is demo text       This is demo text    

C++ Scope resolution operator

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 10:21:24

20K+ Views

The scope resolution operator ( :: ) is used for several reasons. For example: If the global variable name is same as local variable name, the scope resolution operator will be used to call the global variable. It is also used to define a function outside the class and used ... Read More

How to close or hide the virtual keyboard on Android?

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 10:17:36

4K+ Views

In Android there are some situations, we should close android default keyboard forcefully. For that this example is help for you.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the ... Read More

How to throw a C++ exception?

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 10:15:04

277 Views

Exception handling is used to handle the exceptions. We can use try catch block to protect the code. Exception can be thrown anywhere within the code block. The keyword “throw” is used to throw an exception.Here is an example of throw in C++ language, Example Live Demo#include using namespace std; ... Read More

Advertisements