Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - cooliojazz

Pages: 1 ... 10 11 [12] 13 14 ... 41
166
Computer Programming / Re: IRC Score Bot
« on: May 09, 2011, 08:21:38 pm »
I mean, UBystand has the same functionality, but have you ever seen it running in #omnomaga?  Nope, I only turn it on it #IRP ;)  That sort of thing is just a bit spammy =P

167
Miscellaneous / Re: Trying to start a webcomic
« on: April 24, 2011, 02:18:51 pm »
Well, I already said you could get ahold of me through the ways listed in my profile, but I'll list them here too =P On skype:cooliojazz on msn:[email protected] on gtalk:[email protected] or irc:CoolioJaz

168
Miscellaneous / Re: Trying to start a webcomic
« on: April 24, 2011, 12:53:06 pm »
Freyaday, like I was saying before, that really was just meant to be a basic layout, I assumed you'd tell me hundreds of little things you'd want changed.  Changing the color of things is no big deal... =P Also, I made the inner bg a bit darker, if you don't want it, just say so. You should really get in contact with me btw... *nudge nudge*

169
Introduce Yourself! / Re: Here's a new coder in the family
« on: April 21, 2011, 11:44:00 am »
/steals all peanuts Ma peanuts! =P Anyways, Welcome too Omni! =D

170
Miscellaneous / Re: Trying to start a webcomic
« on: April 20, 2011, 10:35:35 pm »
Well, the base currently would look like http://up.x10.mx/wut/freyaday.php, I have no idea what colors and whatnot you would want though, so it's a bit bland... =P  Also, sizes and positions can all easily be changed.  I just need something to go off of. =D

171
Miscellaneous / Re: Trying to start a webcomic
« on: April 20, 2011, 10:18:45 pm »
Sure, go for it. t's pretty common too,  so you should be able to find quite a few out there that have it that you like =)

172
Miscellaneous / Re: Trying to start a webcomic
« on: April 20, 2011, 10:14:53 pm »
Ahh, well, for just a webcomic, unless you feel like going crazy overboard and adding some things in like a comic forum, all you'll need is http, which is guaranteed, otherwise it wouldn't be a web host, and php, which is probably included in 95% of them. Mysql would be nice if you eventually wanted some more advanced stuff, but not needed. =)

173
Miscellaneous / Re: Trying to start a webcomic
« on: April 20, 2011, 10:07:41 pm »
Technologies? For what parts?

174
Miscellaneous / Re: Trying to start a webcomic
« on: April 20, 2011, 10:02:43 pm »
Yeah, so get in contact with me somehow, like irc or some way listed in my profile and i can probably help you with just about anything you need =)

175
Miscellaneous / Re: Trying to start a webcomic
« on: April 20, 2011, 09:57:14 pm »
Cooliojazz watches his incompetency level slowly rise... Yeah, doubly sorry now. X.x I'd love to help you though... =)

176
Miscellaneous / Re: Trying to start a webcomic
« on: April 20, 2011, 09:36:02 pm »
Quote
domain name suggestions
Would you purchase a domain name or just use .tk or .co.cc?
and possibly the implied question here of if you want a free host or not
This would assume each one is simply (number).jpg, and it has 2 pages, a home page and an about us page.  For a host, if you want a free host, I've been using x10 for a while and I love it. =D
Okay, really, I thouthg there was more or I wouldn't have brought it up, sorry =\

177
Miscellaneous / Re: Trying to start a webcomic
« on: April 20, 2011, 09:30:45 pm »
You'd probably just need to get on irc or something so we could discus it.  Btw, you haven't really answered other people's questions so they can help you =P

178
Miscellaneous / Re: Trying to start a webcomic
« on: April 20, 2011, 09:21:31 pm »
I could help you customize that code to work for your site if you want.  It's a pretty generic setup =D

