*My tip: Use your `.juliarc.jl` to add your current work to your path.*So 
much less annoying than constantly put `push!(LOAD_PATH, directory)` at the 
top of various files.

For example I have:

function add_to_path(directory)
        if isdir(directory)
                push!(LOAD_PATH, directory)
        end
end

add_to_path("/mnt_volume/phd/prototypes/SenseSplittingWord2Vec/src/")
add_to_path("/mnt/phd/prototypes/SenseSplittingWord2Vec/src/")

So if the folder with my current project can be found, it is added to the 
path.
If not then, not.

----------------------------


* managing your cluster with `-L` rather than with `--machine-file`.*
Which I am less sure is a good idea.
See this StackOverflow question 
<http://stackoverflow.com/questions/37250274/is-using-the-l-flag-and-a-addprocs-script-the-more-powerful-version-of-p-and>
  

Reply via email to