devxlogo

We are an award-winning tech entrepreneurship website where trusted experts can provide value globally.

Since 1998, DevX has helped people start businesses, build websites, and provide enterprise technology to people globally. Interviewing the likes of Microsoft’s co-founder, Steve Ballmer, the publication brings comprehensive, reliable, and accessible insights to the Internet.

devxlogo

Trusted for 26 years

Over 30K Articles

1M+ Readers

Expert-reviewed

10K+ Tech Terms

As seen in:

microsoft logo
business_insider_logo
wired_logo
berkley
arstechnica_logo
hackernoon

The Latest

Using the iFrame HTML Tag

The HTML tag creates an inline frame, used to embed another document into your current HTML page. This element is great because you can include content such as advertising banners,

Understanding UNION in MySQL

Assuming there are tables EMP and EMP2, which have the same schema, and there are possible duplicate IDs present in them???the following query will help us identify the unique records:

View the Breadcrumb of Page Visits in Chrome

To see the history of pages you have recently visited, you just have to “long” press the back button (left arrow) in your browser. Just click and hold and you

Using dm_exec_function_stats in SQL Server 2016

You can use the dm_exec_function_stats (in SQL Server 2016) to check detailed execution details of a function. These include: execution_count – the number of times this function has been executedlast_execution_time

?????????????????? ?????????????????? ??????????????

Pozitiv – ?????? ???????????????????????????? ????????????????, ?????????????? ???????????????? ???????????? ?????????????????? ???????????????????? ?????????????????? ?? ??????????????????, ?????????????? ?????? ???? ?????????????? ?????? ??????????????! ????????: http://workle.website/74

Check Whether a String Contains Another String

Often, we have to do a string comparison by ignoring the case, or the results end up being wrong. The StringComparison enum provides the “ordinalignorecase” member that allows you to

A Handy Delete Stored Procedure

Deleting data in a database can a very dangerous operation in the wrong hands. Sometimes you are too busy to really concentrate fully; or sometimes you have given the wrong

Using IFNULL in MySQL

There are numerous cases in which you get null and are not able to handle it effectively in the code. MySQL has a command that can help you know if

Usage of a Custom Ordinal in Enum

The getCustomValue() method on the enum returns the custom value associated. You can use this mechanism when you want to override the default ordinal with a custom ordinal. Code snippet public

Allow SQL Server to Silently Truncate Data

SQL Server usually presents an error on an attempt to insert more data into a field than it can hold. It typically throws an error message similar to the following:

Using the Autofocus Attribute

This simple feature allows us to autofocus the chosen items when loading the page and it specifies that the element automatically focuses when the page is loaded. The autofocus attribute

Send an Email with Node.js

In Node.js, we can pick and choose from a lot of modules that make sending email easier. One of the most commonly used modules is “nodemailer.” Check out the sample

Transpose Columns into Rows in SQL

In case you are wondering, yes, there is a different way to transpose columns into rows than making use of a PIVOT structure. However, it is quite a lot of

Making Content Editable

In HTML, all included elements can be made editable. To do this, we can use the contenteditable attribute. Here’s an example where the user can modify the content: Contenteditable Now the

Change default Ctril+Click behaviour in Word to navigate through hyperlinks

Word allows you to navigate through hyperlinks when you use the ctrl+click combination, You can turn this default behaviour off, and navigate by just hovering on the link and clicking it. To disable, please go to File – Options and then choose Advanced- Editing options. Disable the checkbox next to ???Use Ctrl + Click to follow hyperlink???

Repeat last action in microsoft applications like word, excel and powerpoint in windows with a quick keyboard action.

If you are using windows and Microsoft applications like Work and Excel, you can easily repeat your last executed action with a keyboard shortcut. All you have to is press the F4 key. For e.g. if you have marked the text in bold, or adding a new line in a table or any other actions, all you have to do to repeat that action is press the F4 key and the respective actions will repeat.

Get the Attention of a User with a Beep

Getting the attention of a user is easily achieved in Java with the following code. Listing 1. public class Beep{ public static void main(String args[]) { Beep beep = new

Quickest Way to Copy the Structure of a Table

A very common task is to backup a table’s data, but sometimes we’d just like to copy a table’s structure. This quick tip will demonstrate how to copy a table’s

Time Zone Conversion

The method below does nothing because the returned Date is exactly the same with the input value. Always remember that the Date does not carry time zone information, it is