select * from apigoogleposts where googleid = '114965985827593281466' order by pdate desc limit 0,100
Andre Venter2013-04-29 11:54:34
  • 2 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2013-03-30 17:35:52
  • 2 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2013-02-21 18:17:16
  • 1 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2013-02-21 17:57:00
    Free Speech in the Era of Its Technological Amplification
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2013-01-05 10:05:07
    These guys understand and support API creation workflow.
    They have abstracted it to the simplest possible steps and built amazing tools to support it.

    Well done http://apiary.io/
  • 2 plusses - 0 comments - 2 shares | Read in G+
  • Andre Venter2012-12-26 10:13:48
    @canjs http://goo.gl/MznLo  Updated "Cellar-CanJS-Bootstrapped" - CRUD with Slim REST server hooked up :-)
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-12-24 18:56:39
    @canjs I love your library. http://goo.gl/MznLo  my first complete CRUD with REST server hooked up :-) "Cellar-CanJS-Bootstrapped"
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-12-22 15:50:34
    Can't wait for these guys to ship :)
  • 1 plusses - 0 comments - 1 shares | Read in G+
  • Andre Venter2012-12-20 06:25:36
    The HUAWEI E5331 works really well with Cell C Data SIM.
    I am surprised that it is as fast as the Cell C high speed modem (black).
    The bonus is that it does not drain your laptop battery while on the move. 
  • 2 plusses - 2 comments - 3 shares | Read in G+
  • Andre Venter2012-12-19 11:51:14
    CanJS way vs the JS way:

    I like the declarative style of making constructor objects
    It brings back some OOP qualities to JS without loosing the functional benefits
    :)

    // CanJS way

    var MyObject = can.Construct(
        {
            init: function() {this.value = 0},
            increment: function(inc) {this.value += typeof inc === 'number' ? inc : 1},
            getValue: function() {console.log(this.value)}
        }
    );

    myInstance = new MyObject();   

    myInstance.increment();
    console.log(myInstance.getValue()); // 1 
    myInstance.increment(2);
    console.log(myInstance.getValue()); // 3

    // ------------------------------------------------------------------------

    // Javascript Way

    // Create myObject. It has a value and an increment
    // method. The increment method takes an optional
    // parameter. If the argument is not a number, then 1
    // is used as the default.

    var myObject = {
        value: 0,
        increment: function (inc) {
         this.value += typeof inc === 'number' ? inc : 1;   
        }
    };

    myObject.increment( );
    console.log(myObject.value); // 1 
    myObject.increment(2);
    console.log(myObject.value); // 3

    // Create the same myObject but hide "value"
    // Initialize myObject by calling a function that returns an object literal
    // This is called a closure

    var myObject = (function () {
        var value = 0;
        return {
                increment: function (inc) {
                    value += typeof inc === 'number' ? inc : 1;
                },
                getValue: function () { 
                    return value;
                }
            };
    }( ));

    myObject.increment( );
    console.log(myObject.getValue()); // 1 
    myObject.increment(2);
    console.log(myObject.getValue()); // 3


    // ------------------------------------------------------------------------
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-12-12 15:07:03
    I like Stypi for Code Q&A and collab.

    Stypi makes it easy to collaborate on documents online. Here are three ways for you to get the most out of it:

    1. Share Your Documents
    Make a document available to anyone by sharing its URL. You can also make a document private and only provide access to your collaborators.
    2. Stay Organized
    Use the filetree to create folders, access recently viewed documents, and see what's been shared with you.
    3. Never Lose Your Work
    Play back the history of your document like a movie to see how it evolved or to retrieve a previous version.
  • 1 plusses - 2 comments - 0 shares | Read in G+
  • Andre Venter2012-11-24 09:19:52
    I recently started using Ubuntu 12.04 on my Macbook Air.

    I love the development experience, but it has its "rabbit holes" - as you probably know, if you have tried it.

    Here is one:

    I am using PieCrust to render documentation.
    http://bolt80.com/piecrust/doc/5-min/
    At the end of the "5min" setup there is a lovely ubuntu "rabbit hole".
    "Got the hang of it? Add chef to your PATH and start fresh:"

    Don't follow the thousands of outdated blog posts that will tell you to edit:
    1. ~/.profile
    2. ~/.bash_profile
    3. ~/.bashrc
    https://help.ubuntu.com/community/EnvironmentVariables

    It will leave your Ubuntu 12.04 looping in the login screen - even if you type in the correct password.

    Create a file ".pam_environment" in your home folder.
    Add your path to "chef" in this file - as a single line.

    PATH DEFAULT=${PATH}:var/www/PieCrust/bin
    OR - if you have a simlink in your "home" folder for "www" 
    PATH DEFAULT=${PATH}:~/www/PieCrust/bin

    This way your machine won't need TLC for hours and you can happily do:

    $ chef

    and see:

    The PieCrust chef manages your website.

    Usage:
      chef [options]
      chef [options] <command> [options] [args]

    Options:
      -h, --help  show this help message and exit
      --version   show the program version and exit

    Commands:
      bake        Bakes your PieCrust website into a bunch of static HTML
                  files.
      categories  Gets the list of categories used in the website.
      find        Find all pages, posts and templates in the website, with
                  optional filtering features.
      help        Gets help on chef.
      import      Imports content from another CMS into PieCrust.
      init        Creates a new empty PieCrust website.
      plugins     Gets the list of plugins currently loaded, or install new
                  ones.
      prepare     Helps with the creation of pages and posts.
      purge       Purges the website's cache directory.
      root        Gets the root directory of the current website.
      serve       Serves your PieCrust website using a tiny development web
                  server.
      showconfig  Prints part of, or the entirety of, the website's
                  configuration.
      stats       Gets some information about the current website.
      tags        Gets the list of tags used in the website.
      themes      Manages themes for your PieCrust website.
      upload      Uploads your PieCrust website to a given FTP server.

    Additional help topics:
      about-import
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-11-18 12:20:24
    Ubuntu 12.04 on MacBook Air is really a pleasure :-)
    https://help.ubuntu.com/community/MacBookAir4-2

    So far the best Ubuntu install I have experienced on a laptop.
  • 1 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-11-15 15:39:57
    I am selling my
    17" MacBook Pro (SandyBridge) 4Gb RAM and 750Gb HDD
    Perfect condition :-)
    R18,000
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-11-02 17:11:29
    Here is a great Bootstrap theming app and at the same time an excellent JS MVC example.
  • 1 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-10-18 22:51:16
    A Google Samsung - ChromeBook for Christmas ;-)
  • 2 plusses - 2 comments - 0 shares | Read in G+
  • Andre Venter2012-10-17 16:27:51
    Check this out if you work with HTTP

    http://whatisthatstat.us/

    Lovely
  • 1 plusses - 1 comments - 0 shares | Read in G+
  • Andre Venter2012-10-08 18:13:43
    @CellC

    Your data service Cr Sloane and Ebury - Bryanston is very erratic and slow

    Day 1
    http://www.speedtest.net/result/2227333609.png

    Day 2
    http://www.speedtest.net/result/2229120705.png

    Day 3
    http://www.speedtest.net/result/2230128842.png

    See the difference?
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-10-07 20:40:22
    Hi @CellC- the last time the internet was this useless was 20 years ago on an analog modem.

    Cmon guys - sort out this service - cr Sloane and Ebury

    http://www.speedtest.net/result/2227333609.png
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-10-04 19:17:41
    http://fortrabbit.com - I LOVE IT :-)
  • 0 plusses - 2 comments - 0 shares | Read in G+
  • Andre Venter2012-10-01 17:15:06
    I like the combination of PHP Application exposing RESTful services and Dojo managing presentation and interaction.

    Do you use Dojo? What is your favorite backend for a green fields project?

    I am partial to Play Framework and the TypeSafe stack for the application and services layer too, but I am not sure how version 2 fares in production.

    Calling Dojo ninjas... what is your preference and experience?
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-09-29 10:45:46
  • 1 plusses - 2 comments - 0 shares | Read in G+
  • Andre Venter2012-09-29 09:14:01
    @CellC FAILS to render GMAIL in Bryanston.

    http://cl.ly/JnxC
  • 1 plusses - 2 comments - 0 shares | Read in G+
  • Andre Venter2012-09-29 02:06:50
    CellC data service is broken in Bryanston.

    http://www.speedtest.net/result/2209170460.png

    While this is what it looks like in Sandton

    http://www.speedtest.net/result/2208025851.png

    And that is way below the "promised" quality of service.

    What can we do?
  • 1 plusses - 1 comments - 0 shares | Read in G+
  • Andre Venter2012-09-25 14:18:46
    Well done CellC - your service in Bryanston is now slower and less reliable than the internet 20 years ago.
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-09-18 05:19:46
    CellC please help!
  • 0 plusses - 2 comments - 0 shares | Read in G+
  • Andre Venter2012-09-17 15:29:57
    After a working day CellC is still in trouble
  • 0 plusses - 2 comments - 0 shares | Read in G+
  • Andre Venter2012-09-17 09:07:19
    CellC had a big weekend. I am not sure what their problems are but it is serious. Soon we will be at kb/s like in the analog modem days :-(
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-09-16 16:32:30
    Thank you Addy :-)
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-09-16 15:50:00
    CellC Data - 1000% variance in performance this weekend

    Date                          Download      Upload      Latency       ServerName
    2012-09-16 17:36       1334              159                 63         Sandton
    2012-09-16 17:35       1001              129               592         Sandton
    2012-09-16 15:49       441                138               514         Sandton
    2012-09-16 15:48       1638               307                78         Sandton
    2012-09-16 15:47       421                 51                 90          Sandton
    2012-09-16 13:16       608                136                98          Sandton
    2012-09-16 11:34       729                                     79          Rosebank
    2012-09-16 11:33       1114               1196            151         Rosebank
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-09-11 06:37:36
    I really appreciate elegant solutions :-)
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-08-13 17:29:42
    Portal 2 Crashing Remedy - (Steam Support Reply) It Works :-)

    In order to correct the crashing in Portal 2 please do the following:

    1. Exit Steam.

    2. Navigate to your Portal 2 bin folder (~Users\[username]\Library\Application Support\Steam\SteamApps\common\Portal 2\bin\)

    Note: If you are using Lion please do the following to access your Steam folder:

    - Click "Go" in the menu bar
    - Click "Go to Folder..."
    - Type "~/Library/Application Support/Steam"
    - Click "Go"

    This will take you directly to the folder.

    3. Locate the libsteam.dylib file and drag it to your Trash Can.

    4. Start up Steam, launch Portal 2, and try to begin a level.

    The game should load without crashing. 
  • 1 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-08-10 10:38:43
    Can't wait for this to go mainstream :-)
  • 1 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-08-10 10:04:13
    Thank you "Steam" for breaking Portal 2 on OS X.

    NOW PLEASE FIX IT!
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-07-21 11:37:20
    I don't use Automator on OS X often, but today it really helped.

    Convert large PDF file (many pages) into individual images (PNG 300DPI).

    Here is how:

    Drag 3 Automator actions into a Workflow and start it up: MAGIC!
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-07-06 08:20:44
    Google Chrome on Ubuntu Linux really sucks :-(
  • 3 plusses - 14 comments - 0 shares | Read in G+
  • Andre Venter2012-05-20 18:03:54
    IT CRASHES AFTER ENTERING YOUR GITHUB CREDENTIALS ON IPAD 1.

    HOW DO YOU GET A REFUND?
  • 0 plusses - 4 comments - 0 shares | Read in G+
  • Andre Venter2012-05-20 17:34:53
    This is the world's first open source HTML5 SIP client entirely written in javascript for integration in social networks (FaceBook, Twitter, Google+), online games, e-commerce websites... No extension, plugin or gateway is needed. The media stack rely on WebRTC.
    The client can be used to connect to any SIP or IMS network from your preferred browser to make and receive audio/video calls and instant messages.
  • 3 plusses - 0 comments - 1 shares | Read in G+
  • Andre Venter2012-05-05 08:08:54
    The Handover of Java (Mac) to Oracle

    "Apple dropped Java from the default installation of OS X 10.7 Lion after the company announced in 2010 that it would deprecate the software's release for the Mac platform."
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-04-26 21:29:45
    Thank you "Universal Mind" http://www.universalmind.com/

    One Depenedency injection approach for Ext JS or Sencha Touch. That makes sense!
  • 1 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-04-04 23:26:30
    "Write client and server components in the same language (JavaScript), using the same framework."

    Now that is a promise many would like to see fulfilled :-)

    Nice - automation, examples, docs, guides ... enough to get started :-) Thanks Yahoo !

    http://developer.yahoo.com/blogs/ydn/posts/2012/04/yahoo’s-mojito-is-now-open-source/
  • 2 plusses - 2 comments - 1 shares | Read in G+
  • Andre Venter2012-04-02 13:18:58
    Nothing is more dangerous than an idea if it's the only one you have.

    Emil-Auguste Chartier, Propos sur la religion, 1938
  • 0 plusses - 1 comments - 1 shares | Read in G+
  • Andre Venter2012-04-02 12:37:19
    People tend to interpret Scrum within the context of their current project management methodologies.
    They apply Scrum rules and practices without fully understanding the underlying principles of self-organization, emergence, and visibility and the inspection/adaptation cycle.
    They don’t understand that Scrum involves a paradigm shift from control to empowerment, from contracts to collaboration, and from documentation to code.

    http://cl.ly/FW8n
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-03-31 18:31:22
    I am trying to find Szymon Wrozynski in Polland - can anyone help?
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-03-20 11:26:24
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-03-19 23:55:34
    Search API in action :-)
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-03-13 14:07:38
    IN SEARH OF THE PERFECT CLIENT STACK
    It's interesting to see some of the RIA thinkers attempts to recover what they had with Flex.
    There is a pattern emerging:
    1. Let's NOT get stuck with a single supplier again
    2. How do we make a MVC client with UI components - answer Sencha
    3. But because of (1) Ignore Sencha in case it becomes another Adobe
    4. Realizing no one else combines all the Fat Client features they were used to in Flex
    5. Combining frameworks that do not fit or have strange overlaps
    6. Please god - let's not compile anything ever again

    Example:
    Combining Backbone.js with JQuery Mobile to get MVC and visual components with a strange features overlap (who will do persistence and data management)

    The Issues they are trying to find a "STACK" solution for:
    1. Templates (extra bonus borrowed from back end web frameworks)
    2. MVC in the client (Backbone.js is ahead in the race for MVC)
    3. Re-useable UI components (Bootstrap is ahead for desktop but weak for mobile)
    4. API standard for the backend (RESTful is emerging ahead of JSON-RPC and XML-RPC)

    What is your favorite combination and Why?

    :-)
  • 0 plusses - 0 comments - 1 shares | Read in G+
  • Andre Venter2012-03-08 07:46:34
    Do you have an existing web application and want a Mobile App for it?

    We make APIs to help you do that. http://soapbox.io

    We can also help you with the Mobile Apps.
    http://cl.ly/AYnj
    http://cl.ly/AZ6b
    http://cl.ly/AZqe
    http://cl.ly/AZQe
    http://cl.ly/AYwi
    http://cl.ly/Aa0P
    http://cl.ly/AZSS

    Download an example app here:
    http://cl.ly/AZID
  • 1 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-03-07 17:53:57
    We get really intense electric storms in Johannesburg.
    One just passed over. It's exhilarating and fresh when it's passed :-)
  • 2 plusses - 3 comments - 1 shares | Read in G+
  • Andre Venter2012-03-06 08:53:45
    "GREAT :-)

    "We are excited to announce a reduction in Amazon EC2, Amazon RDS, and Amazon ElastiCache prices. Reserved Instance prices will decrease by up to 37% for Amazon EC2 and by up to 42% for Amazon RDS across all regions. On-Demand prices for Amazon EC2, Amazon RDS, and Amazon ElastiCache will drop by up to 10%. We are also introducing volume discount tiers for Amazon EC2, so customers who purchase a large number of Reserved Instances will benefit from additional discounts. Today’s price drop represents the 19th price drop for AWS, and we are delighted to continue to pass along savings to you as we innovate and drive down our costs."
  • 0 plusses - 3 comments - 1 shares | Read in G+
  • Andre Venter2012-03-05 09:24:32
  • 1 plusses - 0 comments - 3 shares | Read in G+
  • Andre Venter2012-03-02 10:09:32
    If you want an API for mobile data access to your "mojomotor" web site - we can do it for you in an hour.

    http://soapbox.io
    http://mojomotor.com/
  • 2 plusses - 0 comments - 1 shares | Read in G+
  • Andre Venter2012-03-02 10:08:08
    If you want an API for mobile data access to your "expression engine" web site - we can do it for you in an hour.

    http://soapbox.io
    http://expressionengine.com/
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-03-02 08:02:03
    Completed an initial integration of iScaffold and REST server http://goo.gl/qVa2c will put it in soapbox.io repo when more refined :-) See what it does - http://cl.ly/EarM/o
  • 2 plusses - 39 comments - 0 shares | Read in G+
  • Andre Venter2012-02-29 20:38:42
    Thanks Google+

    You delete your own post to a thread - you still get notifications and email from it
    You block the person who started the thread - you still get notifications and mail
    You mute the post - it says it no longer exists - you still get notifications and mail

    What the FUCK ????
  • 1 plusses - 2 comments - 0 shares | Read in G+
  • Andre Venter2012-02-27 22:24:49
    If you ever used iScaffold to generate a CodeIgniter project, have you considered adding a RESTful API to it?

    The link below shows you the result of using soapbox.io to do it for you.
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-02-27 15:47:45
    @ JOZI JUG
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-02-24 17:15:04
    WOW what a wild week @#%&*
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-02-24 12:45:22
    If you are a great HTML5 CSS3 designer who understands "Responsive Design", let's chat :-)

    Please be in Johannesburg.
  • 1 plusses - 2 comments - 0 shares | Read in G+
  • Andre Venter2012-02-24 12:43:01
    Are you a "play framework" expert?
  • 0 plusses - 17 comments - 0 shares | Read in G+
  • Andre Venter2012-02-24 11:28:39
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-02-24 10:32:33
    You send us the schema. We do the REST :-)
  • 1 plusses - 4 comments - 0 shares | Read in G+
  • Andre Venter2012-02-24 10:21:05
    We have a "lab" with a demo!

    Check it out - http://labs.soapbox.io/
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-02-22 06:37:36
    I love everything about early mornings - except getting up.
  • 1 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-02-21 11:29:31
    "Our first product and service is: Adding RESTful API's to any existing MySQL DB. You send us the Schema and we send you a REST app in return"


    http://twitter.com/soapboxio
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-02-21 11:03:56
    Vote please!

    Does this tag line work for you?


    "You send us the Schema. We do the REST"

    :-)
  • 2 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-02-20 20:10:37
    What is the best payoff line?

    "You send us the Schema and we do the REST"
    or
    "Send us the Schema and be RESTful"

    Any other suggestions?
  • 0 plusses - 5 comments - 0 shares | Read in G+
  • Andre Venter2012-02-20 16:17:44
    http://soapbox.io/

    is now live :-)
  • 1 plusses - 2 comments - 0 shares | Read in G+
  • Andre Venter2012-02-17 06:22:40
    "Give us the Schema and we do the REST :-) "

    What does the payoff line mean to you?
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-02-17 05:38:25
    Finally - Thank the Gods (at oracle?)
  • 1 plusses - 0 comments - 2 shares | Read in G+
  • Andre Venter2012-02-15 23:32:02
    Talk JSON to your MySQL database - would that be cool?

    What if all you needed to do is upload your schema to a web site and you would get a tested RESTful server back in return - would that be useful to you?
  • 5 plusses - 4 comments - 1 shares | Read in G+
  • Andre Venter2012-02-15 07:05:01
    RESHARE:


    Reshared text:
    RESTful database access.
    Have you ever wished you can call any database using RESTful access? You know JSON in JSON out.... wouldn't that be lovely?
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-02-14 21:09:09
    RESTful database access.
    Have you ever wished you can call any database using RESTful access? You know JSON in JSON out.... wouldn't that be lovely?
  • 0 plusses - 5 comments - 1 shares | Read in G+
  • Andre Venter2012-02-12 20:48:55
    THE ABC'S OF UNIX /usr/share/games/fortune/songspoems

    A is for awk, which runs like a snail, and
    B is for biff, which reads all your mail.
    C is for cc, as hackers recall, while
    D is for dd, the command that does all.
    E is for emacs, which rebinds your keys, and F is for fsck, which rebuilds your trees.
    G is for grep, a clever detective, while
    H is for halt, which may seem defective.
    I is for indent, which rarely amuses, and
    J is for join, which nobody uses.
    K is for kill, which makes you the boss, while
    L is for lex, which is missing from DOS.
    M is for more, from which less was begot, and
    N is for nice, which it really is not.
    O is for od, which prints out things nice, while
    P is for passwd, which reads in strings twice.
    Q is for quota, a Berkeleytype fable, and
    R is for ranlib, for sorting ar table.
    S is for spell, which attempts to belittle, while
    T is for true, which does very little.
    U is for uniq, which is used after sort, and
    V is for vi, which is hard to abort.
    W is for whoami, which tells you your name, while X is, well, X, of dubious fame.
    Y is for yes, which makes an impression, and
    Z is for zcat, which handles compression.
  • 2 plusses - 0 comments - 8 shares | Read in G+
  • Andre Venter2012-02-05 08:47:21
  • 1 plusses - 2 comments - 0 shares | Read in G+
  • Andre Venter2012-02-04 11:29:23
    Well done, Apple!

    I am already an App Publisher but can't publish an Ebook for FREE because I am an App Publisher :-(

    So let's say I want to publish a EBook for my App - how do I give it to my customers for FREE?

    The following error(s) occurred:
    The iTunes Store account entered is already being used for an iTunes Connect account that distributes Apps. To continue with this application, you must enter a different iTunes account.

    AND - it gets better - Neither can I publish an Ebook for Sale - WTF are these people thinking?
  • 2 plusses - 7 comments - 0 shares | Read in G+
  • Andre Venter2012-02-04 09:56:22
    Know when to say NO
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-02-01 22:03:19
    Finally Bootstrap is Responsive to Mobile :-) Well done guys!
  • 1 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-02-01 22:01:19
    Very nice - it really improved - I still recommend you run it in 32Bit mode :-)
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-01-26 20:13:16
    The soapbox.io team have asked me to do research in their target market (Advertising Agencies and Digital Design Businesses)

    They hope to offer systems to help digital agencies or digital departments in the following areas:
    Digital Asset Management
    Product Development Workflow
    Quality Management
    Individual Performance Management
    Group Performance Management
    Business Automation
    Finance

    In order to establish the needs of the potential target market we are having meetings and sending out the following questionnaire.

    These are the kind of questions I ask. If you want to let the team know of any other needs businesses like yours have, please feel free to do so.

    The questions below are also here in a Q&A forum

    Questions:
    • What would make your business really fly?
    • What hurts?
    • What is impossible right now - but if it were possible - it would change everything?
    • How do you know your products are effective?
    • Do you maintain the products you build?
    • What development services do you offer in-house?
    • How are you managing version control?
    • How are you doing deployment?
    • Do your products easily integrate and expand?
    • Are your front and back ends interwoven?
    • What do you do for mobile?
    • What do you do for desktop/laptop?
    • What would the ideal backend look like for you?
    • Do you have metrics in your systems or do you rely on extenal party?
    • Where do you host your solutions?
    • Do you provide API's
    • How do you do project documentation?
    • Are your best practices automated or policy driven?

    Please share your ideas?

    Regards,

    Andre Venter
  • 0 plusses - 0 comments - 1 shares | Read in G+
  • Andre Venter2012-01-26 18:32:03
    What a lovely OpenSource alternative to StackOverflow.

    I like it for in-house teams :-)
    http://bitnami.org/stack/osqa
  • 3 plusses - 0 comments - 2 shares | Read in G+
  • Andre Venter2012-01-26 08:59:34
    How do you make software that clearly express the nature of the business?

    But without significant investment in programming?

    Is software creation by configuration the answer? What do you use to satisfy you business needs for software in this way?
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-01-26 08:55:41
    Do you agree: "If you could get the (client) boss(es) to understand JUST ONE THING what would it be? It would be that software development is not a commodity."

    But isn't it already well on it's way?

    What products do you use that allow you to create software solutions for your boss or client, without the "messy" development cycles?
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-01-26 06:53:00
    Are you developing apps/sites today?

    Where is the PAIN?

    What will make it all BETTER? -- even if you think its impossible to achieve :-)
  • 0 plusses - 15 comments - 0 shares | Read in G+
  • Andre Venter2012-01-24 09:33:13
    1801 - Joseph Marie Jacquard uses punch cards to instruct a loom to weave "hello, world" into a tapestry. Redditers of the time are not impressed due to the lack of tail call recursion, concurrency, or proper capitalization. 1842 - Ada Lovelace writes the first program.
    http://pulse.me/s/4g5Uf
  • 1 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-01-20 18:42:15
    RESHARE:


    Reshared text:
    Have you worked with Google AppEngine/Java?

    +Cheers is looking for an AppEngine/Java developer to help us build the backend for our mobile application targeted at posting things you love, chee.rs. We built the app as a hybrid web/native application, so getting HTML down to the client efficiently is an important part of the job. There's also a lot of orchestration of interaction with external services like Facebook, Twitter, and Foursquare.

    The app is currently in a very vibrant private beta, but we're going to be opening it up to the public soon.

    We work remotely and have people in California and Calgary, Alberta. If you know someone who might be a good fit for this, please reshare!
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2012-01-19 07:40:23
    RESHARE:


    Reshared text:
    really should go to gym but it closes way to early.
  • 0 plusses - 1 comments - 0 shares | Read in G+
  • Andre Venter2012-01-18 16:56:22
    "Lean Startup" - If you are trying to follow the Lean Startup principles - http://theleanstartup.com/principles in your business development, we have a lot in common.

    I have just seen a new startup make all the mistakes the Lean Startup approach warns against.

    I would really like to exchange "lessons learned"

    Let's chat :-)
  • 0 plusses - 12 comments - 1 shares | Read in G+
  • Andre Venter2011-12-31 18:35:11
    fuelphp -- is somewhere between CodeIgniter and Symfony. It's great to see such innovative efforts in the PHP community :-)
  • 1 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2011-12-26 16:51:52
    If you are using Google’s Closure, please ping me :-)

    I would love to know the scale of the applications built using Google’s Closure Tools, Framework, Templates, Plovr, etc.
  • 0 plusses - 2 comments - 0 shares | Read in G+
  • Andre Venter2011-12-24 08:59:25
  • 1 plusses - 0 comments - 2 shares | Read in G+
  • Andre Venter2011-12-23 17:34:43
    Happy holidays everyone :-)
  • 2 plusses - 2 comments - 0 shares | Read in G+
  • Andre Venter2011-12-10 21:52:10
    RESHARE:


    Reshared text:
    TweetDeck get major overhaul, moves from Adobe AIR to HTML5. Tips from Twitter on how to get started with the re-designed completely web-based framework version of TweetDeck.
  • 0 plusses - 2 comments - 1 shares | Read in G+
  • Andre Venter2011-12-10 13:11:33
    Sandton is suffering "shopping mania"
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2011-12-06 14:38:39
    It's 1pm. You're still in bed, having already muttered some lame excuse to your boss as to why you aren't in to work today, chugged a liter of water, ...
    http://pulse.me/s/3MAu0
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2011-12-05 06:07:56
    andre venter (@thinkadoo) has shared a Tweet with you:

    "ginatrapani: "What do you want for Christmas?" "The ability to disagree with the premise of that question without being dismissed as a killjoy.""
    --http://twitter.com/ginatrapani/status/143519612787634176
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2011-12-02 08:33:28
    How was your week?
  • 0 plusses - 7 comments - 0 shares | Read in G+
  • Andre Venter2011-12-02 07:22:01
    Part of Bob Scheme is "BareVM" – a C++ implementation of the Bob virtual machine. After completing the Bob implementation in Python (including a VM), it was important for me to also re-implement the VM part in a lower language like C and C++, for a number of reasons:
    http://pulse.me/s/3FCpf
  • 0 plusses - 0 comments - 0 shares | Read in G+
  • Andre Venter2011-12-01 07:06:18
    If you have any decently modern Android phone, everything you do is being recorded by hidden software lurking inside. It even circumvents web encrypti...
    http://pulse.me/s/3DsqQ
  • 1 plusses - 2 comments - 0 shares | Read in G+
  • Andre Venter2011-12-01 06:58:04
    What a lovely day :-)
  • 1 plusses - 0 comments - 0 shares | Read in G+