Wednesday, November 5, 2014

Today we discuss a new idea for an application. This application provides a personal box for you to use online. You can store digital content or share.it ages and collects the items so that you don't have to bother about cleaning up. Moreover, you can mark items to get burned after some time. You can also safely and securely share items with others using tiny urls or a variety of data formats knowing that it will be temporary. The idea is to bring the garbage collector to you. However it is something that provides very specific functionality and may need to be assessed  for appeal and business value. More on this perhaps later.

3 comments:

  1. #coding exercise
    Void memcpy(char* src, char* dest, size_t n)
    {
    If ( !src || !dest || n <= 0) return;
    While (n)
    {
    *dest = *src;
    Dest++;
    Src++;
    n--;
    }
    }

    ReplyDelete
  2. #coding exercise
    Void memcpy(char* src, char* dest, size_t n)
    {
    If ( !src || !dest || n <= 0) return;
    While (n)
    {
    *dest = *src;
    Dest++;
    Src++;
    n--;
    }
    }

    ReplyDelete