Tuesday

Solution to Firefox Browser Error: Bad Request HTTP Error 400.

When you browse to a website, for example at http://www.thestar.com.my/, you get the following error message:

Bad Request
HTTP Error 400. The request is badly formed.

The solution to this problem is:

Click on Menu > Tools > Options > Privacy > remove individual cookies > type at Search: “thestar.com.my” > highlight all > Remove Cookies > Close > OK.

Lastly, go back and now you can continue your browsing at the same website again.

No comments:

Measure execution time with Julia, example using sorting algorithms

# random integers between 1 and 100 inclusive, generate thousands of them x = rand ( 1 : 100 , 100000 ) @time sort (x; alg=InsertionSort, r...