Posts

What is Forex?

Image
What is Forex?         In simple terms Forex means foreign exchange. It is the over the counter showcase in which the outside monetary standards of the world are exchanged. It is considered the biggest and foremost liquid market in the world. In simple terms Forex is basically the market for currencies. Including all the transactions such as buying and selling currencies. As an example imagine you want to travel from Sri Lanka to France. You will have to exchange your domestic currency (Sri Lankan rupees) for the France currency (Euro). As you've exchanged one currency for another you have already taken part in the Forex market. According to the international standard for currency codes every national has a unique three-letter currency code. The first two letters represent the country and third, the letter identifies the currency. Following table shows some of the most commonly treated national currencies, countries of origin and...

Best and Top Paying PTC (Paid to Click) Sites in 2019

Image
Do you keep hearing about people making money online from home in their pajamas but you just can’t figure out how to do it yourself? You just found your answer. If you have a computer and internet access, you can work anywhere / anytime. How much you earn is entirely up to you? Everybody can easily make the most out of this business! Commitment and determination with patience is a must. What are PTC sites? PTC means “paid to click”. PTC websites are advertising companies that pay cash for viewing advertisements online. It’s undoubtedly the best, easiest and the most comfortable way to earn money online without investment from home – a successful business model that’s so popular worldwide. No investment or professionalism required – No age restrictions at all. Getting started is pretty easy. This job is so simple that most of the newbies don’t need any guidance or instructions to follow. Simply signup and log into your account, click ads every day and get p...

Drive Through Lazy Loading in Ionic 3 with Angular 4

Image
Recently while I was doing a project with ionic framework + angular I found that my application takes too much time to startup. So I did some research to find a way to avoid this and found out about lazy loading. Lazy loading is a technique used in angular that allows to load components and modules asynchronously on demand. This helps to decrease the startup time. With this the application doesn't need to load everything in the startup or at once. On startup it loads only the part that the user expects to see and this saves the time it takes to load unnecessary modules or components. Modules that are lazily loaded will only be loaded when the user expects to see them or navigates to them. Purpose of this article is to define a simple module that will demonstrate a lazy loading component. Create a new ionic App First create a new blank ionic app from the CLI. $ ionic start myApp blank Then open the project folder with your favorite text editor.So our default NgMo...

Hybrid Mobile Application using Adobe PhoneGap

Image
Hybrid mobile apps are built with a combination of web technologies like HTML, CSS, and JavaScript. The key difference is that hybrid apps are hosted i nside a native container which is targeting the webview of the device.  So they have access to many device capabilities.We can make really good mobiles apps with this. On the other hand we can use one code for different platforms like android, ios and windows. Here I am going to show the basic of creating a hybrid app through Adobe PhoneGap. You can have a good knowledge about  Adobe PhoneGap  by going to their website.  First go to PhoneGap official website and download the new PhoneGap Desktop app. Then run the “.exe” file and install it to your computer. After installation open the PhoneGap Desktop App. It will look like this. Then install PhoneGap Developer app to your mobile device.  To begin create a new project. On step one select the default hello world as the template. On Step two...

Psychology in Web Design

Image
           1.Von Restorff effect The  Von Restorff effect, also known as the "isolation effect" . The more absurd an element is, the more it will stand out and be remembered. If you want to draw attention to one item, you isolate it, such as through color, size, spacing, etc. 2. Psychology of Color Using appropriate colours in designing the brand identity Black: sophistication and power White: cleanliness, sophistication, virtue Red: courage, power, strength; can also stimulate appetite Blue: calmness, peace, trust, safety Yellow: optimism, happiness Green: balance, sustainability growth Purple: royalty, spiritual awareness, luxury Orange: friendliness, comfort, and food Pink: tranquillity, femininity, sexuality 3.    Maslow’s Hierarchy of Needs 4.Hick’s Law Hick’s Law relates to how long it takes someone to make a decision. If peo...

Disable Right Clicking On Your Site

Image
Did you ever wanted to disable right clicking on your site?  There are number of ways to do this. 1. From JavaScript Add the following script to the head of your site. <script type="text/javascript"> function a(){      if(document.all){return false;} } function b(e){      if(document.layers||(document.getElementById&!document.all)){                                   if(e.which==2||e.which==3){return false;}      } } if(document.layers){      document.captureEvents(Event.MOUSEDOWN);      document.onmousedown=b; } else{      document.onmouseup=b;      document.oncontextmenu=a; }      document.oncontextmenu=new Function("return false"); </script> 2. From j Query   First you need add jquery  library to your page. < script src = "jq...