0
votes
1answer
16 views
SVG Elliptical Arcs with Java
I recently wrote a java program transforming a SVG document to HTML/Canvas: It was easy to translate a path such as
d="M 0 0 L 100 100 z"
to something like
GeneralPath L= new …
0
votes
5answers
88 views
iPhone table view - problem with indexPath.row
I'm using indexPath.row do determine in which row of my tableview I do something. The title of my cells is containing a number which should be 1 in the first row and 18 in the last …
1
vote
2answers
494 views
C#/.NET Server Path to default/index page
In my attempt to further future-proof a project I am trying to find the best way to retrieve the full path and filename of the index/default page in a web directory using C# and wi …
0
votes
3answers
49 views
Point Django at different Python version
Django application requires a later version of Python. I just installed it to 2.5 (from 2.4) and now when I do a python at the command line, it says 2.5.2.
Having said that, Djan …
1
vote
2answers
526 views
What are the Conventional GEM PATHS for Ruby under OS X 10.5?
I have a performance problem with my ruby on my machine, which I think I have isolated to loading libraries (when #require is called), so I'm trying to work out whether ruby is sea …
0
votes
0answers
15 views
Mac File Name Conversion
I'm looking for the officially sanctioned algorithm to convert from mac
FSSpec to a HFS full path name (ie: one with colons) that includes the volume.
Preferably expressed in C
2
votes
6answers
247 views
Running programs easily from a command line on Windows
Linux allows me to have a short system path by placing binaries in just a few locations. I don't have to edit the path because I just installed a new application, and I don't have …
1
vote
7answers
1k views
How do I get the complete virtual path of an ASP.NET application
How do I know the the complete virtual path that my application is currently hosted? For example:
http://www.mysite.com/myApp
or
http://www.mysite.com/myApp/mySubApp
I know t …
0
votes
3answers
96 views
How do you find the fully qualified path name of a file?
On Windows, you can go to "Run," type in "cmd," press enter, and start up "C:\Windows\system32\cmd.exe" rather easily. The same is true for "python" or "pythonw" (though nothing po …
3
votes
3answers
105 views
C#/.NET app doesn’t recognize Environment Var Change (PATH)
In my C# app, I am programmatically installing an Oracle client if one is not present, which requires adding a dir to the PATH system environment variable. This all works fine, bu …
1
vote
5answers
44 views
Module import path
I'm unable to test-run a cssparser that I'd like to use.
test.py:
from css.parse import parse
data = """
em {
padding: 2px;
margin: 1em;
border-width: medium;
…
0
votes
4answers
25 views
Restricting file/folder write to paths other then the specified root
In .NET is there any API that allows me to restrict some IO operations to the specified path?
For example:
Root Path: C:\Test\
Now I want to call a function like this:
IO.Di …
0
votes
1answer
80 views
Java Path compression
Hi, I have to create a method find that would use a local Set to collect the objects and the root. Then, I would compress the object e (in the parameter) and have the roost as its …
0
votes
2answers
31 views
Module import error using IDLE
I'm an absolute beginner using IDLE (Python 2.6.4) to learn the basics. I recently found a Python program that I want to run but it throws an error although the code looks fine (i. …
0
votes
1answer
28 views
How to set output path in a Qt project
After building, Qt Creator puts my output exe in folder "Debug". I want to change the output folder by adding output path to the .pro file. Any idea?
