Tags
.NET Apache Apple Bug or Feature CircleCi cleancode dartlang development drupal Eclipse feed file comparison Gedit git Gnome HQL Hyper-V IIS integration Javascript Linux Meld Microsoft NHibernate open source performance PHP Quicktime Redmine registry Remote Desktop Safari security Server TFS 2010 twitter ubuntu UX Virtual VirtualBox web WinDiff Windows XDebug XML-
Tag Archives: web
Heartbleed OpenSSL bug and how to protect against it
The heartbleed bug was introduced in OpenSSL 1.0.1 and is present in 1.0.1 1.0.1a 1.0.1b 1.0.1c 1.0.1d 1.0.1e 1.0.1f The bug is not present in 1.0.1g, nor is it present in the 1.0.0 branch nor the 0.9.8 branch of OpenSSL … Continue reading
String replace in Javascript
Taking a note: Javascript String.replace([pattern], [replacement]) method replaces only first occurence of the matched pattern. To replace all occurences, you’ll need a “global” flag: var str = “ABCDEFGHABCD”; //some string alert(str.replace(/A/g), “I”); //replacing each appearance //of A with an I
Testing web pages in different IE versions
When you think you are done with the development, you are at the beginning of resolving cross-IE compatibility issues. At least as a beginner every one of us have gone through this phase. The world is offering IE Collection, IETester, … Continue reading