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 ... 8 9 [10] 11 12 ... 41
136
Miscellaneous / Re: General Note to my Omnimaga/Facebook friends
« on: September 29, 2011, 10:45:18 pm »
* cooliojazz decides to go poke Netham45 next time he's up near there (Tehe)

137
Web Programming and Design / Re: Making a webcomic: "dynamic hyperlinks"
« on: September 22, 2011, 01:24:07 pm »
I like x10, ive been using them for a good few years.  or just beg juju.  thats normally pretty good too :P If you want, i can show you a stripped down version of Frameless Comic to show you an example of how to store everything in a mysql db and some other features =)

EDIT:  Ssomehow i guess i didnt refresh the page.  somehow.  There needs to be a notifier for that too :P Also Eeems, idk, I learned php and mysql at the same time, it wasnt bad, only downsied is that i basically think of mysql as an extensioin of php, not its own thing XD

138
Web Programming and Design / Re: Making a webcomic: "dynamic hyperlinks"
« on: September 21, 2011, 02:15:39 pm »
well, it would be one file, "index.php" which you can pass different arguments for the page numbers.  That code just takes the argument and outputs buttons linking to the right page, so you don't really "name" them, other than the one main file, which is probably going to be index.php.  Does that make sense and answer the question?
Darn you ninjas!!! But yes, also what Eeems said =P

139
Web Programming and Design / Re: Making a webcomic: "dynamic hyperlinks"
« on: September 20, 2011, 11:12:08 pm »
Code: (php) [Select]
<?php $cur $_GET[&#39;p&#39;]; ?>
<a href="/?p=<?php echo $cur 1?>"><img src="thebestprevbuttonever"></a><a href="/?p=<?php echo $cur 1?>"><img src="thebestnextbuttonever"></a>
This would show two buttons, one linking to the previous comic, one linking to the next. (You could also add something like changing "$cur - 1" to "$cur > 0 ? $cur - 1 : 0" and "$cur + 1" to "$cur < $max ? $cur + 1 : $max" for safety as long as you always changed $max to the current comic number)  Need anything else?

140
Computer Programming / Re: html execution in javascript?
« on: August 05, 2011, 09:25:57 pm »
np :) Glad it worked for what you needed :)

141
Computer Programming / Re: html execution in javascript?
« on: August 05, 2011, 03:43:15 pm »
See, that's what i get for just writing code without actually trying it =P Try this:
Code: [Select]
<div id="chrome">You have chrome!</div>
<div id="nochrome">You don't have chrome =\</div>
<script type="text/javascript">
    if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) {
        document.body.removeChild(document.getElementById("nochrome"));
    } else {
        document.body.removeChild(document.getElementById("chrome"));
    }
</script>

142
Computer Programming / Re: html execution in javascript?
« on: August 05, 2011, 11:56:58 am »
Sorry, didn't exactly read the last post :P Try this...
Code: [Select]
<div id="chrome">You have chrome!</div>
<div id="nochrome">You don't have chrome =\</div>
<script type="text/javascript">
    if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) {
        document.removeChild(document.getElementById("nochrome"));
    } else {
        document.removeChild(document.getElementById("chrome"));
    }
</script>

143
Computer Programming / Re: html execution in javascript?
« on: August 05, 2011, 09:19:49 am »
Try changing that to detection.php ;)

144
Computer Programming / Re: html execution in javascript?
« on: August 04, 2011, 11:56:16 pm »
You could use php...
Code: [Select]
<html>
<body>
<?php if (strpos(strtolower($_SERVER[&#39;HTTP_USER_AGENT&#39;]), "chrome") > -1) { ?>
<!-- Chrome html here -->
<?php } else { ?>
<!-- Display error! -->
<?php ?>
</body>
</html

145
TI Z80 / Re: TFE
« on: July 29, 2011, 06:11:00 pm »
Okay newer version (1.4), I added things like moving selections, a token list, and quite a few random bug fixes (Error: NullPointerException is my favorite thing ever! =P)
I even have a screenshot, cause I know how much you guys love ss =P

Updated info list:

For the pic editor:
press p for painting mode
press s for selection mode
press m for moving mode
press ctrl-g to toggle grid

In general:
obviously ctrl-(xcz) for cut/copy/paste in anything

Also, I forgot to mention, the program is the first one i could find in the forums, some doodlejump clone by somebody =P

146
That's just... sad... And nice Quigibo XD

147
TI Z80 / Re: Croquette IDE
« on: July 29, 2011, 03:21:08 pm »
No, you might be thinking of the old one, which sucked.  The new one probably has like 5 replies ;)  And it's a jar, nice-n multi platform, that was the point of it being java XD

148
TI Z80 / Re: Croquette IDE
« on: July 29, 2011, 03:09:52 pm »
Sigh, another project which does almost as much as mine, but gets 100x more attention... D: It looks pretty good so far though... :)

149
Computer Projects and Ideas / Re: Random Java Libs
« on: July 29, 2011, 03:04:45 pm »
Well, I guess I'm not exactly sure what you're asking, but as far as I can tell, thats how you would do it without a "nameless" class
Code: [Select]
import jirc.*;

class myJIRC extends JIRC {

     myJIRC(String server, String nickname, String realname) {
          super(server, nickname, realname);
     }

     protected void onConnect() {
          //Event stuff!
          joinChannel("IRP"); //Join channel #IRP at startup!
     }
     //etc etc
}
So if that's not it, I'm not really sure what you're asking... =P

150
Computer Projects and Ideas / Re: Random Java Libs
« on: July 24, 2011, 08:24:00 pm »
Yeah, but potentially, I was going to put quite a few libs in that one post, and with many examples, I just wanted to collapse them... Meh, w/e, it works =P Glad you like it though!  See anything you think it needs?

Pages: 1 ... 8 9 [10] 11 12 ... 41