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

Pages: 1 ... 68 69 [70] 71 72 ... 125
1036
Miscellaneous / Re: Religion Discussion
« on: May 21, 2013, 09:11:43 pm »
In order for me to believe something, I require evidence; that's just how my mind works.

I would not say that evolution and Christianity are equal in that they both are believed in by faith. Evolution is not blind faith; there is massive support and evidence for it.
Fine, evolution is a theory, but people often misinterpret "theory" for just a guess. A scientific theory actually very comprehensive and is tested and confirmed repeatedly. There is tons of evidence for evolution that can be seen in both living and dead creatures.

Also, theists frequently say that there must be a first cause to start everything, so therefore it must be God.
Even if there is some supernatural creator to set the universe in motion, how do you know that it is the Christian god? It could be any other supernatural being.
I also find that this is somewhat saying, "Science doesn't know, therefore God."
If we don't know something, it isn't very reasonable to conclude that it must be because of God. I'd instead rather search harder and attempt to find an explanation that can actually be supported.

Even if an explanation can never be found by science, I'd rather leave that gap of knowledge empty as opposed to filling it with religion

There is very little, almost no evidence for evolution, and most of the published "evidence" is either fake or turns out to be something totally different than what they and not support the theory of evolution at all (or in some cases, actually refute it). On the other hand, there is overwhelming evidence for creation and God, which isn't fake, and has not been proven to be something else.

Also, if there is a God, then there is proof that he is a Christian God. He has to be omnipotent, He has to be all-merciful, and He has to be all-Good. Nothing good can come from an evil creator.

So you're telling me that fossil, geological, and DNA are wrong?

And the Islamic and Jewish God are not evil in their respective books.

1037
Axe / Re: [TUTO] 7 level interrupt grayscale in Axe
« on: May 21, 2013, 08:39:09 pm »
Not quite yet. I think I may have the right stuffs now to make nearly thepenguin77 good 8 level.

(hint hint: masking)

1038
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: May 21, 2013, 08:26:47 pm »
5209: You stalk epic7, who stalks Sorunome

1039
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: May 21, 2013, 06:07:45 pm »
5202: You congratulate Freyaday

1040
TI Z80 / Re: Zombie Gun
« on: May 21, 2013, 06:00:10 pm »
HOLY NECROPOST BATMAN!!!

Sooo... you're picking up where Shimbs left off? NICE!

1041
Miscellaneous / Re: Religion Discussion
« on: May 21, 2013, 05:38:02 pm »
Just popping in the topic for a second, God and science aren't mutually exclusive.

That does not mean "!if(science) {god}", though, which is a common argument.

1042
Miscellaneous / Re: Religion Discussion
« on: May 21, 2013, 05:30:45 pm »
In order for me to believe something, I require evidence; that's just how my mind works.

I would not say that evolution and Christianity are equal in that they both are believed in by faith. Evolution is not blind faith; there is massive support and evidence for it.
Fine, evolution is a theory, but people often misinterpret "theory" for just a guess. A scientific theory actually very comprehensive and is tested and confirmed repeatedly. There is tons of evidence for evolution that can be seen in both living and dead creatures.

Also, theists frequently say that there must be a first cause to start everything, so therefore it must be God.
Even if there is some supernatural creator to set the universe in motion, how do you know that it is the Christian god? It could be any other supernatural being.
I also find that this is somewhat saying, "Science doesn't know, therefore God."
If we don't know something, it isn't very reasonable to conclude that it must be because of God. I'd instead rather search harder and attempt to find an explanation that can actually be supported.

Even if an explanation can never be found by science, I'd rather leave that gap of knowledge empty as opposed to filling it with religion

Thank you kind sir, my opinion exactly!

1043
Axe / Re: [TUTO] 7 level interrupt grayscale in Axe
« on: May 21, 2013, 11:39:55 am »
It's seem great !
But....
One thing to said :
just don't use this :

Code: [Select]
!If (T++^10)

remove the parenthesis because they are useless...
and you should precise that you have to change the value after ^ (or not) to find the perfect greyscale lvl of one calc (It's just test, though)

That's true.

Also: it should be T++^5. Editing the post

1044
Axe / [TUTO] 7 level interrupt grayscale in Axe
« on: May 21, 2013, 10:17:49 am »
Well, I came up with a way to do 7 level (although not completely flicker-less) grayscale in Axe.

I used Hayleia's interrupt method for getting that nearly perfect refresh rate!

Here's the source:

Code: [Select]
:.PIC8
:
:FnOff
:
:ClrDraw{^r}{^r}
:
:[FFFFFFFFFFFFFFFF]→Pic1
:
:0→T
:
:det(768,0)→C
:
:det(768,0)→B
:
:det(768,0)→A
:
:For(Y,0,7)
:Pt-On(8,Y*8,Pic1,C)
:Pt-On(32,Y*8,Pic1,C)
:Pt-On(48,Y*8,Pic1,C)
:Pt-On(16,Y*8,Pic1,B)
:Pt-On(40,Y*8,Pic1,B)
:Pt-On(48,Y*8,Pic1,B)
:Pt-On(24,Y*8,Pic1,A)
:Pt-On(32,Y*8,Pic1,A)
:Pt-On(40,Y*8,Pic1,A)
:Pt-On(48,Y*8,Pic1,A)
:End
:
:FnInt(D,0)
:
:While 1
:EndIf getKey(15)
:LnReg {^r}
:Return
:
:Lbl D
:!If (T++^5)
:DispGraph(A,C){^r}{^r}
:DispGraph(B,A){^r}{^r}
:End
:Return

Do you see the secret? It's buffers! Instead of using the default buffers, I created 3 buffers that have different weights. They go as follows:
none: 0/6
C: 1/6
B: 2/6
A: 3/6

You can not repeat buffers, but you can add them up to get all values 0-6 out of 6

The key in the code is this section (the only one I will explain)

Code: [Select]
:Lbl D
:!If (T++^5)
:DispGraph(A,C){^r}{^r}
:DispGraph(B,A){^r}{^r}
:End
:Return

The front buffer gets a weight of 2/6, and the back, 1/6. Add up the totals, and you get A=3, B=2, and C=1!

So long as you get those totals, it doesn't matter how you display the graph (within the interrupt or not) (which makes it less flickery, but more inconsistent)

That's it! Pretty simple, eh?

Good luck, and may the grayscale be with you!

1045
Miscellaneous / Re: Religion Discussion
« on: May 21, 2013, 10:00:58 am »
If God created everything, then who created God?

This thought challenges the "someone created you" part of religion, because God would then have to have been created by someone higher and mightier, and then it chains on.

1046
Miscellaneous / Re: My Existential Philosophy
« on: May 21, 2013, 09:43:15 am »
Thanks, Xeda. According to my sister, who studies philosophy for fun, it is the same philosophy as Descartes, who I think was mentioned earlier. I didn't know that at first, though. :P

Anyways, I still think the philosophy is cool.

1047
Miscellaneous / Re: My Existential Philosophy
« on: May 21, 2013, 08:58:37 am »
Guys: I already said it, and I'll say it again: please don't make this thread a religious debate, especially because the original post has nothing to do with religion.

Thank you.

1048
Miscellaneous / Re: My Existential Philosophy
« on: May 20, 2013, 09:27:40 pm »
Plz: keep this philosophical and not religious, thank you.

1049
TI Z80 / Re: zStart - an app that runs on ram clears
« on: May 20, 2013, 09:35:52 am »
I got the OS re-installed, and now it's okay. I think the fact that the OS wouldn't send was because I was using TiLP and not Ti-Connect.

Thanks for the help.

1050
General Calculator Help / Re: 89Ti Good Programs?
« on: May 19, 2013, 09:43:45 pm »
I suggest Gran Turismo. I've been addicted to it for the past week.

Pages: 1 ... 68 69 [70] 71 72 ... 125