Tips for GNU Emacs on Windows

(Emacs 24 assumed). First of all, add the marmalade repo to your .emacs. (require ‘package) (add-to-list ‘package-archives ‘(“marmalade” . “http://marmalade-repo.org/packages/”)) (package-initialize) Then with list-packages, install color-theme Put these in your .emacs to make a life a little more attractive: ;; change font (set-face-font ‘default ‘”-outline-Consolas-normal-r-normal-normal-14-97-96-96-c-*-iso8859-1″)) (add-hook ‘before-make-frame-hook (lambda () (set-frame-font “-outline-Consolas-normal-r-normal-normal-14-97-96-96-c-*-iso8859-1”) )) ;; change color-theme …

Continue reading ‘Tips for GNU Emacs on Windows’ »

Fix “Internet Explorer cannot display the webpage” for Oracle Enterprise Manager

If you cannot view Oracle Enterprise Manager in IE, but can in other browsers, chances are you’ve hit the MS IE ssl keysize patch. A patch does exist for this (the problem is due to OEM using a 512 bit cert) but if you like you can frontend EM with Apache. Put this inside the …

Continue reading ‘Fix “Internet Explorer cannot display the webpage” for Oracle Enterprise Manager’ »