Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

How to show orders history from shopify store ?

This is our last blog on shopify where we will show listing of orders history of particular customer. With this api you can track all orders in your webview by passing only order number. 1. Fetch orders in your main activity like this : ...

How to checkout using credit card using shopify ?

In our previous tutorial we learn about checkout and shipping address process, now we ll learn about payment process. Basically Shopify provides paypal, credit card shopify payments, web checkout etc you can check all the payments options on shop...

How to add shipping address for checkout using shopify?

Before proceeding cart checkout user have to enter shipping address and shipping address contains shipping rate and tax rates that you can set from your shopify admin panel. here are the procedure : 1. Layout for shipping address file : ...

how to add a product into cart shopify ?

In our previous blog we read about categories and their products now we ll look how to add each product into cart for checkout. Each product has a unique id and product varients that we ll add into cart. This is the basic method we uses to ...

How to show list of product available in each category shopify ?

We know that how to fetch categories from shopify store there we get each category id that we ll used further to get products. 1. Main activity class to get product list : public class ProductsListActivity extends AppCompatActivity implem...

How to fetch Collections or Categories list from shopify ?

Shopify sdk provides interface to get the saved categories of store on shopify and you can get that in your android app. you can show lots of information in list view like image of product, name, date, price etc. 1. Activity class to show cate...

4 Effective Ways to Cut Business Expenses for Entrepreneurs

  Whether your business is going well or in troubled waters, you should always be considering ways to cut unnecessary expenses. This doesn’t always have to involve compromising the quality of your product or service. Here are fi...

The Architecture of an Angular 2 Application

In this post, we will understand the architecture of Angular 2 framework.  These are the modules that Angular 2 architecture contains:  Module Component Template Metadata Data Binding Service Directive Dependency ...

Themes in Angular Material

Theming allows you to change color of complete application from one place. In Angular Material , themes can be configured using $mdThemingProvider in application configuration.    Important terms used in Theming   ...

Migrate Thunderbird to Outlook 2016, 2013, 2010, 2007

  This informative article is describing the process to migrate Thunderbird to Microsoft Outlook 2016, 2013, 2010, 2007. After read the article users can migrate Thunderbird to Outlook 2016 without having difficulties.   In...

Difference between Authentication and Session Timeout ?

Authentication and session are two different things. Authentication is a prove of genuineness on other hand whenever new user access a website a new session starts. The way they differ in their definition the same way they differ in their ti...

What is singleton pattern and double checked locking ?

