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

Pages: [1] 2 3 ... 23
1
Miscellaneous / Re: Programming Languages
« on: January 17, 2011, 11:09:46 am »
Ti Basic: advanced
Java: intermediate
Python: beginner
Asm: hardly any
Command Prompt/Batch: intermediate

2
Escheron: Shadow over Ragnoth / Re: Picross (Clone)
« on: January 10, 2011, 10:23:52 am »
I haven't played Picross in a while, but I believe that the way you stack the sets of multiple numbers in the screenies, and the way the numbers are stacked in other Picross games are in reverse. You should try just writing the numbers out in the opposite direction. I'm not completely sure though so don't quote me on it.

3
Miscellaneous / Re: any scouts in here?
« on: October 05, 2010, 08:21:51 pm »
this guy

4
OTcalc / Re: [OTZ80] Poll results! (Hardware)
« on: September 21, 2010, 08:33:57 pm »
My computer uses one of the old cathode ray screens, which are cheaper than lcd screens

5
Computer Projects and Ideas / Re: BasiC++
« on: September 21, 2010, 08:17:56 pm »
Start out being able to use and alter all of the variables, then work with Disp and Output(), then start doing some If, Then, Else, For(), sort of things.

6
Miscellaneous / Re: School pranks
« on: September 16, 2010, 06:29:44 pm »
That looks just like the cmd in my school.

I got around setting backgrounds by going into pictures and selecting "Set as Background".  I also got around adding items to the desktop (I forget how :().

They have the "Set as background" thing protected too, although I can add files to the desktop. I'm really just looking to do the whole Top Secret folder prank.

7
Miscellaneous / Re: School pranks
« on: September 16, 2010, 06:01:19 pm »
I'm trying to do the top secret folder trick at my school, but both setting backgrounds and command prompt are blocked, along with viewing pretty much any file in windows explorer.

Another thing. our command prompt has two protections.  one to all files, and this one,


so i just Googled, how to block command prompt, 1st page, showed how to block and unblock :P

I googled how to unblock it too, and I need to use a program called gpedit, but thats also blocked. The only real breakthrough in my school's security that I found is being in Firefox at file:///C:/ can show the computers files. Only in Firefox, not IE.
I was wondering if you guys might be able to advise me how sneak past all this.

8
TI Z80 / Re: Unnamed RPGish Game
« on: August 25, 2010, 06:14:34 pm »
Its not an ERR:DOMAIN. he uses C+1 for the position so the first position is 1 and the last position is 7. But I see what you mean with the slower. With out my way, its 6 total text()'s, but with my way its 7 total text()'s

9
TI Z80 / Re: Unnamed RPGish Game
« on: August 25, 2010, 06:01:50 pm »

@TsukasaZX
Ok, here is a quick example of code for text sprites:

Code: [Select]
ClrDraw
For(A,0,56,6
For(B,0,90,5
For(C,0,4
Text(A,B+C,sub("XYXJX",C+1,1
End
End
Text(A,92,"__ //Two spaces.
End

If you want further explanation just let me know :)

I usually add the two spaces to the end of the string and make the for loop 2 cycles longer

Code: [Select]
ClrDraw
For(A,0,56,6
For(B,0,90,5
For(C,0,6
Text(A,B+C,sub("XYXJX  ",C+1,1
End
End
End

it saves a few bytes programming it, but im not sure about the difference in speed. shouldnt be much

10
Computer Programming / Re: Brainfuck Programs
« on: August 23, 2010, 10:38:17 am »
Yea. It sets up cell 1 as 90 for the ten's place and cell 2 as 9 for the one's place, then does a few functions that subtract ten's places if theres no one's place, and sets the one's place back as 9. Then it starts putting out the text and the values of cell 1 and 2 and singing '99 bottles of beer on the wall, 99 bottles of beer take one down pass it around 98 bottles of beer on the wall' etc. You can slow it down and go step by step by putting a comma after the last decimal and before the '[-]' on the very last line. and just hit enter to keep going. I did run the program to see the text, but up till that part I kind of figured out how the program worked. Im not exactly sure about it all though.

11
Computer Programming / Re: Brainfuck Programs
« on: August 23, 2010, 10:08:20 am »
I tried learning asm, but either I didnt try hard enough to learn or I just didnt get it, but I understand brainfuck a lot more than asm

12
Computer Programming / Re: Brainfuck Programs
« on: August 22, 2010, 01:15:14 pm »
got it! fibonacci sequence, printing the decimal values of the numbers. it only goes up to 255 though, since its hex, so after 233 the fibonacci seequence gets wonky. I didnt write the part that prints the decimal values, so i enclosed it in asterisks. heres where i got it http://mazonka.com/brainf/


Code: [Select]
>+
[
[>+>+<<-]
>[<+>-]
>[<+>-]
<<<[>>+<<-]
>[<+>-]
>[<+>-]<

[>>>>>+>+<<<<<<-]>>>>>[-<<<<<+>>>>>]>              ;copies cell 1 to cell 5 and 6, then moves cell 5 back to cell 1, in essence just copying cell 1 to cell 6, giving space for the decimal printer

***************************************
  [ -<++>
  [ -<+>
    [ -<+>
      [ -<+>
        [ -<+>
          [ -<+>
            [ -<+>
              [ -<+>
                [ -<+>
                  [ <[-]+> ->+< [<-] ]
  ]]]]]]]] >]

<<[>++++++[<++++++++>-]<-.[-]<]
***************************************

<<<<                                                ;moves pointer back to cell 1 for sequence
>,[-]<
]

13
Computer Programming / Re: Brainfuck Programs
« on: August 21, 2010, 04:13:39 pm »
i just spent like 30 minutes trying to figure out how to display decimal. no luck. ps SirCmpwn you are about to be 1337 posts

14
Computer Programming / Re: Brainfuck Programs
« on: August 21, 2010, 03:07:35 pm »
whoops! i forgot i didnt show numbers. my bad.

15
Computer Programming / Re: Brainfuck Programs
« on: August 21, 2010, 01:15:51 pm »
Fibonacci Sequence!!!!

Code: [Select]
BF,FIB
>+                 ;sets cell 0 as 0 and cell 1 as 1, to start the sequence
[                  ;holds entire sequence loop in brackets
[>+>+<<-]          ;duplicates cell 1 into cell 2 and cell 3
>[<+>-]            ;scootches cell 2 over to cell 1
>[<+>-]            ;scootches cell 3 to cell 2
<<<[>>+<<-]        ;adds cell 0 to cell 2, deleting cell 0, and setting cell 2 as the current answer
.>,[-]<            ;displays current answer, then asks for input, then deletes inputed cell, for a pseudo pause
>[<+>-]            ;scootches cells over again
>[<+>-]<           ;now all cells are scootched and set for another loop
]                  ;ends loop

Pages: [1] 2 3 ... 23