Posts

Get your hands dirty on Javascript :Simple Task

Image
Q -- Simple On click of table cell change the value and revert back after 2 seconds. Level-Beginner  |   Language-Javascript =======Think and try it yourself first ======= So finally you came in solution section . Let's see what we are doing 1.Checking Table is not null 2.we are using two for loop to pass through every element. 3.Now we are triggering onClick event 4.then we use this keyword to access the innerHTML value 5.Then we are using setTimeout function

Concourse Installing and Setup [MAC and Windows]

Image
#  Councourse Setup --> Official Docs -  https://concourse-ci.org/ https:// your_concourse_url curl -Lo concourse https://github.com/concourse/concourse/releases/download/v3.10.0/concourse_darwin_amd64 && chmod +x concourse && mv concourse /usr/local/bin curl -Lo fly https://github.com/concourse/concourse/releases/download/v3.10.0/fly_darwin_amd64 && chmod +x fly && mv fly /usr/local/bin/ brew install postgres concourse --version fly --version Windows Windows If your local computer runs Windows, hit the  Windows key  on your keyboard, type  powershell , and hit  ENTER . In the window that appears, make a  bin  folder by typing: mkdir bin Next, move the  fly.exe  file from your  Downloads  folder to the new  bin  folder by typing: mv Downloads/fly.exe bin Check whether you have a PowerShell profile already available: Test-Path $profile If the respon...

Git Pull vs Git Pull Rebase

Image
Suppose originally there were 3 commits,  A , B , C : Then developer D created commit  D , and developer E created commit  E : Obviously, this conflict should be resolved somehow. For this, there are 2 ways: MERGE : Both commits  D  and  E  are still here, but we create merge commit  M  that inherits changes from both  D  and  E . However, this creates  diamond  shape, which many people find very confusing. REBASE : We create commit  R , which actual file content is identical to that of merge commit  M  above. But, we get rid of commit  E , like it never existed (denoted by dots - vanishing line). Because of this obliteration,  E  should be local to developer Ed and should have never been pushed to any other repository. Advantage of rebase is that  diamond  shape is avoided, and history stays nice straight line - most developers love that!

Freecharge Loot 2018

FREECHARGE TRICK -1 FREECHARGE-TRICK OF 50 Rs. CASHBACK ON 100 Rs. (NEW USERS) : Now, IF YOU ARE A NEW FREECHARGE USER, THEN YOU CAN GRAB 50 Rs. CASHBACK ON 100 Rs. RECHARGE, ISN’T IT AWESOME ! ● NEW USER JUST START RECHARGE OF 100 Rs. Or more And MUST ENTER BELOW PROMO CODE DURING CHECKOUT TO GET 50 Rs. CASHBACK. PROMO CODE : R0LUPZM ● Now complete payment via credit card / debit card / net banking. ● You will get 50 Rs. Cashback.

Freecharge Unlimited trick [PC] 2018

Image
1) Download nox app player.exe for pc (size -300mb aprox ) 2) Open nox app player  3) Download freecharge from google (dont waste time on playstore) in pc 4) copy your refer code from the main free charge account and paste in nox app player (freecharge) 5) now recharge on new number and put refer code pay via dc/cc (new only) (For unlimited debit card use kite and tmw app ) 6) after sucessfully cb credited (I suggest u to uninstall nox player didn't tried for changing imei or android id ) 7) do again and again and earn unlimited

Important TCS CodeVita Questions Solved – Saving for a rainy day

Image
Important  TCS CodeVita Questions Solved – 2015 Problem : Saving for a rainy day By nature, an average Indian believes in saving money. Some reports suggest that an average Indian manages to save approximately 30+% of his salary. Dhaniram is one such hard working fellow. With a view of future expenses, Dhaniram resolves to save a certain amount in order to meet his cash flow demands in the future. Consider the following example. Dhaniram wants to buy a TV. He needs to pay Rs 2000/- per month for 12 installments to own the TV. If let’s say he gets 4% interest per annum on his savings bank account, then Dhaniram will need to deposit a certain amount in the bank today, such that he is able to withdraw Rs 2000/- per month for the next 12 months without requiring any additional deposits throughout. Your task is to find out how much Dhaniram should deposit today so that he gets assured cash flows for a fixed period in the future, given the rate of interest at which his money ...

Important TCS CodeVita Questions Solved – Sheldon Cooper and his beverage paradigm

Image
Important TCS CodeVita Questions Solved – 2015 Problem : Sheldon Cooper and his beverage paradigm Sheldon Cooper, Leonard Hofstadter and Penny decide to go for drinks at Cheese cake factory. Sheldon proposes to make a game out of this. Sheldon proposes as follows, To decide the amount of beverage they plan to consume, say X. Then order for a random number of different drinks, say {A, B, C, D, E, F} of quantities {a, b, c, d, e, f} respectively. If quantity of any three drinks add up to X then we’ll have it else we’ll return the order. E.g. If a + d + f = X then True else False You are given Number of bottles N corresponding to different beverages and hence their sizes Next N lines, contain a positive integer corresponding to the size of the beverage Last line consists of an integer value, denoted by X above Your task is to help find out if there can be any combination of three beverage sizes that can sum up to the quantity they intend to consume. If such a combination...