Git delete a commit in history

git rebase –onto 33fee37^ 33fee37 HEAD git checkout -b KSEAPP-61 git checkout master git merge KSEAPP-61 –no-commit

Downgrade Firefox version from 47+ to 46

I am working with Selenium and Firefox browser but it keeps saying And the problem is that Selenium version 2.53 is not working with Firefox version 47 as Issue 2110So I try to downgrade Firefox to version 46 on my Mac Then change to Reinstall [email protected]

Call nested multiple Angular $http request and handle the response

You want to do something when your http call is done. You can do it at the .success and .then, but if you have nested call after your http call success and you want to do same action when the nested call finish also then the good approach should be passing in the callback function as param

Angular JS karma filter unknown provider

I tried to inject the filter to Jasmine for test. But it keeps saying unknown provider The problem is I need to put to postfix the word Filter if your filter name is “filterName” Then in Jasmine you need to inject it with “filterNameFilter”

Angular Karma Jasmine doesn’t load directive during test

Today I tried to separate my directives to separate files.But after that my Jasmine test returns false because the directive is not loaded to the test anymore. The problem is that I use the same module name and second param [] in the module when define the directive in different files then only the last file will create the module with it directive. The others will be ignored. requires (optional): If specified then new module is being created.