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 - BlakPilar

Pages: 1 ... 41 42 [43] 44 45 ... 49
631
Computer Programming / Re: making an applet work
« on: August 07, 2011, 11:41:40 pm »
I think I read somewhere that 1.4 or 1.5 is the most common version of Java installed, but I'm not sure if that would help.

632
Computer Programming / Re: making an applet work
« on: August 07, 2011, 11:24:32 pm »
Version "1.6.0_21".

I just figured that since the console said that there was an unsupported class version error, it had something to do with the version. Guess my thinking is flawed, or the console is spewing out randomness.

EDIT: Snake, doesn't run in IE9, either.

633
Computer Programming / Re: making an applet work
« on: August 07, 2011, 11:18:09 pm »
edit: Blak, i dont think that has anything to do with it.
Code: [Select]
java.lang.UnsupportedClassVersionError: moonPhases : Unsupported major.minor version 51.0
Are you sure?

634
Computer Programming / Re: making an applet work
« on: August 07, 2011, 11:14:51 pm »
What version of Java is your app targeting?

635
Computer Programming / Re: html execution in javascript?
« on: August 05, 2011, 01:49:51 pm »
it outputs this in chrome and firefox:

You have chrome!
You don't have chrome =\

:(
Here's some browser information to help you refine your check :)

636
Computer Programming / Re: html execution in javascript?
« on: August 04, 2011, 11:57:32 pm »
Guys, don't you only need to use the CDATA tag when the page is in XHTML?

637
Computer Programming / Re: html execution in javascript?
« on: August 04, 2011, 09:27:37 pm »
err, what is CDATA? I'm (VERY) new to javascript to be honest. I wanted to learn enough just to make this work. Also what is DOM?
CDATA stands for character data, but it allows non-XHTML pages to have actual JavaScript between the script tags, like you have. See here for more detail. (What I said might not make sense, so you might just want to look at the link.)

DOM stands for Document Object Model, for info look here. (Unless someone wants to explain >.>)

638
Computer Programming / Re: html execution in javascript?
« on: August 04, 2011, 09:14:35 pm »
Well, calcdude beat me over the fence (congrats if you get the reference). Like he said, writing HTML directly in JS is a no-no. You need to put it inside of quotes in a document.write().

EDIT: Doing a quick test in DW, this works:
Code: [Select]
<script language="javascript" type="text/javascript">
var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
if (is_chrome === true)
  {
     document.write("<p>this is HTML</p><p> all fancy shmancy html code goes here.</p>");
  }
else
  {
     document.write("get chrome!");
  }
</script>

639
Other / Web Hosting Questions
« on: August 03, 2011, 05:33:55 pm »
 I just have some questions about web hosting (in case you couldn't tell by the title ;)).
  • If a host supports MySQL, does that necessarily mean they support ASPX as well?
  • If the host says "unlimited domains," does that mean one could have hai1.com, hai2.com, etc. and hosting for each domain?
  • Who's the best hoster for having both a personal and a semi-public* site? (FatCow, iPage, HostGator,etc.)

*Two sites (at least). The personal would just be for family and friends, and the semi-public would be advertised.

640
I can do this 'cause I've compiled ISO, IMG and other OS files. I also know a little programming.
ISOs and IMGs are disk-images, you can't just throw them on a calculator and expect them to work. To make something like what you want, you need to know more than "a little programming". :|

Then I'll just create something similar to z80...
Not as easy as it sounds. You would need to create an entire interpreter specifically for z80 (or "something similar"). (If that came out wrong, I know what I meant and that's all that matters :P)

Also, imo, it would be easier to write your own Linux-based OS for the calculator than stripping down an existing one; that is, if you could even get this to work.

641
Other / Re: Unlimited Detail!
« on: August 03, 2011, 10:33:22 am »
I think it's possible.

642
Miscellaneous / Re: Tutorial Request Thread
« on: August 02, 2011, 08:45:37 pm »
Actually um... Nevermind lol. I just made my own pure BASIC tilemapper, so I guess I could possibly contribute to the tutorials section >.>

643
Miscellaneous / Re: Tutorial Request Thread
« on: August 02, 2011, 08:17:21 pm »
I'm thinking maybe I should write a tutorial on using 4 lvl greyscale with xLib/Celtic III/DCS7 in BASIC. Nitacku's renderer sets up the graphics well enough, but it took me a lot of time and effort to get a good looking fullscreen 4 lvl tilemapper in Hybrid BASIC.

I'm just wondering if enough people still use these libs to make writing the tutorial worth it.
I still use Celtic III, if that counts lol.

Also...
With the new tutorial section coming up...
What's meant by "new tutorial section"? I though that's what the Tutorials link in the menu was for?

644
Miscellaneous / Re: Tutorial Request Thread
« on: August 02, 2011, 06:06:28 pm »
^You mean for TI-BASIC?  I could get around to that someday.  (Maybe.)
Yeah, sorry, for BASIC.

645
Miscellaneous / Re: Tutorial Request Thread
« on: August 02, 2011, 05:51:24 pm »
A tutorial for tilemapping on the homescreen would be nice. (Unless one that has eluded my searching already exists.)

EDIT: For pure BASIC, not Axe or ASM.

Pages: 1 ... 41 42 [43] 44 45 ... 49