R writeBin() lookout for data type
R uses "Numeric" as it's default type for numbers.
This can sometimes lead to confusion and errors when a specific type is needed.
In this example the writeBin() function is used to write data to binary.
How to enable extra monitors for Debian xfce in VirtualBox
Enable extra monitors or dual screens for Debian xfce in VirtualBox
My pelican setup
Document some of the useful changes that I made to my pelican setup.
Might be helpful for newcomers ;)
How to fix R package error missing required header GL/glu.h
Encountered
configure: error: missing required header GL/glu.h
while trying to install R packages
managed to fix it with: apt-get install libglu1-mesa-dev
How to fix R package error X11 not found but required
Encountered
configure: error: X11 not found but required
while trying to install R rgl package,
managed to fix it with: apt-get install xorg-dev
How to show file size in Linux terminal
To list the file size of all the files in the current directory, use the
du
command Hello New World
Moving from Blogger to Pelican
It is a brave new world !
It is a brave new world !
A Example
My Short cheat sheet for Markdown
How to classify and compare algorithm asymptotic runtimes
By:
David
On:
Fri 11 September 2015
Asymptotic runtimes can be classified to help with comparison and understanding. There are also some tricky examples that can't be classified at first sight, but will require simple mathematical transformations.
How to host Project Website on GitHub Pages
You can host static websites freely on GitHub Pages. They are awesome!