Categories
Miscellaneous

Get your best selling super Mario costumes before they go out of stock

Pay homage to the pioneering characters of the video game entertainment industry. Before you went on to play all these sophisticated video games with a wide range of funny characters, you began with the Super Mario franchises. We are all familiar to the very popular games of our first video game consoles. With a vintage […]

Categories
MySQL

PROCEDURE ANALYSE()

If you want to analyze the columns structures of a MySQL table and want to view the actual data in your table with certain suggestion then you can get help from PROCEDURE ANALYSE(). For example, if any data present in your table and plays a big role in any decision making then this is very […]

Categories
MySQL

Search with Regular Expression in MySQL

Based on patterns regular expression is a powerful tool which gives you a flexible way to identify strings like email, IP address, phone number etc. Use Regular Expression in Mysql: For example, you want to find a name which starts with character A, B and C. SELECT name FROM users WHERE name REGEXP ‘^(A|B|C)’; Must […]

Categories
KnockoutJS

KnockoutJS – Declarative Bindings

To connect data to UI declarative bindings are used. As bindings and Observables both are different, using normal javascript object you can bind view. Declarative Bindings consists of two values i.e. name and value: Full name: <input data-bind=”value: fullName, valueUpdate: ‘afterkeydown’” /> Here when each key is pressed value will be updated.

Categories
Css3 Html5

CSS3 required styles

Using HTML5 required style you can validate your form and show error. But sometimes you need to give a style like keep the color red for error or green on success.  Here’s how to use CSS3 required. Here is a sample example for required css: <!DOCTYPE html> <html> <head> <title>CSS3 styles</title> <style type=”text/css”> input[type=”checkbox”]:required:invalid + […]

Categories
Html5

Tips for responsive design

A new web standard that emerges into the web world is responsive design where many software companies have accepted the challenge and leads to a new design solutions. Here we will discuss some responsive design tips which will help to you in your design to make it more perfect. Plan first and design: Make sure […]

Categories
MySQL

Replace NULL values

You can show the null values which represent the concept of missing or inapplicable information, with other values for better data representation. Suppose we have a table as below: Name Country John India Jane Australia Tim [NULL] So if you query from the database the null result will show the blank result. You can replace […]

Categories
Feature Story Technology

What Is Construction Defect Management Software and Why Do You Need It?

Construction projects can be complicated, with many moving parts, teams, and deadlines to manage. Making sure the finished product is high-quality is essential. But finding and fixing problems during construction, especially in large projects, isn’t easy. That’s where Construction Defect Management Software comes in. It helps teams find and fix problems. What Is Construction Defect […]

Categories
KnockoutJS

Components of KnockoutJS

Components are way of organizing the UI code for structure wise and promote code re-usability for a large application. Components can be registered using the ko.components.register() API. ko.components.register(‘componentname’, { viewModel: {…}, template: {….) }); <!DOCTYPE html> <head> <title>Components of KnockoutJS</title> <script src=”https://cdnjs.cloudflare.com/ajax/libs/knockout/3.2.0/knockout-min.js”></script> </head> <body> <h4>Example 1: without parameters</h4> <div data-bind=’component: “example-editor”‘></div> <h4>Example 2: passing parameters</h4> […]

Categories
Feature Story Web Design & Development

Top 5 Tips to Choose Best Web Application Development Company

Since 59% of the global population is looking for products and services online, it is imperative that your company has a strong online presence to stand ahead of competitors. Customized web applications offer greater security, scalability, and features that are basically designed to meet the demands of individual businesses. Custom creation, as opposed to off-the-shelf […]