Page 3 of 3 FirstFirst 123
Results 21 to 30 of 36

Thread: Introduction / my efforts

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Administrator Redrobes's Avatar
    Join Date
    Dec 2007
    Location
    England
    Posts
    7,201
    Blog Entries
    8

    Post

    Quote Originally Posted by Sagenlicht View Post
    13 MB
    choke ! Firefox and all its dll's are 13Mb - what have you got in there ?

  2. #2
    Community Leader Facebook Connected Steel General's Avatar
    Join Date
    Jun 2008
    Location
    Ft. Wayne, IN
    Posts
    9,530

    Default

    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.



  3. #3

    Post

    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 07:58 PM.
    My random map generators and GIMP scripts: http://axiscity.hexamon.net/users/isomage/

  4. #4

    Post

    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>

  5. #5
    Guild Journeyer Sagenlicht's Avatar
    Join Date
    Jul 2008
    Location
    Germany
    Posts
    249

    Post

    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.

  6. #6
    Guild Apprentice kensanata's Avatar
    Join Date
    Oct 2007
    Location
    Zürich, Switzerland
    Posts
    43

    Post

    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.)

    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();
    }
    Want a different "sound" for your subsector? Here's an example I tried:

    Code:
    my $digraphs = "fafemalunabararerixevivoine.n.q.pazizozutatetitotu..";
    More variation in name length?

    Code:
      my $length = 4 + rand(7); # 4-8
    Cheers
    Alex

  7. #7

    Default

    Is there an updated link for this? Sorry if it was posted somewhere in the thread.

Page 3 of 3 FirstFirst 123

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •