11
votes
9answers
2k views
Algorithm to find two points furthest away from each other
Im looking for an algorithm to be used in a racing game Im making. The map/level/track is randomly generated so I need to find two locations, start and goal, that makes use of the most of the map.
…
8
votes
5answers
598 views
How do I render thick 2D lines as polygons?
I have a path made up of a list of 2D points. I want to turn these into a strip of triangles in order to render a textured line with a specified thickness (and other such things). So essentially the …
8
votes
3answers
4k views
server.mappath(”.”), server.mappath(”~”), server.mappath(@”\”), server.mappath(”/”). What is the difference?
Can anyone explain the difference between Server.MapPath("."), Server.MapPath("~"), Server.MapPath(@"\") and Server.MapPath("/")?
7
votes
3answers
385 views
How do I join two paths in C#?
I searched StackOverflow for the title of this question, but I didn't find anything ... so, how do I join two file paths ?
7
votes
4answers
534 views
Pathfinding 2d java game?
Hi all,
First time on StackOverflow, keep see it coming up so thought id ask.
Im currently writing a very basic java game based on the idea of theme hospital.
I'm quite new to java, currently …
7
votes
10answers
1k views
Test if executable exists in Python?
In python, is there a portable and simple way to test if an executable program exists?
By simple I mean something like the 'which' command which would be just perfect. I don't want to search PATH …
7
votes
1answer
574 views
Getting absolute path of a file
How can I convert a relative path to an absolute path in C on Unix?
Is there a convenient system function for this?
On Windows there is a GetFullPathName function that does the job, but I didn't find …
7
votes
11answers
5k views
How do I get the full path to a Perl script that is executing?
I have Perl script and need to determine the full path and filename of the script during execution. I discovered that depending on how you call the script $0 varies and sometimes contains the …
6
votes
5answers
275 views
Source file organisation
I am having a bit of trouble organising my source files.
I have my own small, but growing collection of code that I would like to use in various projects. The file and folder layout is something like …
6
votes
6answers
770 views
Is there a way to set the environment path programatically in C++ on Windows?
Is there a way to set the global windows path environment variable programatically (C++)?
As far as I can see, putenv sets it only for the current application.
Changing directly in the registry …
6
votes
4answers
8k views
How to Extract Current URL in jQuery
Dear all
I am using JQuery, i have little doubt of How to extract the Path of current,
if Url is
http://localhost/menuname.de?foo=bar&number=0"
How assign it to a variable, of current …
6
votes
4answers
3k views
C# Sanitize File Name
I recently have been moving a bunch of MP3s from various locations into a repository. I had been constructing the new file names using the ID3 tags (thanks, TagLib-Sharp!), and I noticed that I was …
6
votes
6answers
7k views
How to trim illegal characters from path and filenames?
I need a robust and simple way to remove illegal path and file characters from a simple string. I've used the below code but it doesn't seem to do anything, what am i missing?
using System;
using …
6
votes
7answers
3k views
Setting environment variables in OS X?
What is the proper way to modify environment variables like PATH in OS X? I've looked on google a little bit and found 3 different files to edit:
/etc/paths
~/.profile
~/.tcshrc
I don't even have …
5
votes
3answers
71 views
Is there a version of os.getcwd() that doesn’t dereference symlinks?
I have a Python script that I run from a symlinked directory, and I call os.getcwd() in it, expecting to get the symlinked path I ran it from. Instead it gives me the "real" path, and in this case …