179
Miscellaneous / Re: Trying to start a webcomic
« on: April 20, 2011, 09:12:59 pm »
(People posting right after makes edits not work :P) Anyways, like I said above X10Hosting is pretty good, and since frameless.com is already taken, if you're shooting for a .com, I would just keep it simple and go with framelesscomic.com.

180
Miscellaneous / Re: Trying to start a webcomic
« on: April 20, 2011, 09:04:10 pm »
Just a simple webcomic interface wouldn't be too hard, you could do something like what I made for a webcomic me and my friend might do at some point eventually:
Code: [Select]
<?php
    $current 
3;
    
$pagenumber $_GET[&#39;p&#39;];
    
$navnumber $_GET[&#39;n&#39;];
    
$imagesrc "";
    if (
$pagenumber) {
$imagesrc "img/$pagenumber.jpg";
$page $pagenumber;
    } else {
$imagesrc "img/$current.jpg";
$page $current;
    }
    if (!
$navnumber) {
$navnumber 1;
    }
?>

<?php
    $current 
3;
    
$pagenumber $_GET[&#39;p&#39;];
    
$navnumber $_GET[&#39;n&#39;];
    
$imagesrc "";
    if (
$pagenumber) {
$imagesrc "img/$pagenumber.jpg";
$page $pagenumber;
    } else {
$imagesrc "img/$current.jpg";
$page $current;
    }
    if (!
$navnumber) {
$navnumber 1;
    }
?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
    <head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
    body {background-image: url("wutbg.png");}
    table {background-color: #163232;}
    p.title {font-size: 40px; font-weight: bold;}
    p.normal {font-size: 20px;}
    p.navbar {font-size: 20px;}
    p.copyright {font-size: 15px;}
    p.tags {font-size: 0px;}
</style>
        <title>¿ʇnʍ Comics</title>
    </head>
    <body>

<table border="0" width="1000" align="center">
    <tr align="center">
<td>
    <table border="0">
<tr>
    <td rowspan="2" width="10%">
<p class="navbar"><a href="?">Home</a></p>
<p class="navbar"><a href="?n=2">About Us</a></p>

    </td>
    <td width="85%">
<p class="title">¿ʇnʍ Comics</p>
<p class="normal">A webcomic of inanity, overmemeage, and non-consummation</p>
<hr>
    </td>
</tr>
<tr align="center">

    <td width="85%">
<?php if($navnumber == 1) { ?>
    <img alt="<?php echo $page?>" width="60%" align="center" src="<?php echo $imagesrc?>">
<?php ?>
<?php if($navnumber == 2) { ?>
    <p class="normal">
Ricky Talbot - (Description)
    </p>

    <p class="normal">
Issac Ross - (Description)
    </p>
<?php ?>
    </td>
</tr>
    </table>
</td>
    </tr>

    <?php if($navnumber == 1) { ?>
<tr>
    <td>
<table border="0" width="100%">
    <tr align="center">
<td width="50%" align="left">
    <a href="?p=1"><img alt="First" src="first.png"></a>
    <a href="?p=<?php echo ($page != 1) ? $page $page?>"><img alt="Previous" src="prev.png"></a>
</td>

<td width="50%" align="right">
    <a href="?p=<?php echo ($page != $current) ? $page $page?>"><img alt="Next" src="next.png"></a>
    <a href="?"><img alt="Last" src="last.png"></a>
</td>
    </tr>
</table>
    </td>
</tr>
    <?php ?>

    <tr align="center">
<td width="100%">
    <p class="copyright">©2011 Unreal Phantasies (Ricky Talbot and Issac Ross)</p>
    <p class="copyright">Site design by Ricky Talbot; Brain aneurysms by Issac </p>
</td>
    </tr

</table>
    </body>
</html>

This would assume each one is simply (number).jpg, and it has 2 pages, a home page and an about us page.  For a host, if you want a fre host, I've been using x10 for a while and I love it. =D

Pages: 1 ... 10 11 [12] 13 14 ... 41