app posts page 2

Figuring things out with this phonegap stuff. I will have to post some of what I’ve learned when I have more time. We’re just about to the point that we can submit the app and then make the rest of the changes we have left client side. I’ve never done the submission process. It looks a bit confusing with signing things with certificates / keys and using the clients’ developer accounts. Hopefully it won’t prove too difficult. I remember it taking a while for the iOS store at least and know we had some problems with rejections where we had to resubmit several times. Hopefully we don’t run into that now, especially since we’re on tight deadlines as is.


Library of Babel

Awesome, there is a digital version of the Library of Babel. Everything that you could ever write is in there, with some caveats. Caveats are that:

  • each book is less than or equal to 1,312,000 characters
  • it is in the English alphabet
  • all characters are lowercased
  • all non-alphabet characters removed except the space, period, and comma

Any searches would have to be translated to those specifications.

I found this through Jeremy Keith’s discussion of the anchor / link element.

The writings of Charles Dickens, Adactio, and myself can be found in there, many times over.


Web app manifest, first go

I’ve added a basic web app manifest to my site. I have not experimented with the results, but I did run it through a web manifest validator mostly to success. I used the MDN guide and the HTML5 doctor article for help. I also read some of the in-progress spec, though it seemed more implementer-friendly. The content of my manifest is currently (prettified):

{
    "background_color": "#4e784e"
    ,"display": "browser"
    ,"icons": [
        {
            "sizes": "64x64"
            ,"src": "favicon.gif"
            ,"type": "image\/gif"
        }
    ]
    ,"lang": "en-US"
    ,"name": "Toby Mackenzie\u0027s site"
    ,"scope": "\/"
    ,"short_name": "\u003Ctoby\u003E"
    ,"start_url": "\/"
    ,"theme_color": "#4e784e"
}

I’m just using Symfony’s JsonResponse object to render a PHP array.

This is one more thing that I really shouldn’t’ve put time into until my site is more fleshed out, but it seemed cool and simple to add.