1
vote
5answers
113 views
How can I construct OS-independent file paths in Perl?
I need to construct a file path inside a Perl script. Which path separator should I use to allow my script to work on both Windows and Unix?
Keep in mind that Windows needs a drive letter.
2
votes
4answers
61 views
Rscript: Determine path of the executing script
I have a script called foo.R that includes another script other.R, which is in the same directory:
#!/usr/bin/env Rscript
print("Hello")
source("other.R")
But I want R to find that other.R no …
0
votes
1answer
30 views
notepad++ insert time and date, and the directory path
I just downloaded np++ v 5.3.1 and I'm having two problems with the TextFX plugin:
1) I recorded a macro with "TextFX Insert" > Date & Time (no matter whether short or long format) and, after I …
1
vote
3answers
36 views
find the filename from a string with php
public/images/portfolio/i-vis/1.jpg
How could i remove all the path regardless of what the filename is using php?
1
vote
8answers
110 views
How was a URL like http://stackoverflow.com/posts/1807421/edit created in PHP?
When you edit a question on stackoverflow.com, you will be redirected to a URL like this:
http://stackoverflow.com/posts/1807421/edit
But usually, it should be
…
0
votes
2answers
20 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 GeneralPath();
…
0
votes
3answers
58 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, Django still says Python …
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
0
votes
3answers
98 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 pops up in the second …
1
vote
5answers
45 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;
border-style: …
0
votes
1answer
81 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 parent. Then, I …
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.e all modules …
3
votes
3answers
51 views
Choosing a Path for Python File Access
One of the features of my project is to allow users to create their own little .txt file, put it somewhere on their HDD, which can then be used as criteria for a part of my application.
Is there a …
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?
0
votes
2answers
53 views
jquery - check if string begins with something?
I know that I can do like ^= to see if an id starts with something, and I tried using that for this, but it didn't work... Basically, I'm retrieving the url and I want to set a class for an element …
