Wednesday, April 1, 2020

HPE 815101-B21 64GB Quad Rank DDR4-2666 CL19 ECC Reg DDR4 SDRAM Memory

HPE 815101-B21 64GB Quad Rank DDR4-2666 CL19 ECC Reg DDR4 SDRAM Memory

Thursday, October 3, 2019

Magento 1.x.x Theme (Free Download)

Overview

Computer Store template is a responsive Magento template which was created specifically for computer storage and parts eCommerce store. The Computer Store template helps ease the burden of the installation and application of itself significantly.

Responsive Design

1. Compatible with all major browsers
2. Work perfectly with all smartphone devices
3. Easy to customize and upgrade
4. Follow Magento template coding standard
5. 100% open source

Promote featured products in home page: The template is integrated with Featured Products extension allows admin to select products to promote in home page. Featured products are displayed as a slider in home page

Easily integrate with Magento Shop by Brands module: Allow admin to promote product brands by a static block in home page

I hope, you'll love it!



Download from here

Wednesday, July 10, 2019

My Crypto Image

Sunday, October 31, 2010

My Menga

Monday, March 31, 2008

Thursday, January 24, 2008

Light of Haven

Human Life...

Color of Life

Illusion

Modified Merge Sort

INIT (n)

n = 1

MERGE-SORT (A, n, p, r)

MERGE-SORT (A, n, p, r)

if p<r

then n = n*2

MERGE (A, n, p, r)

MERGE-SORT (A, n, p, r)

MERGE (A, n, p, r)

create arrays L[1..n+1] and R[1..n+1]

for i = 1 to n

do L[i] = A[p+i-1]

for j = 1 to n

do R[i] = A[p+n+j-1]

L[n+1] =

R[n+1] =

i = 1

j = 1

for k = p to r

do if L[i] ≤ R[j]

then A[k] = L[i]

i = i+1

else A[k] = R[j]

j = j+1