Blog

Some important point for web design and developing good interface design.
How to use tool and implement of the tool is more important for websites design.

JavaScript Interview Question

1). Call, Bind & Apply:

Call:
var emp1 = {firstName: “Subhash”, lastName: “Yadav”};
var emp2 = {firstName: “Nagina”, lastName: “Yadav”};
function invite(greeting1, greeting2) { console.log(greeting1 + ‘ ‘ + this.firstName + ‘ ‘ + this.lastName + ‘, ‘ + greeting2);
}
invite.call(emp1, ‘Hello’, ‘how are you’);
invite.call(emp2, ‘Hello’, ‘how are you’);
Bind:
var emp1 = {firstName: “Subhash”, lastName: “Suman”};
var emp2 = {firstName: “Kanchan”, lastName: “Yadav”};

function invite(arg1, arg2) {
console.log(arg1 + ‘ ‘ + this.firstName + ‘ ‘ + this.lastName + ‘, ‘ + arg2);
}
var emp1B = invite.bind(emp1);
var emp2B = invite.bind(emp2);
emp1B(‘Hello’, ‘how are you!!’);
emp2B(‘Hello’, ‘where are you!!’);
Apply:
var emp1 = {firstName: “Suman”, lastName: “Subhash”};
var emp2 = {firstName: “Yadav”, lastName: “Kanchan”};

function invite(greeting1, greeting2) {
console.log(greeting1 + ‘ ‘ + this.firstName + ‘ ‘ + this.lastName + ‘, ‘ + greeting2 + ‘!!’ );
}

invite.apply(emp1, [‘Hello’, ‘how are you’]);
invite.apply(emp2, [‘Hello’, ‘how are you’]);

  admin   Oct 17, 2022   Blog   0 Comment Read More
Front End Developer

Your customer service needs to be that much better.

Because you don’t have extra support from your team or a business associate communicating with clients you have to that much more personable. You have to play all the roles of a small UX or design firm by yourself. So while producing great flow charts, mockups, and working prototypes is important, so is making your […]

  admin   Jan 31, 2017   Uncategorized   0 Comment Read More
Front End Developer

Your portfolio needs to be that much better.

So, we have established that your customer service needs to be that much better, you are most likely the only communicator with the potential client and you have to make a great impression…it’s all on you! Your portfolio also needs to be that much better. Many times just giving samples of your work isn’t going […]

  admin   Jan 23, 2014   Blog, Gallery   0 Comment Read More
Bizcoot

Your designs need to be that much better!

There is nobody to fall back on but yourself. You might be working with a programmers to execute your designs, but at the end of the day as a freelancer you are the sole person responsible for your own work. This means that if you give your client a less than desirable user experience they […]

  admin   Jan 23, 2014   Blog, image   0 Comment Read More

Look at the sky. We are not alone. The whole universe is friendly to us and conspires only to give the best to those who dream and work.

A. P. J. Abdul Kalam

  admin   Jan 23, 2014   Blog, Quote   0 Comment Read More

Know This Before Choosing a Hosting Company

I dislike a lot of web companies out there.  I know it’s a struggle to get clients and I also know how difficult it can be to making a living off web design and development; but the businesses that really piss me off are the ones that shackle their clients in and make them pay […]

  admin   Jan 23, 2014   Aside, Blog   0 Comment Read More
UI Developer

Should you get a .com or a .co.nz?

Getting a domain name for your business is a big deal and can become time consuming if you’re unsure where to even start.  So, should you get a .com or a .co.nz, .uk, .nz or .co for that matter?  I’m going to outline my thoughts on this question and hopefully help you sort this question […]

  admin   Dec 17, 2013   Blog, image   0 Comment Read More
Interior Designer

How your photos are killing good User Experience

It’s true that Photography is the only language that can be understood anywhere in the world.  Hence why it’s often used online and in the representation of good user experience. On the odd occasion I have clients who want to use Stock photography (those found on iStock, Shutterstock, etc.) or even worse they want to ‘get some […]

  admin   Dec 17, 2013   Blog   0 Comment Read More

3 Must Have WordPress Plugins

WordPress is my digital baby.  It’s my favourite content management system (CMS) which is why I use it for almost 90% of my client websites.  Over the years I’ve come to realise there are certain plugins that you should ALWAYS have and others you should remove, especially if you’re not using them. Here they are: […]

  admin   Dec 17, 2013   Blog   0 Comment Read More