June 12, 2016

Hybris | Cs Cockpit | Add custom attribute to Ticket System


Prerequisite have and custom extension created [ex:customcscockpit] Let's see first how the page is rendered, to give a practical walkthrough let us take an example of 'New ticket' flow which is in CS COCKPIT as part of ticketing system. -------------------------------------------------------------------- Existing...

October 30, 2015

Git commands simplified


Adding remote branch: git remote add remote_branch_name remote_branch_url Ex: git remote add upstream https://github.com/user/repo.git Checking remote branches added: git config -l Sample: core.symlinks=false core.autocrlf=true core.fscache=true color.diff=auto color.status=auto color.branch=auto color.interactive=true pack.packsizelimit=2g remote.upstream.url=https://github.com/user/repo.git remote.upstream.fetch=+refs/heads/*:refs/remotes/upstream/* Pull...

September 28, 2014

Firefox Plugin | User agent changer


User Agent Changer 2.6.8  Download link:  https://addons.mozilla.org/en-US/firefox/addon/user-agent-changer/ OR Add to Firefox Plugin comes with default user agents. Go to below link save the XML in a file, import it in the Plugin. https://github.com/hshanbhag/User-agent-xml/blob/master/UserAgentXML.xml Steps...

June 07, 2014

Awesome CSS icons


Note: it is not possible to use :before or :after pseudo content on <input> elements, however if you instead use <button>Label</button>, it will work as desired. Below is a Font Awesome cheat sheet of all the content values for each icon: fa-glass "\f000" fa-music "\f001" fa-search "\f002" fa-envelope-o "\f003" ...

MongoDB Video Training Sessions | Youtube


Week 1 (Introduction) All sessions are available at : http://clean-clouds.com/2013/10/22/mongodb-video-tutorials-i/ An Interview: How Foursquare uses MongoDB - YouTube An Interview: How Codecademy uses MongoDB - YouTu...

March 03, 2014

StringUtils.isNotEmpty() VS StringUtils.isNotBlank()


if(document.location.href.indexOf('stringutilsisnotempty') > -1) { // indexOf will return the position of the first occurence of this string in the url // or -1 it it's not there. document.location.href = 'https://blog.shanbhag.me/StringUtils-isNotEmpty-VS-StringUtils-isNotBlank/'; } StringUtils.isNotEmpty() is used to find if the String is not empty and not null.  StringUtils.isNotBlank()...

StringUtils.isEmpty() vs StringUtils.isBlank()


if(document.location.href.indexOf('stringutilsisempty') > -1) { // indexOf will return the position of the first occurence of this string in the url // or -1 it it's not there. document.location.href = 'https://blog.shanbhag.me/StringUtils-isEmpty-vs-StringUtils-isBlank/'; } StringUtils.isEmpty() is used to find if the String is length 0 or null. StringUtils.isBlank()...