software-distribution

iOS 4: wireless app distribution for in-house applications [closed]

烈酒焚心 提交于 2019-11-27 10:06:45
According to the apple website iOS 4 should support wireless app distribution. I have been unable to find any documentation at all on how to host your applications for users to download them over wifi/3g. We are currently enrolled in the standard iPhone dev program, as we don't have over 500 employees. Is this limited feature limited to the enterprise program only? If you don't have an entreprise account. You won't have the unlimited or very large pool of devices you can add to your account distribution profiles. BUT, even with normal accounts you can definitely create an Ad Hoc distribution

Online Software Tracking Software [closed]

孤者浪人 提交于 2019-11-27 07:52:28
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I am looking for a good development tool that will help me track revisions of software I am creating, and that is web based. Just looking for suggestions on what others use. And not one that is hosted through another solution but that I can host myself. 回答1: http://github.com/ (git), http://bitbucket.org/

Distributing Ruby/Python desktop apps

一世执手 提交于 2019-11-26 22:54:47
问题 Is there any way besides Shoes to develop and distribute cross-platform GUI desktop applications written in Ruby? I come to believe that general bugginess of _why's applications is exceptionally crippling in case of Shoes, and anything more complex than a two-button form is a pain to maintain. RubyGTK, wxRuby, etc seem to be promising, but they do not solve the issue of distributing an app in a way that doesn't require Ruby pre-installed on users' computers — and libraries like ruby2exe seem

When and when-not to install into the GAC?

こ雲淡風輕ζ 提交于 2019-11-26 18:34:36
When should you install into the GAC and when should you not? (I am referring, really, to installing on a client's machine when they have purchased our product(s)). I have an assembly that is only going to be used with my one application (GAC or no-GAC)? I have an assembly that all my applications share (GAC or no-GAC)? All my applications may use different versions of my assembly (GAC or no-GAC)? These are three scenarios... but I am sure there are more. I'm not necessarily looking an answer to only these three questions. Similar question: What are the advantages and disadvantages of using

setup_requires with Cython?

纵然是瞬间 提交于 2019-11-26 16:27:13
问题 I'm creating a setup.py file for a project with some Cython extension modules. I've already gotten this to work: from setuptools import setup, Extension from Cython.Build import cythonize setup( name=..., ..., ext_modules=cythonize([ ... ]), ) This installs fine. However, this assumes Cython is installed. What if it's not installed? I understand this is what the setup_requires parameter is for: from setuptools import setup, Extension from Cython.Build import cythonize setup( name=..., ...,

iOS 4: wireless app distribution for in-house applications [closed]

人走茶凉 提交于 2019-11-26 15:06:23
问题 According to the apple website iOS 4 should support wireless app distribution. I have been unable to find any documentation at all on how to host your applications for users to download them over wifi/3g. We are currently enrolled in the standard iPhone dev program, as we don't have over 500 employees. Is this limited feature limited to the enterprise program only? 回答1: If you don't have an entreprise account. You won't have the unlimited or very large pool of devices you can add to your

How do you protect your software from illegal distribution? [closed]

余生颓废 提交于 2019-11-26 14:03:17
I am curious about how do you protect your software against cracking, hacking etc. Do you employ some kind of serial number check? Hardware keys? Do you use any third-party solutions? How do you go about solving licensing issues? (e.g. managing floating licenses) EDIT: I'm not talking any open source, but strictly commercial software distribution... There are many, many, many protections available. The key is: Assessing your target audience, and what they're willing to put up with Understanding your audience's desire to play with no pay Assessing the amount someone is willing to put forth to

Process to convert simple Python script into Windows executable [duplicate]

北慕城南 提交于 2019-11-26 12:42:11
This question already has an answer here: Create a single executable from a Python project 2 answers I wrote a script that will help a Windows user in her daily life. I want to simply send her the .exe and not ask her to install python, dlls or have to deal with any additional files. I've read plenty of the stackoverflow entries regarding compiling Python scripts into executable files. I am a bit confused as there are many options but some seem dated (no updates since 2008) and none were simple enough for me not to be asking this right now after a few hours spent on this. I'm hoping there's a

Embed a JRE in a Windows executable?

筅森魡賤 提交于 2019-11-26 11:41:36
Suppose I want to distribute a Java application. Suppose I want to distribute it as a single executable. I could easily build a .jar with both the application and all its external dependencies in a single file (with some Ant hacking). Now suppose I want to distribute it as an .exe file on Windows. That's easy enough, given the nice tools out there (such as Launch4j and the likes). But suppose now that I also don't want to depend on the end user having the right JRE (or any JRE at all for that matter) installed. I want to distribute a JRE with my app, and my app should run on this JRE. It's

Post-install script with Python setuptools

别说谁变了你拦得住时间么 提交于 2019-11-26 07:32:50
Is it possible to specify a post-install Python script file as part of the setuptools setup.py file so that a user can run the command: python setup.py install on a local project file archive, or pip install <name> for a PyPI project and the script will be run at the completion of the standard setuptools install? I am looking to perform post-install tasks that can be coded in a single Python script file (e.g. deliver a custom post-install message to the user, pull additional data files from a different remote source repository). I came across this SO answer from several years ago that