Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

57
votes
6answers
28k views

LaTeX package to do syntax highlighting of code in various languages

I am looking for a LaTeX package that does syntax highlighting on code. For example, right now I use the verbatim block to write code: \begin{verbatim} <html> <head> ...
38
votes
7answers
6k views

Standard way to embed version into python package?

Is there a standard way to associate version string with a python package in such way that I could do the following? import foo print foo.version I would imagine there's some way to retrieve that ...
32
votes
14answers
3k views

Why do people use tarballs?

As a primarily Windows developer, perhaps I'm missing something cultural in the Linux community, but it has always confused me when downloading something that the files are first put into a .tar ...
21
votes
2answers
3k views

MsBuild and MsDeploy with multiple environments

Are there good patterns for mapping solution configurations to environments and using MsDeploy for packaging per environment? Shortest version: Grab this file, and try to change the .msbuild file so ...
21
votes
5answers
6k views

Python: import the containing package

In a module residing inside a package, i have the need to use a function defined within the __init__.py of that package. how can i import the package within the module that resides within the package, ...
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
1answer
364 views

How can I completely delete a package in Perl?

How do you completely delete a package in Perl? This means not only the package variables, but also any magic tables that Perl updates to handle inheritance changes and other things. This simple ...
18
votes
6answers
1k views

Which is your favorite “hidden gem” package on Hackage? [closed]

There are a lot of packages on Hackage, some well known (such as HUnit) and some less known (such as AspectAG). I'm wondering which package you think is a hidden gem that deserves more users. Maybe a ...
16
votes
8answers
11k views

Package renaming in eclipse android project

I have an Android project created in eclipse.I want to modify the package name and application of the project.How to do that in eclipse? Thanks, Dheepak
16
votes
3answers
3k views

msbuild target package not found

I want to package my VS2010 web application project ready for deployment with msdeploy. On development machine I can do this using: MSBuild.exe "C:\path\to\WebApp.csproj" /target:package But on my ...
16
votes
9answers
9k views

Which Eclipse package to download for pydev?

I'm getting started with python, eclipse and pydev. Which Eclipse package should I choose? Nothing on the eclipse homepage tells me what to choose and python documentation assumes I have eclipse ...
15
votes
4answers
4k views

Create cross platform Java SWT Application

I have written a Java GUI using SWT. I package the application using an ANT script (fragment below). <jar destfile="./build/jars/swtgui.jar" filesetmanifest="mergewithoutmain"> ...
15
votes
3answers
2k views

Java packages com and org

What are the meaning of the packages org and com in java?
15
votes
4answers
4k views

How do I create a namespace package in Python?

In Python, a namespace package allows you to spread Python code among several projects. This is useful when you want to release related libraries as separate downloads. For example, with the ...
15
votes
3answers
9k views

How can I make clickable Table of Contents in LaTex?

I need links for Table of Contents, so that I can navigate fast to different sections. I apparently need some package. I tried the package url unsuccessfully.
13
votes
1answer
166 views

What is the benefit of import in a namespace in R?

The namespace mechanism of R allows one to export functions which then are visible to the user. Furthermore, it allows to import functions from other packages. Whereas the benefit of export is ...
12
votes
4answers
378 views

Design approach: Overloading vs Switch?

