The one and only signature creation thread

I'll give it a bash sometime tomorrow probably. I'm in the middle of writing a chapter of my book, so I don't want to get side tracked. :p

If I forget bump the thread and I'll get on to it assuming no one else does!
 
Going in google there's quite a few images.

http://www.highdots.com/static/csharp-code-export/images/start-2.png

Will something like that be ok as a base for the text?

Just so I know. Obviously I'll only take a snipet of the code.

*EDIT*

http://jbjournals.files.wordpress.com/2009/08/code.jpg that too
Let make it C for extra cool internetz points
PHP:
int main(void) {
   int sockfd, new_sockfd;  // Listen on sock_fd, new connection on new_fd
   struct sockaddr_in host_addr, client_addr;  
   socklen_t sin_size;
   int recv_length=1, yes=1;
   char buffer[1024];
   if ((sockfd = socket(PF_INET, SOCK_STREAM, 0)) == -1) 
      fatal("in socket");

   host_addr.sin_family = AF_INET;    
  host_addr.sin_port = htons(PORT);  
  host_addr.sin_addr.s_addr = 0; // Automatically fill with my IP. 
  memset(&(host_addr.sin_zero), '\0', 8); // Zero the rest 
  if (bind(sockfd, (struct sockaddr *)&host_addr, sizeof(struct sockaddr)) == -1) 
    fatal("binding to socket"); 
  if (listen(sockfd, 5) == -1)  
    fatal("listening on socket");
 
Hi dangerstat.

I've knocked up a basic templates with a couple of text types.

Let me know what you want changed, added and taken away and I'll get on it when I can. This time it probably will be tomorrow though. :p

danger1.jpg


danger2.jpg
 
if you are writing a email just copy the url of the sig and add it, your email client should handle images similar to here wuth tags

[B][url]http://i582.photobucket.com/albums/ss268/Th3don/toonmadth3d0nsig5.jpg[/url][/B][/QUOTE]

still isnt working just comes up with the link instead of showing the image

[IMG]http://i582.photobucket.com/albums/ss268/Th3don/Untitled.jpg
 
thedon, I'm not really clear on what you mean.

Do you mean:

A: Someone clicks on your signature on *THIS* forum, and it opens up *THEIR* mail client so they can mail you.

OR.

B: You have outlook express (or whatever) and want to add that signature to the bottom of each email that you send?
 
Back
Top Bottom