How to find the largest top files and directories on Linux
If you want to find the largest top files and directories on Linux you can use this command du -a / | sort -n -r | head -n 10 First we use du. It shows the disk usage of your Read More …
If you want to find the largest top files and directories on Linux you can use this command du -a / | sort -n -r | head -n 10 First we use du. It shows the disk usage of your Read More …
Sometimes you need to connect your Java application to a SSL server and you can get this error What you’re application is telling you is that it doesn’t trust in the other server. The solution is very simple, you just Read More …
Ha llegado un nuevo año y con el nuevo año siempre nos planteamos propositos. Esta es mi lista de propositos, veremos en 2017 si los he cumplido todos Aprender ES2015: La ultima version del estandar ECMAScript. Tengo bastante curiosidad por Read More …
We saw what does a Noradf application looks like in our previous post (Part I and Part II). Now it’s time to create a sample application to show Noradf in action
In the previous post we introduce Noradf (check out the Github Organization for more info) We’re going to continue with the ‘what a noradf application looks like‘ section