distribution

Help with zc.buildout script to install Satchmo

Im trying to re-create a this satchmo environment using a buildout script: [buildout] parts = django satchmo eggs = pycrypto PIL pyyaml trml2pdf sorl-thumbnail django-registration django-caching-app-plugins django-threaded-multihost django-signals-ahoy django-keyedcache django-livesettings django satchmo Sphinx docutils extensions = ...

General convention for python libraries that also have an interface module?

Right now I've got a project that has the following layout: foo/ __init__.py __main__.py foo.py In this case, foo.py is actually the main api file, so developers are meant to do "from foo import foo", but I also wanted to make it so that end users could just run ~$ foo and get an interface. which, when I do a distutils install,...

Filling an evenly distributed matrix of arrays with PHP

I have an array of objects, containing lists of times. I have to stick this in a Matrix-alike array, in order to put it in a table. This is a part of my earlier SO question on how to build calendar tables $node->sessions = array( 1286452800, // '2010-10-07 14:00:00' 1286460000, // '2010-10-07 16:00:00' ); $node->title = 'Foo'; $node...

iphone Ad Hoc Distribution no appearing in itunes

I have found a problem trying to install an ad hoc distribution on my itunes. 1) I have distribution certificate 2) I have distribution profile 3) I have add entitlements.plist, although from what I read this is no longer required. it looks like the plist does not even have a get-task-allow bool anymore to set. I have tried with adding...

Android: Contributor for Distributing app on android market ??

Hi, as we all see Google was increased his country list on android market on ( 30 countries for selling) and I saw some talks here about this theme , but I did not find quality answer .. My question is there any company or person etc. who make some service for publishing android app on android market from developers from cou...

Distributing a RubyQt app

I've written a simple ruby application with Ruby Qt. I recently read about distutils in python, and now I'm trying to figure out how to do something similar in ruby. I do not need to distribute on any OS besides linux, but I'm trying to figure out the best way to do that. Should I figure out how to build a .deb? If so how do deal with t...

After packaging for ad-hoc distribution, iOS app data persistence doesn't work

I just finished an app that allowed users to store lists of serial numbers in a tableview. The way the app stores the numbers is by storing in an NSMutableDictionary then writing to a persistence plist file. The app ran perfectly fine during testing. However, I just built and packaged the app for ad-hoc distribution, and now when I test...

Obtain a old linux distribution

Is it possible to download load distribution of linux,even the old distributions have kernel 2.6.x.x...i needed a distribution with 2.4 kernel or is it possible to recompile the kernel 2.4 on a distribution with 2.6 kernel..?? ...

Can I update existing apps in the app store if I have rejected my distribution certificate because I lost my private key?

I have done A LOT of looking around on the internet and just cannot find the answer to this question. I lost my private key, and so I have rejected and re-assigned new certificate/key combo, but am having issues submitting app updates to apps signed with the old key with my new key. Is it possible to update an existing app with a newly ...

How to capture video using JMF, but without installing JMF

A videoconferencing project I was working on used JMF to capture video and audio, and transmit it to another endpoint. An issue was that my team didn't want the user of the product to have to install JMF. I thought it might be worthwhile to share our solution to this problem. It works. It works well. My question to you is: does anyone h...

Android application checklist prior to distribution ....

Hi I have just finished debugging my first application and want to publish it. I would like to know if you have a checklist that you use prior to distribution. For instance I have lots of Log.d() commands, must I remove them? I have rotated my screens as much as possible to cause stop/restart failures. These are the types of test I ...