Anyone using Django in the “Enterprise”

Is this what you’re looking for? http://code.djangoproject.com/wiki/DjangoSuccessStories Or are you looking for this list? https://www.djangosites.org/ Here are Django powered sites in rating order: https://www.djangosites.org/highest-rated/ How about Django sites focused on “business”: https://www.djangosites.org/tag/business/ is that “Enterprise” enough? We do econometric data processing with Django. High volume transactions. Is that “enterprise” enough?

IOS Enterprise Distribution Through OTA

As of December 2011, these are the steps: Create a provisioning profile in your Apple Enterprise account Set this as the Code Signing Identity under the Build setting of your app. Make sure the Bundle ID matches that of the provisioning profile. Select Product > Archive to build IPA file. Click Share (aka Distribute) button … Read more

Should I use Mono on a real project?

I’ve used it for a number of internal and commercial projects with great success. My warnings: Write lots of unit tests and make sure they ALL pass under Mono — this will save you a lot of trouble. Unless you absolutely have to, do NOT use their embedding API. It’s damn easy to use, but … Read more

Good examples of GUI design for business-oriented, heavy data-entry (CRUD) applications [closed]

I don’t have any examples to point to. In truth, many of these screens may be hard to find on the web for the simple fact that most of them tend to be “ugly”. These kinds of screens are rarely pretty. I can offer some tips, from long history working with these things. Consistency. Make … Read more

Method for finding memory leak in large Java heap dumps

It’s almost impossible without some understanding of the underlying code. If you understand the underlying code, then you can better sort the wheat from chaff of the zillion bits of information you are getting in your heap dumps. Also, you can’t know if something is a leak or not without know why the class is … Read more