Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

106
votes
11answers
39k views

How do I remove packages installed with Python's easy_install?

Python's easy_install makes installing new packages extremely convenient. However, as far as I can tell, it doesn't implement the other common features of a dependency manager - listing and removing ...
52
votes
12answers
3k views

What do you expect from a package manager for Emacs?

Although several thousand Emacs Lisp libraries exist GNU Emacs does not have an (internal) package manager. I guess that most users would agree that it is currently rather inconvenient to find, ...
40
votes
13answers
3k views

What strategy do you use for package naming in Java projects and why?

I thought about this awhile ago and it recently resurfaced as my shop is doing its first real Java web app. As an intro, I see two main package naming strategies. (To be clear, I'm not referring to ...
39
votes
5answers
17k views

Can you find all classes in a package using reflection?

A beginner question about reflection, I suppose: Is it possible to find all classes or interfaces in a given package? (Quickly looking at e.g. Package, it would seem like no.)
34
votes
5answers
4k views

Painless way to install a new version of R (on Windows)?

Andrew Gelman recently lamented the lack of an easy upgrade process for R (probably more relevant on Windows that Linux). Does anyone have a good trick for doing the upgrade, from installing the ...
22
votes
8answers
3k views

How do YOU manage Perl modules when using a package manager?

A recent question here on SO got me thinking. On most Linux distributions that I tried, some Perl modules would be available through the package manager. Others, of course, not. For quite a while I ...
20
votes
1answer
5k views

How to view hierarchical package structure in Eclipse package explorer

OK I have a feeling I'm doing something that's not "accepted practice" but here's what I would like: in the Eclipse package explorer, I see the following: (dot represents a clickable arrow that I can ...
19
votes
8answers
35k views

Does Android keep the .apk files? if so where?

After android installs an application from the Marketplace, does it keep the .apk file? Is there a standard location where Android would keep such files?
19
votes
11answers
12k views

What is the most compatible way to install python modules on a Mac?

I'm starting to learn python and loving it. I work on a Mac mainly as well as Linux. I'm finding that on Linux (Ubuntu 9.04 mostly) when I install a python module using apt-get it works fine. I can ...
19
votes
5answers
15k views

Package structure for a Java project?

Whats the best practice for setting up package structures in a Java Web Application? How would you setup your src, unit test code, etc?
18
votes
4answers
4k views

Package management for Vim

Emacs 24 looks like it will have a package manager. What package management options are there for Vim?
18
votes
8answers
14k views

What package manager do you prefer for Mac OS X?

I've used DarwinPorts and Fink before. What do you use and why? Or, do you prefer to just build from source?
15
votes
6answers
904 views

Automatically remove explicit package declarations with import statements in Java

I have a project created by others that includes thousands of class files and has the package names explicitly typed out for every reference to any of their classes. It looks like the code was reverse ...
15
votes
10answers
987 views

Most useful ActionScript packages / libraries

What are some useful plug-ins, packages or source-code for ActionScript? Please include ActionScript version, name, link and description.
14
votes
2answers
447 views

R writing style - require vs. ::

OK, we're all familiar with double colon operator in R. Whenever I'm about to write some function, I use require(<pkgname>), but I was always thinking about using :: instead. Using require in ...
14
votes
4answers
1k views

How Do I Document Packages in Java?

In the Java APIs I can see Javadoc comments for packages. How/where do I place Javadoc comments to document a package?
13
votes
6answers
3k views

Are there best practices for (Java) package organisation?

A little while ago, I saw a question answered here regarding the fine-grained organisation of java packages. For example, my.project.util, my.project.factory, my.project.service etc. I can't find it ...
13
votes
1answer
514 views

How do you write your package documentation?

I haven't quite figured out a sensible workflow for building packages and writing their documentation. I want as much of the process (and the documentation) as possible to be automatically generated. ...
13
votes
2answers
6k views

using __init__.py

I am not getting usage scenarios or design goals of python __init__.py in my projects. Assume that I have 'model' directory (refers as a package) which I have kept the following files. 1. ...
13
votes
11answers
793 views

How should I name packages if I don't have a domain associated with me?

So most Java resources when speaking of packages mention a com.yourcompany.project setup. However, I do not work for a company, and don't have a website. Are there any naming conventions that are ...
12
votes
1answer
260 views

How to unload a package without restarting R?

I'd like to unload a package without having to restart R (mostly because restarting R as I try out different, conflicting packages is getting frustrating, but conceivably this could be used in a ...
12
votes
2answers
603 views

What is the difference between require() and library()

I do not manage to figure out the difference between require() and library() when loading a package in R. Do you some hint for me? Thx!
12
votes
8answers
11k views

Actionscript 3 import package.* vs import package.Class

In Actionscript 3, is there any reel overhead between importing a full package versus importing independant classes? E.g.: import flash.display.* vs. import flash.display.Sprite I know it's a good ...
11
votes
6answers
2k views

Python package name conventions

Is there a package naming convention for Python like Java's com.company.actualpackage? Most of the time I see simple, potentially colliding package names like "web". If there is no such convention, ...
11
votes
6answers
3k views

How to import classes defined in __init__.py

I am trying to organize some modules for my own use. I have something like this: lib/ __init__.py settings.py foo/ __init__.py someobject.py bar/ __init__.py somethingelse.py ...
10
votes
1answer
179 views

Shorthand for referring to Perl/Moose package names?

In both Python and Java we have import to eliminate the repetition of fully-qualified package/module names throughout code. Is there any equivalent in Perl/Moose? I think it would really make Moose ...
10
votes
1answer
382 views

How do you use multiple versions of the same R package?

In order to be able to compare two versions of a package, I need to able to choose which version of the package that I load. R's package system is set to by default to overwrite existing packages, so ...
10
votes
3answers
1k views

List all the modules that are part of a python package?

Is there a straightforward way to find all the modules that are part of a python package? I've found this old discussion, which is not really conclusive, but I'd love to have a definite answer before ...
10
votes
4answers
4k views

Check for Ruby Gem availability

Is there a way to check if some gem is currently installed, via the Gem module? From ruby code, not by executing 'gem list'... To clarify - I don't want to load the library. I just want to check if ...
10
votes
8answers
2k views

Why do languages like Java use hierarchical package names, while Python does not?

I haven't done enterprise work in Java, but I often see the reverse-domain-name package naming convention. For example, for a Stack Overflow Java package you'd put your code underneath package ...
9
votes
4answers
409 views

Is use of Java's default package bad style?

Is use of Java's default package bad style?
9
votes
3answers
6k views

Simple statistics - Java packages for calculating mean, standard deviation, etc

Could you please suggest any simple Java statistics packages? I don't necessarily need any of the advanced stuff. I was quite surprised that there does not appear to be a function to calculate the ...
9
votes
2answers
1k views

Is “implicitly imported” always a bad thing in Delphi packages?

Trying to rearrange my packages for a set of TFrame-descendent components, I'm finding it seemingly necessary to break out some of my utility TFrame descendents separate from the dialog forms which ...
9
votes
5answers
1k views

How do I use a Perl package known only in runtime?

I have a Perl program, that needs to use packages (that I also write). Some of those packages are only chosen in Runtime (based on some environment variable). I don't want to put in my code a "use" ...
9
votes
5answers
6k views

How to solve Delphi's [Pascal Fatal Error] F2084 Internal Error: LA33?

I'm really sick of this problem. Google searches always seem to suggest "delete all bpls for the package", "delete all dcus". Sometimes this just-does-not-work. Hopefully I can get some other ideas ...
8
votes
1answer
125 views

Can I compile my R package in bytecode?

Can I compile my R package in bytecode? I have an R package and I want to compile it with R CMD INSTALL --build mypackage.tar.gz but I want the R code to be compiled into bytecode. Is this ...
8
votes
3answers
190 views

Upcoming NAMESPACE, Depends, Imports changes for 2.14.0 (some definitions/use please)

If you are a package author, you are hopefully well aware of upcoming changes in package structure when we move to 2.14 in about a week. One of the changes is that all packages will require a ...
8
votes
2answers
332 views

Is it possible to recompile the DataSnap packages in Delphi XE with a new/different version of Indy?

Okay -- we have an interesting problem. Some background: Our main application uses Indy 10. However, we take the Indy 10 source and fix bugs in it, recompile, and install our own set of Indy ...
8
votes
2answers
161 views

R: Only download sources of a package and all dependencies

I am wondering if there's a way to use install.packages() or other related functions to do the following: only download the sources (i.e. tar.gz files) of the specified packages and all their ...
8
votes
3answers
102 views

R Packages for Limnology

I am wondering if anyone knows of an R package to aid to common limnological calculations. I am specifically interested in calculating the position of the thermocline, sizes of the epi, meta, and ...
8
votes
3answers
461 views

Several groups in RPM package

Is it possible for single rpm package to belong to several groups? In spec file you can set package group: Group: System Environment/Base What I need is to be able to set several groups for ...
8
votes
3answers
210 views

Optimal extended class naming convention?

Which of the following naming conventions is most used/accepted, or which is most optimal for most projects? I'm having a hard time deciding. Base class: \Model Sub class: \Model\User Base class: ...
8
votes
5answers
2k views

Since SQL Server doesn't have packages, what do programmers do to get around it?

I have a SQL Server database that has a huge proliferation of stored procedures. Large numbers of stored procedures are not a problem in my Oracle databases because of the Oracle "package" feature. ...
8
votes
8answers
7k views

java package cycle detection: how to find the specific classes involved?

What tool would you recommend to detect java package cyclic dependencies, knowing that the goal is to list explicitly the specific classes involved in the detected 'across-packages cycle' ? I know ...
7
votes
2answers
240 views

How do you determine from a BPL if it is design time only

We build all our packages to the same output directory. The directory includes both design time and runtime packages. Looking at the resulting BPL's is there a way to determine that a packages is ...
7
votes
1answer
1k views

PLS-00123: program too large (Diana nodes) while trying to compile a package

While compiling a package, I ran into an error message: Error: PLS-00123: program too large (Diana nodes) Line: 1 The package in question has about 1k lines (spec) + 13k lines in body. While ...
7
votes
1answer
514 views

How do I move Delphi XE packages and settings to another user?

We have set up a new (template) development machine with among other things Delphi XE including a large number of third-party and internal packages, and intend to make a number of clones of this ...
7
votes
7answers
332 views

Is there a visualization tool that can inspect a Java code base and report inter-package dependencies?

We have a Java code base that has grown to be too big for a single monolithic JAR (more than 5000 classes). One of the tasks that we are investigating is how much effort would it be to break this ...
7
votes
7answers
346 views

Is having only one class in a package a code smell?

Is it a bad practice to have a package with only one class in it? Would it make more sense just to move the single class to a util package that would contain other random useful classes?
7
votes
2answers
7k views

Python packages - import by class, not file

Say I have the following file structure: app/ app.py controllers/ __init__.py project.py plugin.py If app/controllers/project.py defines a class Project, app.py would import it like ...

1 2 3 4 5 13