Does Git publicly expose my e-mail address?

Update April 2017 See “Private emails, now more private“ GitHub has supported using an alternate “noreply” email address to author web-based commits for a while now. Starting today, there’s another way to ensure you don’t inadvertently publish your email address when pushing commits to GitHub via the command line. Git uses your email address to … Read more

iOS6 UDID – What advantages does identifierForVendor have over identifierForAdvertising?

Important Note: Apple just released iOS 6.0 and the NDA has been lifted. For developers who preemptively included code that referenced [[UIDevice currentDevice] identifierForAdvertising] this method has NOT been included on iOS 6. If you use the above method, your app will (most likely) crash and be rejected! Instead, Apple has created a new class … Read more

jqGrid data stored in browser cache?

Per default the data loaded from the server (JSON or XML data) will be saved in the browser cache, but not used at the next request. The reason is that per default jqGrid implement the same behavior of ajax requests like cache:false parameter of jQuery.ajax. It means that all requests has an additional parameter nd … Read more