Advertisement

More Related Content

Advertisement

Programming Humans

  1. From the assembler to cloud computing and the DNA to mankind Georgios Kasselakis // KCorax
  2. COMING UP WITH THE IDEA
  3.  
  4.  
  5. stolen from xkcd.com
  6. DISSECTING THE UNIT
  7. Assembly DNA C Protein C++ Cell Java Tissue OS Body
  8. Assembly vs DNA
  9. Assembly vs DNA
  10. C vs Proteins #include <stdio.h> int main(void) { printf(&quot;hello, world&quot;); return 0; }
  11. C vs Proteins
  12. C++ vs Cells // vectors: overloading operators example #include <iostream> using namespace std; class CVector { public: int x,y; CVector () {}; CVector (int,int); CVector operator + (CVector); }; CVector::CVector (int a, int b) { x = a; y = b; } CVector CVector::operator+ (CVector param) { CVector temp; temp.x = x + param.x; temp.y = y + param.y; return (temp); }
  13. C++ vs Cells
  14. Java vs Tissues class HelloWorldApp {      public static void main(String[] args){ System.out.println(&quot;Hello World!&quot;); } }
  15. C++ vs Cells
  16. Programs/OS vs Organ/Body OS Body
  17. Effects of higher integration average size of program suitable for the language resemblance to natural language size of simple program integration reliability appropriate metric
  18. An aside on Wisdom
  19. Beware of memory ! (it could ruin everything)
  20. BEYOND THE ONE
  21. human computer society network nation web mankind cloud
  22. Societies vs Networks
  23. Nations vs Web
  24. Mankind vs Cloud Computing
  25. Outsourcing human computer society network nation web mankind cloud
  26. FUTURES
  27. more more more
  28.  
  29.  
Advertisement