Here's a comparison of some file hosting services:
http://en.wikipedia.org/wiki/One-cli...-click_hosting
I can't personally vouch for any of them, but I've seen people using mediafire and rapidshare, both of which are free.
I know next to nothing about Python, Perl or PhP but I would think you should be able to compile it into a single executable or at the very least a page and a .dll.
Saying that, my only experience is with ASP.NET so I could be way off base.
My Finished Maps | My Challenge Maps | Still poking around occasionally...
Unless otherwise stated by me in the post, all work is licensed under a Creative Commons Attribution-Noncommercial 3.0 United States License.
Here's a comparison of some file hosting services:
http://en.wikipedia.org/wiki/One-cli...-click_hosting
I can't personally vouch for any of them, but I've seen people using mediafire and rapidshare, both of which are free.
Last edited by isomage; 12-05-2008 at 08:58 PM.
My random map generators and GIMP scripts: http://axiscity.hexamon.net/users/isomage/
In case anyone misses it I have updated my map prettier script for gimp to optionally download a random cave from isomage's website as a base image.
Check my sig for the link.
-Rob A>
My tutorials: Using GIMP to Create an Artistic Regional Map ~ All My Tutorials
My GIMP Scripts: Rotating Brush ~ Gradient from Image ~ Mosaic Tile Helper ~ Random Density Map ~ Subterranean Map Prettier ~ Tapered Stroke Path ~ Random Rotate Floating Layer ~ Batch Image to Pattern ~ Better Seamless Tiles ~ Tile Shuffle ~ Scale Pattern ~ Grid of Guides ~ Fractalize path ~ Label Points
My Maps: Finished Maps ~ Challenge Entries ~ My Portfolio: www.cartocopia.com
A few days ago, I made an overview over all scripts we made for GIMP here.
If you are using GIMP try them out
My Map Challenge Entries
I use GIMP for all my maps.
GIMP scripts and plug-ins overview
Everything I post on this site uses the Creative Common Attribution-Noncommercial-Share Alike license. Only exception to this are any pyhton scripts which use the GPL.
If you are using any of my posted stuff just use your rep stick on me
Should you be interested in using anything I posted on commercial purpose drop me a pm.
I recently investigated the topic of random name generators, and tried to understand what made the Elite name generator "tick". And I think I've found a way. (From a blog post of mine.)
Want a different "sound" for your subsector? Here's an example I tried:Code:my $digraphs = "..lexegezacebisousesarmaindire.aeratenberalavetiedorquanteisrion"; my $max = length($digraphs); sub name { my $length = 5 + rand(5); # 4-8 my $name = ''; while (length($name) < $length) { $name .= substr($digraphs, 2*int(rand($max/2)), 2); } $name =~ s/\.//g; return $name; } for my $n (0..100) { printf "%3d. %s\n", $n, name(); }
More variation in name length?Code:my $digraphs = "fafemalunabararerixevivoine.n.q.pazizozutatetitotu..";
CheersCode:my $length = 4 + rand(7); # 4-8
Alex
Is there an updated link for this? Sorry if it was posted somewhere in the thread.