Categories
Creative blog

5 easy step when start a blog to earn money

Let me know if you are very serious about making money. Starting a blog is an easy turn to go.Here we will discuss few steps that helps you to start a blog and make money. Jesse Owens said “We all have dreams. But in order to make dreams come into reality, it takes an awful […]

Categories
Html

The URLs

URLs or Uniform Resource Locator is location of html document web. It consists of three parts i.e. Protocol, Domain and Resource path.For e.g. http://www.namasteui.com/index.php where http is protocol, www.namasteui.com is domain and index.php is resource path. It also has a query string i.e.http://www.namasteui.com/index.php?value=1&page=3So the query string for the above url is: ?value=1&page=3 which is a […]

Categories
Feature Story Technology

AI Research Writers: Are They Game Changers or a Threat to the Academia?

Artificial Intelligence has become a significant part of our daily lives and has successfully automated hundreds of our day-to-day activities. Recent AI developments have entirely transformed the landscape in the field of thesis research and writing. AI research writers have changed the game of thesis research and writing. AI-powered programs such as ChatGPT have relieved […]

Categories
Html

The Web HTML

It takes a little amount of time to know what web is and how it is related to html. Using browser i.e. internet explorer, firefox, chrome etc you can run a html page i.e. a web. So when you view a page on web it is located somewhere on internet i.e. called server. You do […]

Categories
KnockoutJS

KnockoutJS – Templating

Using template is very easy to incorporate into website. For a duplication you don’t need to write over and over again just call them repetitively. Parameters:Following properties can be sent as a parameter-value:name, nodes, data, if, foreach, as, afterAdd, afterRender, beforeRemove. Lets see an example of Templating: <!DOCTYPE html> <head> <title>KnockoutJS – Templating</title> <script src=”http://ajax.aspnetcdn.com/ajax/knockout/knockout-3.3.0.js” […]

Categories
KnockoutJS

Dependency Tracking – KnockoutJS

Using a single object called dependency tracker i.e. ko.dependencyDetection you can determine when the value get updated. When you declare a computed observable, KO immediately gets its initial value and updated computed observable. Lets see an example for Dependency Tracking: <!DOCTYPE html> <html> <head> <title>Dependency Tracking – KnockoutJS</title> <script src=”http://ajax.aspnetcdn.com/ajax/knockout/knockout-3.1.0.js” type=”text/javascript”></script> </head> <body> <div> <form […]

Categories
Html

HTML 4

HTML is basically a language on the internet for website. It basically consists of multiple pages where each pages written in .html extension. Currently the latest version is HTML5 where new elements are added. It is the abbreviation of Hyper text markup language that means you can embed links inside the text. When click on […]

Categories
MySQL

Compare two tables in MySQL

When migrate data you need to compare two tables and identify the unmatched results records. Suppose you have two tables table1 and table2 with same columns and values. If any one table has any extra row then using below query you can get the unmatched results. Compare two tables: SELECT id, name FROM ( SELECT […]

Categories
MySQL

Manage Triggers in MySQL

Here you will learn how to manage triggers like modifying, removing etc. To display the trigger use following sql: SELECT * FROM Information_Schema.Triggers WHERE Trigger_schema = ‘database_name’ AND Trigger_name = ‘trigger_name’; To view trigger: SHOW TRIGGERS; To drop a trigger: DROP TRIGGER tbl_name.trigger_name

Categories
Html5

HTML5 – Tips & Tricks

HTML5 has a lot of new tools to build website for better user experience and it is strong and powerful version of HTML. For Mobile phone applications it is used to a very great extent. Here are some tips and tricks for HTML5 HTML <!DOCTYPE> Declaration:The <!DOCTYPE> declaration is the first tag in your HTML […]