Monthly Archives: February 2018

Restore iPhone backup issue

Today I bought an iPhone X and tried to restore my iPhone 6s backup to it but failed. I got error message saying backup corrupt or incompatible. I was wondering if it was related to my carrier transfer from at&t … Continue reading

Posted in Uncategorized | Leave a comment

How to install gulp?

You need to run this command: npm install -g gulp-cli

Posted in Uncategorized | Leave a comment

Handy js to loop through properties in an object

var output = ”; for (var property in myObject) { output += property + ‘: ‘ + myObject[property]+’; ‘; } alert(output);

Posted in Uncategorized | Leave a comment

SVN – how to revert a single file to an old version?

If it’s only a single file, and if you’re using Tortoise SVN, you can use the following approach: 1.Right click on your source file, and select “TortoiseSVN” -> “Show log”. 2.In the bottom window that show changed files, right click … Continue reading

Posted in Uncategorized | Leave a comment