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

Posted in Linux, Open Source | Tagged , , , , | Leave a comment

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

Posted in Software Development | Tagged , | Leave a comment

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

Posted in Hardware | Tagged , , | Leave a comment