Monthly Archives: May 2013
add auto-complete to emacs
Installing auto-complete to emacs. It’s not loaded. Solution: add the following text to ~/.emacs ;; auto-complete (add-to-list ‘load-path “~/.emacs.d/”) (require ‘auto-complete-config) (add-to-list ‘ac-dictionary-directories “~/.emacs.d//ac-dict”) (ac-config-default)-c
Density and Specific Heat Dependencies
Be aware of the density and specific heat dependencies. For a pure substance, the flow solver allows only density and specific heat capacity to be functions of temperature or pressure. When you select the Value option for density or specific … Continue reading
Install adobe pdf read on Linux
It would be better to install adobe pdf reader on linux, though envince is more preferred to me. But for some certain functions, it has to be used, playing animation for example. Method to install adobe pdf reader on linux … Continue reading
#!/usr/bin/env
The shebang line (from “sharp bang”, i.e. #!) is processed by the kernel. The kernel doesn’t want to know about environment variables such as PATH. So the name on the shebang line must be an absolute path to an executable. … Continue reading