Aqui hay un Google talk por el mismisimo Linus, quien habla sobre su nuevo sistema de control de versiones distribuido. El cual promete se mas rapido, distribuido, y ocupar menos espacio. Algunos claman que pudiera utilizarse como un sistema de archivos distribuidos que nos permitira crear sistemas que antes eran inconcebibles.
Related Posts
Map function in Java
I read on some email signature something along the lines of: “If I had a dollar for every for(int i=0; i < size; i++) { ... } I've written I'd be rich" After coding on Android and learning about some of the tips for performance, like "With an ArrayList, a hand-written counted loop is about […]
[SOLVED] Gradle: How to increase the Java Compiler’s available Heap Memory
The documentation is not very clear on what all the available options are… after much Googling and many different attempts finally figured out how to raise the maximum heap of the compiler from within the gradle.build script. [pastacode lang=”java” manual=”apply%20plugin%3A%20%E2%80%98java%E2%80%99%0A%0AcompileJava%20%7B%0A%2F%2Fraise%20heap%0Aoptions.fork%20%3D%20%E2%80%98true%E2%80%99%0Aoptions.forkOptions.with%20%7B%0AmemoryMaximumSize%20%3D%20%E2%80%9C2048m%E2%80%9D%0A%7D%0A%7D” message=”” highlight=”” provider=”manual”/] Update: So I’ve noticed this works great on MacOSX, but it doesn’t […]
Reference: Passing functions as parameters in C
[c] #include <stdio.h> //Example to show how to pass //functions as parameters in C. //simple function that returns the sum of two ints int sum(int i, int j) { return i+j; } //simple function that prints a char* void printSomething(char* something) { printf("%sn",something); } //function that takes // 2 ints // 1 char* // one […]
Excelente video, gracias por compartirlo