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

Pages: 1 ... 3 4 [5] 6 7 ... 29
61
Other Calc-Related Projects and Ideas / Re: Team Battles
« on: November 20, 2010, 04:57:15 pm »
If there is need of a judge/reviewer I'll be glad to do it...at least for this time ;)
If Ashbad allows it, you can have my spot for judging this one.  I don't really have time right now to judge. ;)
Cool but the decision is, like you pointed out, up to him.

62
Other Calc-Related Projects and Ideas / Re: Team Battles
« on: November 20, 2010, 04:51:32 pm »
Indeed, all the best!

If there is need of a judge/reviewer I'll be glad to do it...at least for this time ;)

63
Other Calc-Related Projects and Ideas / Re: Team Battles
« on: November 20, 2010, 04:18:34 pm »
* ASHBAD_ALVIN has no idea what to do.
* ASHBAD_ALVIN would rather play spore than work out more extensions anyhow
Don't panic!

/End of useless advice

64
Web Programming and Design / Re: My Website - My calculator Projects
« on: November 20, 2010, 04:15:36 pm »
The rounded corners look easy to do in CSS (already made them, will post them later).

I don't like the effect however, I'll probably make a diagonal stripes background too :)
Funny thing, I helped my friend out yesterday to make his page look better. I just created a blue background with a 100x100 dark blue rectangle in the center of it and applied a drop shadow to it. It can be easily done in photoshop and it looks pretty good. If you are going fro stripes dont make them horizontal or vertical it can be rather hyponitizing at times...

65
Other Calc-Related Projects and Ideas / Re: Team Battles
« on: November 20, 2010, 03:52:09 pm »
Sign me up for Basic.

66
TI Z80 / Re: [2.5D project] Baa Baa Blacksheep
« on: November 20, 2010, 02:55:01 pm »
Cool I love flying!!

67
TI-BASIC / Re: [CHALLENGE]Logic and Optimization
« on: November 20, 2010, 02:53:05 pm »
Code: [Select]
:Prompt E,N
:If E=2 and N=1
:Disp "NRML
:If E != 2 or N!=1
:Then
:If E=2 or N=1
:Then
:Disp "ALMST NRML
:Else
:Disp "WEIRD
80bytes, for the first challenge

This is missing two end statements plus it could be optimized to this:
Code: [Select]
Prompt E,N
If N(E=2
Disp "NRML
If E=2 or N=1
Disp "ALMST NRML
If ((N!=1)E!=2
Disp "WEIRD

Yours uses 6 bytes more, and mine is not missing two end statements. It is the end of a program so it does not need them.
I was refering to ScoutDavid's code not yours.
Code: [Select]
Prompt E,N
If N(E=2
Disp "NRML
If E=2 or N=1
Disp "ALMST NRML
If ((N!=1)E!=2
Disp "WEIRD

N(E=2 won't work because if E is 2, and N is 2, it will still say Normal because N*(2=2 is 2, which is true

E=2 or N=1 won't work because if E=2 and N=1, it will still display almost normal because 1 Or 1 = 1

third one works though :D
Ok scrap it I thought I was good at basic, I guesss I was wrong :(

68
TI-BASIC / Re: [CHALLENGE]Logic and Optimization
« on: November 20, 2010, 12:57:55 pm »
Code: [Select]
:Prompt E,N
:If E=2 and N=1
:Disp "NRML
:If E != 2 or N!=1
:Then
:If E=2 or N=1
:Then
:Disp "ALMST NRML
:Else
:Disp "WEIRD
80bytes, for the first challenge

This is missing two end statements plus it could be optimized to this:
Code: [Select]
Prompt E,N
If N(E=2
Disp "NRML
If E=2 or N=1
Disp "ALMST NRML
If ((N!=1)E!=2
Disp "WEIRD

69
TI-BASIC / Re: [CHALLENGE]Logic and Optimization
« on: November 20, 2010, 07:35:24 am »
I've tried a couple of things by now, none of it worked... it's pretty tricky. The only way to better Xeda's program is to make "NRML the Normal token which you can find under [MODE] and "ALMST NRML to "not(Normal

not really what you were asking for but optimizations nevertheless

70
Art / Re: My Website Calculator Page Icon
« on: November 20, 2010, 06:43:50 am »
here you go

link is [http://farm5.static.flickr.com/4106/5191934792_fecb29efe3_s.jpg] without square brackets of course

edit:also attached to this post, flickr seems to have some trouble...
edit2:you can easily change the colors in paint if you want feel free to use it and distribute it I don't care about credit really...

71
Gaming Discussion / Re: Black Ops Poll
« on: November 19, 2010, 03:15:59 pm »
I played at my friends place today. Seems pretty balanced altough I only got 7 kills vs 10 deaths but, that was the first time playing COD black ops and one of the first times witha ps3 controller so I was actually pretty amazed at how well I peformed!

72
Gaming Discussion / Re: Black Ops
« on: November 19, 2010, 01:44:05 pm »
Hmm that would be funny...
* matthias1992 runs of to program WFRNG in XNA/C#

73
Humour and Jokes / Re: 1000 things SirCmpwn should include in KnightOS
« on: November 18, 2010, 06:16:02 pm »
50: It can't be turned off until the battery drains. After which it hibernates and curses the **** sh* out of you m*thf*k newbss for not turning it off in time
51: It should stab you to death with a virtual sword if you make a syntax error.

74
Computer Projects and Ideas / Re: Nightmare
« on: November 17, 2010, 02:55:32 pm »
Good luck! and so far, well done! If you need some help on some sprites...just ask..

75
KnightOS / Re: Needed Routines
« on: November 17, 2010, 02:30:16 pm »
*bump*

I am sure Quigibo can give you his line routine for axe...as well as his rectangle routines (I assume he does not use any TIOS System routines?)

Linking is a different thing...I might actually look that up...

Pages: 1 ... 3 4 [5] 6 7 ... 29