In regard to performance and scalability in package design, is it best to: … ‘overload’ function names (letting Mathematica sort out which version to use based on patterns/conditions/tests and the ...
12
votes
2answers
219 views

Why does “import module” and then “from package import module” load the module again?

I have a package in my PYTHONPATH that looks something like this: package/ __init__.py module.py print 'Loading module' If I'm running Python from the package/ directory (or writing ...
12
votes
4answers
843 views

what is the convention for word separator in java package names?

How should one separate words in package names? Which of the following are correct? com.stackoverflow.my_package (underscore) com.stackoverflow.my-package (hypens) com.stackoverflow.MyPackage ...
12
votes
1answer
251 views

How can my Haskell program or library find its version number?

I would like my cabalised program to have a --version switch. I would like it to report the same version as is present in the .cabal file. If I have to update the version number separately in my ...
12
votes
3answers
705 views

What are nested/unnested packages in Scala 2.8?

In Scala 2.7, I could write: package com.acme.bar class Bar . package com.acme.foo class Foo { new bar.Bar } This doesn't compile in Scala 2.8 -- however this does: package com.acme ...
12
votes
7answers
996 views

Shipping Closed-Source Application for Linux

What are some methods I can use to ship a closed-source application for linux? At the moment the application links against a few libraries (WxWidgets, GraphcisMagic, Crypto++, etc). Statically ...
12
votes
5answers
4k views

Is there a standard way to list names of Python modules in a package?

Is there a straightforward way to list the names of all modules in a package, without using __all__? For example, given this package: /testpkg /testpkg/__init__.py /testpkg/modulea.py ...
11
votes
2answers
191 views

Package (BPL) Automatic Naming Suffix

I write a lot of components and libraries for Delphi, most of which require the use of BPL Packaging so that they may be installed into the IDE. This is simple enough and works well, right up until ...
11
votes
1answer
251 views

How to develop a package in R?

I have written some functions in R using S4 classes. Now I want to build an R package out of these functions. How should I proceed? Is there anything that I should do differently because I have ...
11
votes
2answers
150 views

What to do with imperfect-but-useful functions?

I could equally have titled this question, "Is it good enough for CRAN?" I have a collection of functions that I've built up for specific tasks. Some of these are convenience functions: # Returns ...
11
votes
1answer
158 views

Python: what does “import” prefer - modules or packages?

Suppose in the current directory there is a file named somecode.py, and a directory named somecode which contains an __init__.py file. Now I run some other Python script from this directory which ...
11
votes
6answers
591 views

How to find all child modules in Python?

While it is fairly trivial in Python to import a "child" module into another module and list its attributes, it becomes slightly more difficult when you want to import all child modules. I'm building ...
10
votes
3answers
191 views

How to deal with a proprietary Python package name conflicting with a public one?

Background The group I work with has been using and developing a Python package, which for the purposes of this question I'll call foobuilder. We serve updates for Linux systems using private RPM and ...
10
votes
4answers
176 views

When should I use Scala's `package` special identifier?

In Scala, you can define package objects. It seems thus that you can access that package object by writing the package name, and then `package`: // file package.scala in src/com package com package ...
10
votes
1answer
259 views

How to properly use functions from other packages in a R package

I am a bit confused about this. I have an R package that has a small function (not a mayor part of the package) in which the principal function of the psych package is called. How do I correctly ...
10
votes
2answers
321 views

where is a good tutorial on creating an R package with C++ source code?

I'm at a loss when I start looking at configure scripts. I'm not sure how to go about creating an R package which has several functions built from C/C++ in such a way that it's portable between ...
9
votes
2answers
118 views

Can I run package.skeleton without parsing functions into separate files?

Is it possible to run package.skeleton('pkgname') and have all of the .R files end up in a single file or set of files rather than one file per function? A developer I am working with asked me why I ...
9
votes
2answers
278 views

Can anyone suggest a good constraint library for Haskell?

I've started learning about Constraint programming and I feel it is something that would work well with Haskell (also I enjoy using Haskell). Are there any mature constraint frameworks for Haskell?
9
votes
1answer
565 views

Organizing Python classes in modules and/or packages

I like the Java convention of having one public class per file, even if there are sometimes good reasons to put more than one public class into a single file. In my case I have alternative ...
8
votes
4answers
173 views

How to manage multiple package locations (folders) in R?

Before I upgrade to R-2.14, I want to take the opportunity to rationalise the folder structure of my installed packages. At the moment I use the R default, i.e. all new installed packages goes to ...
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
1answer
198 views

How should I handle 'helper' functions in an R package?

Background I written an R package, and now a collaborator (recent CS grad who is new to R) is editing and refactoring the code. In the process, he is dividing up my functions into smaller, more ...
8
votes
1answer
228 views

R package and execution time

I have developed a big library of functions in R. For the moment I just load ("source") the functions at the beginning of all my scripts. I have seen that I can create packages. My question is: Will ...
8
votes
2answers
222 views

Multiple packages definition

While browsing the source code of the scala API I met this package definition here : package scala.util.parsing package combinator package syntactical What does that mean ? That the class will be ...
8
votes
10answers
1k views

What is the purpose of defining a package in java file?

i am newbie, and just learned that if i define say package my.first.group.here; ... then the java file that is in this package will be placed under my/first/group/here directory. What is the main ...
8
votes
2answers
3k views

Check if Python Package is installed

what's a good way to check if a package is installed while within a Python script? I know it's easy from the interpreter, but I need to do it within a script. I guess I could check if there's a ...
7
votes
2answers
174 views

What's the difference between a Python module and a Python package?

What's the difference between a Python module and a Python package? See also: What's the difference between "package" and "module" (for other langauges)
7
votes
0answers
89 views

Create new *package* in a Scala Compiler Plugin

In my quest to generate new code in a Scala compiler plugin, I have now created working classes. The next logical step is to put those classes in a new, non-existing package. In Java, a package is ...
7
votes
2answers
114 views

How can I build a Mac package on linux? (BOM file problem)

I'm running a business where we are creating email stationeries for people. We have some Mac users that currently have to download a zip file and manually copy that to their mail stationeries ...
7
votes
5answers
159 views

Is it better to import specific packages or a whole tree with wildcards in java? [closed]

Possible Duplicate: Why is using a wild card with a Java import statement bad? Right now I'm using a lot of java.util packages: import java.util.Calendar; import ...
7
votes
3answers
245 views

Figures (R code execution results) in HTML help pages for a R package

When writing a package in R, you can create the help pages in Rd format and then convert them into HTML pages. If the help page includes the example code, it is printed in Section "Examples". For ...
7
votes
6answers
313 views

OOP question: Calling a subroutine?

I have been thrust into taking over some code but I may be out of my element in figuring this one out. If someone could give me a hint I'd appreciate it. I'm enjoying learning this code but every now ...
7
votes
1answer
832 views

How to modify a homebrew formula?

I installed imagemagick via homebrew. However, due to a bug I have with my current configuration, I need to adjust the compile flags for the formula and reinstall it. How can I accomplish this? ...
7
votes
4answers
418 views

Do python packages (multi-file modules) behave exactly as one big module?

I've just read an article that supposedly introduced me to a new concept: Up to now I was sure that python packages (i.e directories with an __init__.py file) behave exactly the same as java packages, ...

1 2 3 4 5 20