Singleton pattern is basically used to maintain only a single object of a class in the application. This uses private constructor and static method to return class instance like this : public class SingleTon { private static Singl...

What is Abstract factory pattern with example?

We know that factory pattern provides single level abstraction and used to create object easily but in a case of more security, we can use one more level of abstraction by using the abstract factory pattern. we can say that this provides factory ...

How to create simple product in magento with custom options ?

These are the steps you can follow to create simple products in magento with custom options them   1.  Login to Admin menu, go to Catalog -> Manage Products.   2 In the upper-right corner of the Manage Products page,...

Jagged array in c#

Jagged array is an array of array it means jagged array is a collection of homogeneous arrays. An arrays inside the jagged array are of different length. As the jagged array contains the arrays therefore its collection of homogeneous reference ty...

Creating a Sidebar-Menu Using JQuery Plugin

Hello readers, Today in my blog I have tried to create sidebar-menu using JQuery Plugin.   As I am a beginner in this technology, while working over the dashborad admin template I faced various complications so to resolve them I came a...

What is Factory Pattern?

Factory pattern is one of the most used design patterns in java with the help of this pattern you can create object easily by using this concept of oops. Example of Factory pattern : 1. Create an interface 2. Create class that 'll ov...

Data structure when to use what ?

We have different types of data structures like array, linked list, tree etc but which one is better so this is basic question that comes in mind every time when we have large data set. In this post we can find out the best data structure type...

How to fetch the custom options and their sub options of any product?

In magento if we need to get the custom options and their sub options of any product we need to write a query and from that result we can extract the options.   Lets see how can we do it:   Firstly, load the product from the...

Image Overlay Hover Effects With CSS3 Transitions

In this blog i am explaining how to create a overlay effect in image with the help of css3 . Overlay effect on image  is an awesome approach to include some decent interactivity to your website. In image overlay effect when we take our cu...

Creating Superscript and Subscript Text in CSS

If you want to make your text superscript text(raises the text) or subscript text(lowers the text), css3 property can be used. CSS3 provides vertical-align property which can be used to make superscript or subscript effects in your HTML text of ...

Auto complete using Angular Material

In Angular Material, we use  <md-autocomplete> for auto complete functionality. <md-autocomplete> is a UI component with dropdown to shown all possible  matches to custom query. It acts like a real time suggestion box. When ...

Generics in C#

Generics in C# Generics in C# allows a programmer to generate a class or method which can work with multiple datatypes.  The specification of datatype of the elements used in class or methods is delayed by using Generics until these ...

Using Technology To Keep Your Relationship In Tact When Youre Crazy Busy

  Heading off to Business School to pursue an MBA, or starting a new company is obviously an exciting time in your life.   However (there is always one of those) it means that there are sacrifices to be made. If you’r...

How to import an xml file in php?

If we are required to import an xml file through core php, lets how can we do it:   First of all create a form of enctype as "multipart/form-data" as we have created below in our index.html     <html...

Pricing Table Demo using CSS3

Hello Reader,  In this blog I am going to tell you how to create Pricing Table using CSS3. It includes features like : transforms, gradient, shadow and nth-child.  Go to the link below and hover your mouse over the price...

Friend Assembly in C#

Friend Assembly in C#   Access modifiers such as internal and private when used with types or type members defined in files in an assembly are accessed only in the files defined within same assembly. An assembly can only access pu...

The Viewport - Responsive Web Design

Viewport meta tag is the primary idea of Responsive Web Design. The viewport differs from device to device. It will be smaller on a mobile when contrasted with PC screen. To set the viewport, HTML5 presented a technique  <meta> tag,...

Exception handling in SQL

Exception handling in SQL Whenever an exception occurs our code gets disrupted. Exception handling is a way to handle these disruptions,  Like we may log when an exception occurs or we may raise error when any exception occurs. We can use...

Appending and Removing Div using jQuery

Append and Remove Method: We can use append method to add a div using jQuery and using remove method we can easily delete added div. Append Syntax: $(selector).append(content,function(index,html)) Remove Syntax: $(selector).rem...

Different Methods addAttributeToSelect(), addAttributeToFilter() and addFieldToFilter() in Magento

addAttributeToSelect() :   addAttributeToSelect() method is used to select the attributes  that we want to retrieve from the database. If we want to load all attributes then we will use addAttributeToSelect('*'). Example:...

Difference between TRUNCATE, DELETE commands

TRUNCATE:       Truncate command will remove all the rows from a table, there will be no WHERE clause in TRUNCATE command and there will be no data in the table after we run the truncate command.     ...

Locking techniques in Concurrency control in SQL

Concurrency Control when multiple users accessing a same database at the same time, If any change made by any one of the user do not adversely affect work of the other users. Locking technique in concurrency control means use a lock variable wi...

md-list in angular material

<md-list> is the most important directive in angular material to represent the list of items. Multiple items 1 to n can be displayed by using this directive. User don't need to write frontend or html multiple times to display ...

Angular Material Introduction

Angular Material is a UI component framework and reference implementation of Google's  Material Design for Angular JS developers. It helps in creating responsive, attractive, functional websites in faster manner.   Features of A...

STRSPN()function in PHP

Hello Reader's , Today on My blog, We will discuss about the STRSPN(). What is STRSPN()? The STRSPN() function compares two string to determine how closely related they are to each other. This is accomplished by returning the length of...

Cordova plugin Geolocation - Plugin provides the information about device's location

Hello Readers, Cordova geolocation API can access the GPS data and provides the information about device's location in the form of its longitude and latitude. GPS, IP address, WIFI, Bluetooth MAC address, GCM/CDMA cell's IDs these al...

How to Compare String length in PHP

Hello Reader's , Today on My blog, You will learn how to compare string length in PHP. PHP provides strlen() function which compares two string length is equivalent to each other. The strlen() function returns the length of a string on ...

Constructor and its types in C#

Constructors in c# Constructor is a special method of a class that gets called when an object of a class is created. They are mainly used for initialization and memory allocation for member variables of class. There will always be a default co...

AngularJS Pagination

We can easily apply paging on our page using AngularJs and bootstrap. Here, below is the example of this:   In View: <div ng-app="angularPagingSample"> <div ng-controller="PagingController"> <h1>Ang...

Infinite scrolling with IntersectionObserver API

JavaScript is the programming language of HTML and the Web.It plays a very important role in web. Its client side scripting language.JavaScript is also defined as a lightweight, interpreted programming language. It is complimentary to and integr...

.Net : Code first vs Database first approach

.Net : Code first vs Database first approach   Code first In Code first approach Entity classes are declared and defined with properties. As soon as the .net code is compiled and run database is created automatically i.e data...

Late Binding Using Reflections

In this blog we illustrate how to get the late binding using reflections for this firstly we need to understand "what is reflection" and "what is late binding". What is reflection? Reflection is basically read the asse...

Creating Stylish CSS3 Progress bars

If you want to create progress bars using only css3, you can see here how to make it. HTML Base The bar in which the progress will be shown can be taken as a <div> with some class named outer. Inside this outer you can take a span in wh...

Displaying div on radio check using jQuery

Hiding/Showing div on checking radio: We can easily hide or display a div by checking the radiobox options using jQuery. We can do this by checking radio options attribute and according to attribute we can hide or show a div. Example: ...

What is SVG and How Can We Embedding SVG in Html5?

Scalable Vector Graphics is mostly known as SVG is an image format type which is based on XML  it is basically used for  2-dimensional graphics for a web. We can resize SVG vector images to any extent without destroying the image qualit...

How to open, read , wight and close a text file in php?

Open a text file in PHP. To open a text file in PHP you will use fopen() funtion. $yourfile = fopen("yourtextfilepath", "r");// r is a mode that are used for read file. Read a text file in PHP. To read an opened file in PHP you will...

Implementing CanvasJs chart Plugin.

Today in this blog, we will learn how to implement chart on our web page using CanvasJs plugin. This CanvasJs plugin supports many different types of charts like line, column, bar, stacked, pie, doughnut ... etc. Some of the built-in features tha...

TRIGGER IN MSSQL

TRIGGERS IN MS-SQL Triggers are special kind of stored procedures that triggers automatically when an event occur. Triggers are written to fire when a specific event on table occurs. Following are the events that may force trigger-: 1) DML ...

C# .Net : How to convert string to Guid ?

C# .Net : How to convert string to Guid ? Guid represents a globally unique identifier. Guid in .Net framework is identified by System.GUID class. Program to generate a guid in .Net Framework using C#. using System; using System.Colle...
1 47 269
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: