Abort a merge operation with conflicts
Let say you are working on branch 4.3, and by accident you merge the wrong branch name instead : git merge origin ABC Your working tree is now completely broken with failed merges since...
Just another Yipp.ca Blogs site
Let say you are working on branch 4.3, and by accident you merge the wrong branch name instead : git merge origin ABC Your working tree is now completely broken with failed merges since...
WordPress plugin renders shortcode on top of page This is a common mistake and easy to fix ! Solution Instead of echo'ing things in your shortcode handler function, return the string and do not...
You did something like WRONG: var modalView = MyModule.Views.Edit({options}); GOOD: var modalView = new MyModule.Views.Edit({options}); This solves the problem with error in console : this._configure is not a function this._configure(options || {}); In backbone.js,...
Well there can be multiple reasons for this error. But in my node.js development with mongoDB, this always occurs when mongoDB could not be started. The solution was always to cleanup old mongod.lock files....
Error: Most middleware (like favicon) is no longer bundled with Express and must be installed separately. Please see https://github.com/senchalabs/connect#middleware. Solution: For Express 4 : // Serve favicon.ico. $> npm install serve-favicon Then in your...
Your branch and 'origin/master' have diverged. Two approach to resolve this are : git pull --rebase or Danger: You will scrap all your non-pushed data !!! git reset --hard origin/master
Problem : 'Unhandled exception: [SyntaxError: Unexpected token ILLEGAL]' Solution : This can be many things, from a weird unicode character not appearing in your editor to a simple extra double-quote at the wrong place....
Client-side javascript validation using Backbone.Validation Troubleshooting Checklist (1) Make sure backbone.validation.js and backbone.validation.bootstrap.js are included. backbone.validation.js : https://github.com/thedersen/backbone.validation/blob/master/src/backbone-validation.js backbone.validation.boostrap.js : https://gist.github.com/driehle/2909552 (2) Make sure your model extends Backbone.Model() and add a validation object to your model after the default declaration : SuperApp.Model = Backbone.Model.extend({ defaults...
error while loading shared libraries: libXv.so.1: wrong ELF class: ELFCLASS64 [root@kraken sbin]# ./krakend ./krakend: error while loading shared libraries: libXv.so.1: wrong ELF class: ELFCLASS64 Solution : Either install the 32-bit library missing -or- compile...
Recent Comments